Foxit PDF Conversion SDK
extracted_comment.h
1
2207
/*
2208
Basic memory operations
2209
*/
2210
2211
/*
2212
Following base memory functions use default Foxit manager for current module
2213
*/
2214
2215
/*
2216
Macro definitions for File accessing modes
2217
*/
2218
2219
/*
2220
Byte string concatenation operation
2221
*/
2222
2223
/*
2224
Both side of the concatenation operator (+) can be:
2225
<ul>
2226
<li>
2227
A buffered byte string (const CFX_ByteString&);
2228
</li>
2229
<li>
2230
A non-buffered byte string (const CFX_ByteStringC&, a.k.a FX_BSTR);
2231
</li>
2232
<li>
2233
A zero-terminated C-style string (FX_LPCSTR);
2234
</li>
2235
<li>
2236
A single character or byte (FX_CHAR);
2237
</li>
2238
</ul>
2239
2240
*/
2241
2242
/*
2243
Wide string concatenation operation
2244
*/
2245
2246
/*
2247
Both side of the concatenation operator (+) can be:
2248
<ul>
2249
<li>
2250
A buffered wide string (const CFX_WideString&);
2251
</li>
2252
<li>
2253
A non-buffered wide string (const CFX_WideStringC&);
2254
</li>
2255
<li>
2256
A zero-terminated C-style wide string (FX_LPCWSTR);
2257
</li>
2258
<li>
2259
A single character (FX_WCHAR);
2260
</li>
2261
</ul>
2262
But you must have at least one CFX_WideString or CFX_WideStringC on one side.
2263
2264
*/
2265
2266
/*
2267
Wide string compare operation
2268
*/
2269
2270
/*
2271
Basic Unicode character attribute routines
2272
*/
2273
2274
/*
2275
text direction defines
2276
*/
2277
2278
/*
2279
Encode wide string into UTF-8 byte string
2280
*/
2281
2282
/*
2283
OS Defines
2284
*/
2285
2286
/*
2287
Compiler Defines
2288
*/
2289
2290
/*
2291
CPU Defines
2292
*/
2293
2294
/*
2295
Word Size Defines
2296
*/
2297
2298
/*
2299
Byte Order Defines
2300
*/
2301
2302
/*
2303
Target Defines
2304
*/
2305
2306
/*
2307
BASIC DATA TYPES
2308
*/
2309
2310
/*
2311
Byte string operations
2312
*/
2313
2314
/*
2315
File operations
2316
*/
2317
2318
/*
2319
Wide string operations
2320
*/
2321
2322
/*
2323
Memory block operations
2324
*/
2325
2326
/*
2327
Memory utilities
2328
*/
2329
2330
/*
2331
Math functions
2332
*/
2333
2334
@2025 Foxit Software Incorporated. All rights reserved.