Foxit PDF Conversion SDK
extracted_comment.h
1
1374
/*
1375
Basic memory operations
1376
*/
1377
1378
/*
1379
Following base memory functions use default Foxit manager for current module
1380
*/
1381
1382
/*
1383
Macro definitions for File accessing modes
1384
*/
1385
1386
/*
1387
Byte string concatenation operation
1388
*/
1389
1390
/*
1391
Both side of the concatenation operator (+) can be:
1392
<ul>
1393
<li>
1394
A buffered byte string (const CFX_ByteString&);
1395
</li>
1396
<li>
1397
A non-buffered byte string (const CFX_ByteStringC&, a.k.a FX_BSTR);
1398
</li>
1399
<li>
1400
A zero-terminated C-style string (FX_LPCSTR);
1401
</li>
1402
<li>
1403
A single character or byte (FX_CHAR);
1404
</li>
1405
</ul>
1406
1407
*/
1408
1409
/*
1410
Wide string concatenation operation
1411
*/
1412
1413
/*
1414
Both side of the concatenation operator (+) can be:
1415
<ul>
1416
<li>
1417
A buffered wide string (const CFX_WideString&);
1418
</li>
1419
<li>
1420
A non-buffered wide string (const CFX_WideStringC&);
1421
</li>
1422
<li>
1423
A zero-terminated C-style wide string (FX_LPCWSTR);
1424
</li>
1425
<li>
1426
A single character (FX_WCHAR);
1427
</li>
1428
</ul>
1429
But you must have at least one CFX_WideString or CFX_WideStringC on one side.
1430
1431
*/
1432
1433
/*
1434
Wide string compare operation
1435
*/
1436
1437
/*
1438
Basic Unicode character attribute routines
1439
*/
1440
1441
/*
1442
text direction defines
1443
*/
1444
1445
/*
1446
Encode wide string into UTF-8 byte string
1447
*/
1448
1449
/*
1450
OS Defines
1451
*/
1452
1453
/*
1454
Compiler Defines
1455
*/
1456
1457
/*
1458
CPU Defines
1459
*/
1460
1461
/*
1462
Word Size Defines
1463
*/
1464
1465
/*
1466
Byte Order Defines
1467
*/
1468
1469
/*
1470
Target Defines
1471
*/
1472
1473
/*
1474
BASIC DATA TYPES
1475
*/
1476
1477
/*
1478
Byte string operations
1479
*/
1480
1481
/*
1482
File operations
1483
*/
1484
1485
/*
1486
Wide string operations
1487
*/
1488
1489
/*
1490
Memory block operations
1491
*/
1492
1493
/*
1494
Memory utilities
1495
*/
1496
1497
/*
1498
Math functions
1499
*/
@2023 Foxit Software Incorporated. All rights reserved.