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