Foxit PDF Conversion SDK
extracted_comment.h
1
2122
/*
2123
Basic memory operations
2124
*/
2125
2126
/*
2127
Following base memory functions use default Foxit manager for current module
2128
*/
2129
2130
/*
2131
Macro definitions for File accessing modes
2132
*/
2133
2134
/*
2135
Byte string concatenation operation
2136
*/
2137
2138
/*
2139
Both side of the concatenation operator (+) can be:
2140
<ul>
2141
<li>
2142
A buffered byte string (const CFX_ByteString&);
2143
</li>
2144
<li>
2145
A non-buffered byte string (const CFX_ByteStringC&, a.k.a FX_BSTR);
2146
</li>
2147
<li>
2148
A zero-terminated C-style string (FX_LPCSTR);
2149
</li>
2150
<li>
2151
A single character or byte (FX_CHAR);
2152
</li>
2153
</ul>
2154
2155
*/
2156
2157
/*
2158
Wide string concatenation operation
2159
*/
2160
2161
/*
2162
Both side of the concatenation operator (+) can be:
2163
<ul>
2164
<li>
2165
A buffered wide string (const CFX_WideString&);
2166
</li>
2167
<li>
2168
A non-buffered wide string (const CFX_WideStringC&);
2169
</li>
2170
<li>
2171
A zero-terminated C-style wide string (FX_LPCWSTR);
2172
</li>
2173
<li>
2174
A single character (FX_WCHAR);
2175
</li>
2176
</ul>
2177
But you must have at least one CFX_WideString or CFX_WideStringC on one side.
2178
2179
*/
2180
2181
/*
2182
Wide string compare operation
2183
*/
2184
2185
/*
2186
Basic Unicode character attribute routines
2187
*/
2188
2189
/*
2190
text direction defines
2191
*/
2192
2193
/*
2194
Encode wide string into UTF-8 byte string
2195
*/
2196
2197
/*
2198
OS Defines
2199
*/
2200
2201
/*
2202
Compiler Defines
2203
*/
2204
2205
/*
2206
CPU Defines
2207
*/
2208
2209
/*
2210
Word Size Defines
2211
*/
2212
2213
/*
2214
Byte Order Defines
2215
*/
2216
2217
/*
2218
Target Defines
2219
*/
2220
2221
/*
2222
BASIC DATA TYPES
2223
*/
2224
2225
/*
2226
Byte string operations
2227
*/
2228
2229
/*
2230
File operations
2231
*/
2232
2233
/*
2234
Wide string operations
2235
*/
2236
2237
/*
2238
Memory block operations
2239
*/
2240
2241
/*
2242
Memory utilities
2243
*/
2244
2245
/*
2246
Math functions
2247
*/
@2025 Foxit Software Incorporated. All rights reserved.