Foxit PDF Conversion SDK
extracted_comment.h
1
2618
/*
2619
Basic memory operations
2620
*/
2621
2622
/*
2623
Following base memory functions use default Foxit manager for current module
2624
*/
2625
2626
/*
2627
Macro definitions for File accessing modes
2628
*/
2629
2630
/*
2631
Byte string concatenation operation
2632
*/
2633
2634
/*
2635
Both side of the concatenation operator (+) can be:
2636
<ul>
2637
<li>
2638
A buffered byte string (const CFX_ByteString&);
2639
</li>
2640
<li>
2641
A non-buffered byte string (const CFX_ByteStringC&, a.k.a FX_BSTR);
2642
</li>
2643
<li>
2644
A zero-terminated C-style string (FX_LPCSTR);
2645
</li>
2646
<li>
2647
A single character or byte (FX_CHAR);
2648
</li>
2649
</ul>
2650
2651
*/
2652
2653
/*
2654
Wide string concatenation operation
2655
*/
2656
2657
/*
2658
Both side of the concatenation operator (+) can be:
2659
<ul>
2660
<li>
2661
A buffered wide string (const CFX_WideString&);
2662
</li>
2663
<li>
2664
A non-buffered wide string (const CFX_WideStringC&);
2665
</li>
2666
<li>
2667
A zero-terminated C-style wide string (FX_LPCWSTR);
2668
</li>
2669
<li>
2670
A single character (FX_WCHAR);
2671
</li>
2672
</ul>
2673
But you must have at least one CFX_WideString or CFX_WideStringC on one side.
2674
2675
*/
2676
2677
/*
2678
Wide string compare operation
2679
*/
2680
2681
/*
2682
Basic Unicode character attribute routines
2683
*/
2684
2685
/*
2686
text direction defines
2687
*/
2688
2689
/*
2690
Encode wide string into UTF-8 byte string
2691
*/
2692
2693
/*
2694
OS Defines
2695
*/
2696
2697
/*
2698
Compiler Defines
2699
*/
2700
2701
/*
2702
CPU Defines
2703
*/
2704
2705
/*
2706
Word Size Defines
2707
*/
2708
2709
/*
2710
Byte Order Defines
2711
*/
2712
2713
/*
2714
Target Defines
2715
*/
2716
2717
/*
2718
BASIC DATA TYPES
2719
*/
2720
2721
/*
2722
Byte string operations
2723
*/
2724
2725
/*
2726
File operations
2727
*/
2728
2729
/*
2730
Wide string operations
2731
*/
2732
2733
/*
2734
Memory block operations
2735
*/
2736
2737
/*
2738
Memory utilities
2739
*/
2740
2741
/*
2742
Math functions
2743
*/
@2025 Foxit Software Incorporated. All rights reserved.