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