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