PowerBuilder API List
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 |
Function ULong AbortDoc(ULong hdc) Library "gdi32.dll" Function ULong AbortPath(ULong hdc) Library "gdi32.dll" Function ULong AbortPrinter(ULong hPrinter) Library "winspool.drv" Function ULong AbortSystemShutdown(Ref String lpMachineName) Library "advapi32.dll" Alias For "AbortSystemShutdownA" Function ULong AccessCheck(Ref SECURITY_DESCRIPTOR pSecurityDescriptor,ULong ClientToken,ULong DesiredAccess,Ref GENERIC_MAPPING GenericMapping,Ref PRIVILEGE_SET PrivilegeSet,Ref ULong PrivilegeSetLength,Ref ULong GrantedAccess,ULong Status) Library "advapi32.dll" Function ULong AccessCheckAndAuditAlarm(Ref String SubsystemName,Ref Any HandleId,Ref String ObjectTypeName,Ref String ObjectName,Ref SECURITY_DESCRIPTOR SecurityDescriptor,ULong DesiredAccess,Ref GENERIC_MAPPING GenericMapping,ULong ObjectCreation,Ref ULong GrantedAccess,ULong AccessStatus,ULong pfGenerateOnClose) Library "advapi32.dll" Alias For "AccessCheckAndAuditAlarmA" Function ULong ActivateKeyboardLayout(ULong HKL,ULong flags) Library "user32.dll" Function ULong AddAccessAllowedAce(Ref ACL pAcl,ULong dwAceRevision,ULong AccessMask,Ref Any pSid) Library "advapi32.dll" Function ULong AddAccessDeniedAce(Ref ACL pAcl,ULong dwAceRevision,ULong AccessMask,Ref Any pSid) Library "advapi32.dll" Function ULong AddAce(Ref ACL pAcl,ULong dwAceRevision,ULong dwStartingAceIndex,Ref Any pAceList,ULong nAceListLength) Library "advapi32.dll" Function Integer AddAtom(Ref String lpString) Library "kernel32.dll" Alias For "AddAtomA" Function ULong AddAuditAccessAce(Ref ACL pAcl,ULong dwAceRevision,ULong dwAccessMask,Ref Any pSid,ULong bAuditSuccess,ULong bAuditFailure) Library "advapi32.dll" Function ULong AddFontResource(Ref String lpFileName) Library "gdi32.dll" Alias For "AddFontResourceA" Function ULong AddForm(ULong hPrinter,ULong Level,Ref Byte pForm) Library "winspool.drv" Alias For "AddFormA" Function ULong AddJob(ULong hPrinter,ULong Level,Ref Byte pData,ULong cdBuf,Ref ULong pcbNeeded) Library "winspool.drv" Alias For "AddJobA" Function ULong AddMonitor(Ref String pName,ULong Level,Ref Byte pMonitors) Library "winspool.drv" Alias For "AddMonitorA" Function ULong AddPort(Ref String pName,ULong hwnd,Ref String pMonitorName) Library "winspool.drv" Alias For "AddPortA" Function ULong AddPrinter(Ref String pName,ULong Level,Ref Byte pPrinter) Library "winspool.drv" Alias For "AddPrinterA" Function ULong AddPrinterConnection(Ref String pName) Library "winspool.drv" Alias For "AddPrinterConnectionA" Function ULong AddPrinterDriver(Ref String pName,ULong Level,Ref Byte pDriverInfor) Library "winspool.drv" Alias For "AddPrinterDriverA" Function ULong AddPrintProcessor(Ref String pName,Ref String pEnvironment,Ref String pPathName,Ref String pPrintProcessorName) Library "winspool.drv" Alias For "AddPrintProcessorA" Function ULong AddPrintProvidor(Ref String pName,ULong Level,Ref Byte pProvidorInfo) Library "winspool.drv" Alias For "AddPrintProvidorA" Function ULong AdjustTokenGroups(ULong TokenHandle,ULong ResetToDefault,Ref TOKEN_GROUPS NewState,ULong BufferLength,Ref TOKEN_GROUPS PreviousState,Ref ULong ReturnLength) Library "advapi32.dll" Function ULong AdjustTokenPrivileges(ULong TokenHandle,ULong DisableAllPrivileges,Ref TOKEN_PRIVILEGES NewState,ULong BufferLength,Ref TOKEN_PRIVILEGES PreviousState,Ref ULong ReturnLength) Library "advapi32.dll" Function ULong AdjustWindowRect(Ref RECT lpRect,ULong dwStyle,ULong bMenu) Library "user32.dll" Alias For "AdjustWindowRectA" Function ULong AdjustWindowRectEx(Ref RECT lpRect,ULong dsStyle,ULong bMenu,ULong dwEsStyle) Library "user32.dll" Function ULong AdvancedDocumentProperties(ULong hwnd,ULong hPrinter,Ref String pDeviceName,Ref DEVMODE pDevModeOutput,Ref DEVMODE pDevModeInput) Library "winspool.drv" Alias For "AdvancedDocumentPropertiesA" Function ULong AllocateAndInitializeSid(Ref SID_IDENTIFIER_AUTHORITY pIdentifierAuthority,Byte nSubAuthorityCount,ULong nSubAuthority0,ULong nSubAuthority1,ULong nSubAuthority2,ULong nSubAuthority3,ULong nSubAuthority4,ULong nSubAuthority5,ULong nSubAuthority6,ULong nSubAuthority7,Ref ULong lpPSid) Library "advapi32.dll" Function ULong AllocateLocallyUniqueId(Ref LARGE_INTEGER Luid) Library "advapi32.dll" Function ULong AllocConsole() Library "kernel32.dll" Function ULong AngleArc(ULong hdc,ULong X,ULong Y,ULong dwRadius,Double eStartAngle,Double eSweepAngle) Library "gdi32.dll" Function ULong AnimatePalette(ULong hPalette,ULong wStartIndex,ULong wNumEntries,Ref PALETTEENTRY lpPaletteColors) Library "gdi32.dll" Alias For "AnimatePaletteA" Function ULong AnyPopup() Library "user32.dll" Function ULong AppendMenu(ULong hMenu,ULong wFlags,ULong wIDNewItem,Ref String lpNewItem) Library "user32.dll" Alias For "AppendMenuA" Function ULong Arc(ULong hdc,ULong X1,ULong Y1,ULong X2,ULong Y2,ULong X3,ULong Y3,ULong X4,ULong Y4) Library "gdi32.dll" Function ULong ArcTo(ULong hdc,ULong X1,ULong Y1,ULong X2,ULong Y2,ULong X3,ULong Y3,ULong X4,ULong Y4) Library "gdi32.dll" Function ULong AreAllAccessesGranted(ULong GrantedAccess,ULong DesiredAccess) Library "advapi32.dll" Function ULong AreAnyAccessesGranted(ULong GrantedAccess,ULong DesiredAccess) Library "advapi32.dll" Function ULong ArrangeIconicWindows(ULong hwnd) Library "user32.dll" Function ULong AttachThreadInput(ULong idAttach,ULong idAttachTo,ULong fAttach) Library "user32.dll" Function ULong auxGetDevCaps(ULong uDeviceID,Ref AUXCAPS lpCaps,ULong uSize) Library "winmm.dll" Alias For "auxGetDevCapsA" Function ULong auxGetNumDevs() Library "winmm.dll" Function ULong auxGetVolume(ULong uDeviceID,Ref ULong lpdwVolume) Library "winmm.dll" Function ULong auxOutMessage(ULong uDeviceID,ULong msg,ULong dw1,ULong dw2) Library "winmm.dll" Function ULong auxSetVolume(ULong uDeviceID,ULong dwVolume) Library "winmm.dll" Function ULong BackupEventLog(ULong hEventLog,Ref String lpBackupFileName) Library "advapi32.dll" Alias For "BackupEventLogA" Function ULong BackupRead(ULong hFile,Ref Byte lpBuffer,ULong nNumberOfBytesToRead,Ref ULong lpNumberOfBytesRead,ULong bAbort,ULong bProcessSecurity,Ref Any lpContext) Library "kernel32.dll" Function ULong BackupSeek(ULong hFile,ULong dwLowBytesToSeek,ULong dwHighBytesToSeek,Ref ULong lpdwLowByteSeeked,Ref ULong lpdwHighByteSeeked,Ref ULong lpContext) Library "kernel32.dll" Function ULong BackupWrite(ULong hFile,Ref Byte lpBuffer,ULong nNumberOfBytesToWrite,Ref ULong lpNumberOfBytesWritten,ULong bAbort,ULong bProcessSecurity,Ref ULong lpContext) Library "kernel32.dll" Function ULong Beep(ULong dwFreq,ULong dwDuration) Library "kernel32.dll" Function ULong BeginDeferWindowPos(ULong nNumWindows) Library "user32.dll" Function ULong BeginPaint(ULong hwnd,Ref PAINTSTRUCT lpPaint) Library "user32.dll" Function ULong BeginPath(ULong hdc) Library "gdi32.dll" Function ULong BeginUpdateResource(Ref String pFileName,ULong bDeleteExistingResources) Library "kernel32.dll" Alias For "BeginUpdateResourceA" Function ULong BitBlt(ULong hDestDC,ULong X,ULong Y,ULong nWidth,ULong nHeight,ULong hSrcDC,ULong xSrc,ULong ySrc,ULong dwRop) Library "gdi32.dll" Function ULong BringWindowToTop(ULong hwnd) Library "user32.dll" Function ULong BroadcastSystemMessage(ULong dw,Ref ULong pdw,ULong un,ULong wParam,ULong lParam) Library "user32.dll" Function ULong BuildCommDCB(Ref String lpDef,Ref DCB lpDCB) Library "kernel32.dll" Alias For "BuildCommDCBA" Function ULong BuildCommDCBAndTimeouts(Ref String lpDef,Ref DCB lpDCB,Ref COMMTIMEOUTS lpCommTimeouts) Library "kernel32.dll" Alias For "BuildCommDCBAndTimeoutsA" Function ULong CallMsgFilter(Ref msg lpMsg,ULong ncode) Library "user32.dll" Alias For "CallMsgFilterA" Function ULong CallNamedPipe(Ref String lpNamedPipeName,Ref Any lpInBuffer,ULong nInBufferSize,Ref Any lpOutBuffer,ULong nOutBufferSize,Ref ULong lpBytesRead,ULong nTimeOut) Library "kernel32.dll" Alias For "CallNamedPipeA" Function ULong CallNextHookEx(ULong hHook,ULong ncode,ULong wParam,Ref Any lParam) Library "user32.dll" Function ULong CallWindowProc(ULong lpPrevWndFunc,ULong hwnd,ULong msg,ULong wParam,ULong lParam) Library "user32.dll" Alias For "CallWindowProcA" Function ULong CancelDC(ULong hdc) Library "gdi32.dll" Function Integer CascadeWindows(ULong hwndParent,ULong wHow,RECT lpRect,ULong cKids,Ref ULong lpkids) Library "user32.dll" Function ULong ChangeClipboardChain(ULong hwnd,ULong hWndNext) Library "user32.dll" Function Boolean ChangeMenu(ULong hMenu,ULong cmd,Ref String lpszNewItem,ULong cmdInsert,ULong flags) Library "user32.dll" Alias For "ChangeMenuA" Function ULong ChangeServiceConfig(ULong hService,ULong dwServiceType,ULong dwStartType,ULong dwErrorControl,Ref String lpBinaryPathName,Ref String lpLoadOrderGroup,Ref ULong lpdwTagId,Ref String lpDependencies,Ref String lpServiceStartName,Ref String lpPassword,Ref String lpDisplayName) Library "advapi32.dll" Alias For "ChangeServiceConfigA" Function String CharLower(Ref String lpsz) Library "user32.dll" Alias For "CharLowerA" Function ULong CharLowerBuff(Ref String lpsz,ULong cchLength) Library "user32.dll" Alias For "CharLowerBuffA" Function String CharNext(Ref String lpsz) Library "user32.dll" Alias For "CharNextA" Function String CharPrev(Ref String lpszStart,Ref String lpszCurrent) Library "user32.dll" Alias For "CharPrevA" Function ULong CharToOem(Ref String lpszSrc,Ref String lpszDst) Library "user32.dll" Alias For "CharToOemA" Function ULong CharToOemBuff(Ref String lpszSrc,Ref String lpszDst,ULong cchDstLength) Library "user32.dll" Alias For "CharToOemBuffA" Function String CharUpper(Ref String lpsz) Library "user32.dll" Alias For "CharUpperA" Function ULong CharUpperBuff(Ref String lpsz,ULong cchLength) Library "user32.dll" Alias For "CharUpperBuffA" Function ULong CheckColorsInGamut(ULong hdc,Ref Any lpv,Ref Any lpv2,ULong dw) Library "gdi32.dll" Function ULong CheckDlgButton(ULong hDlg,ULong nIDButton,ULong wCheck) Library "user32.dll" Alias For "CheckDLGButtonA" Function ULong CheckMenuItem(ULong hMenu,ULong wIDCheckItem,ULong wCheck) Library "user32.dll" Function Boolean CheckMenuRadioItem(ULong hMenu,ULong un1,ULong un2,ULong un3,ULong un4) Library "user32.dll" Function ULong CheckRadioButton(ULong hDlg,ULong nIDFirstButton,ULong nIDLastButton,ULong nIDCheckButton) Library "user32.dll" Alias For "CheckRadioButtonA" Function ULong ChildWindowFromPoint(ULong hwnd,ULong xPoint,ULong yPoint) Library "user32.dll" Function ULong ChildWindowFromPoint(ULong hwndParent,POINTAPI pt) Library "user32.dll" Function ULong ChildWindowFromPointEx(ULong hwnd,POINTAPI pt,ULong un) Library "user32.dll" Function ULong ChooseColor(Ref ChooseColor pChoosecolor) Library "comdlg32.dll" Alias For "ChooseColorA" Function ULong ChooseFont(Ref ChooseFont pChoosefont) Library "comdlg32.dll" Alias For "ChooseFontA" Function ULong ChoosePixelFormat(ULong hdc,Ref PIXELFORMATDESCRIPTOR pPixelFormatDescriptor) Library "gdi32.dll" Function ULong Chord(ULong hdc,ULong X1,ULong Y1,ULong X2,ULong Y2,ULong X3,ULong Y3,ULong X4,ULong Y4) Library "gdi32.dll" Function ULong ClearCommBreak(ULong nCid) Library "kernel32.dll" Function ULong ClearCommError(ULong hFile,Ref ULong lpErrors,Ref COMSTAT lpStat) Library "kernel32.dll" Function ULong ClearEventLog(ULong hEventLog,Ref String lpBackupFileName) Library "advapi32.dll" Alias For "ClearEventLogA" Function ULong ClientToScreen(ULong hwnd,Ref POINTAPI lpPoint) Library "user32.dll" Function ULong ClipCursor(Ref Any lpRect) Library "user32.dll" Function ULong CloseClipboard() Library "user32.dll" Function Boolean CloseDesktop(ULong hDesktop) Library "user32.dll" Function ULong CloseDriver(ULong hDriver,ULong lParam1,ULong lParam2) Library "winmm.dll" Function ULong CloseEnhMetaFile(ULong hdc) Library "gdi32.dll" Function ULong CloseEventLog(ULong hEventLog) Library "advapi32.dll" Function ULong CloseFigure(ULong hdc) Library "gdi32.dll" Function ULong CloseHandle(ULong hObject) Library "kernel32.dll" Function ULong CloseMetaFile(ULong hMF) Library "gdi32.dll" Function ULong ClosePrinter(ULong hPrinter) Library "winspool.drv" Function ULong CloseServiceHandle(ULong hSCObject) Library "advapi32.dll" Function ULong CloseWindow(ULong hwnd) Library "user32.dll" Function Boolean CloseWindowStation(ULong hWinSta) Library "user32.dll" Function ULong ColorMatchToTarget(ULong hdc,ULong hdc2,ULong dw) Library "gdi32.dll" Function ULong CombineRgn(ULong hDestRgn,ULong hSrcRgn1,ULong hSrcRgn2,ULong nCombineMode) Library "gdi32.dll" Function ULong CombineTransform(Ref xform lpxformResult,Ref xform lpxform1,Ref xform lpxform2) Library "gdi32.dll" Function ULong CommandLineToArgv(Ref String lpCmdLine,Ref Integer pNumArgs) Library "shell32" Alias For "CommandLineToArgvW" Function Boolean CommConfigDialog(Ref String lpszName,ULong hwnd,Ref COMMCONFIG lpCC) Library "kernel32.dll" Alias For "CommConfigDialogA" Function ULong CommDlgExtendedError() Library "comdlg32.dll" Function ULong ComparefileTime(Ref FILETIME lpFileTime1,Ref FILETIME lpFileTime2) Library "kernel32.dll" Function ULong CompareString(ULong Locale,ULong dwCmpFlags,Ref String lpString1,ULong cchCount1,Ref String lpString2,ULong cchCount2) Library "kernel32.dll" Alias For "CompareStringA" Function ULong ConfigurePort(Ref String pName,ULong hwnd,Ref String pPortName) Library "winspool.drv" Alias For "ConfigurePortA" Function ULong ConnectNamedPipe(ULong hNamedPipe,Ref OVERLAPPED lpOverlapped) Library "kernel32.dll" Function ULong ConnectToPrinterDlg(ULong hwnd,ULong flags) Library "winspool.drv" Function ULong ContinueDebugEvent(ULong dwProcessId,ULong dwThreadId,ULong dwContinueStatus) Library "kernel32.dll" Function ULong ControlService(ULong hService,ULong dwControl,Ref SERVICE_STATUS lpServiceStatus) Library "advapi32.dll" Function ULong ConvertDefaultLocale(ULong Locale) Library "kernel32.dll" Function ULong CopyAcceleratorTable(ULong hAccelSrc,Ref ACCEL lpAccelDst,ULong cAccelEntries) Library "user32.dll" Alias For "CopyAcceleratorTableA" Function ULong CopyCursor(ULong hcur) Library "user32.dll" Function ULong CopyEnhMetaFile(ULong hemfSrc,Ref String lpszFile) Library "gdi32.dll" Alias For "CopyEnhMetaFileA" Function ULong CopyFile(Ref String lpExistingFileName,Ref String lpNewFileName,ULong bFailIfExists) Library "kernel32.dll" Alias For "CopyFileA" Function ULong CopyIcon(ULong hIcon) Library "user32.dll" Function ULong CopyImage(ULong Handle,ULong un1,ULong n1,ULong n2,ULong un2) Library "user32.dll" Function ULong CopyLZFile(ULong n1,ULong n2) Library "lz32" Function ULong CopyMetaFile(ULong hMF,Ref String lpFileName) Library "gdi32.dll" Alias For "CopyMetaFileA" Function ULong CopyRect(Ref RECT lpDestRect,Ref RECT lpSourceRect) Library "user32.dll" Function ULong CopySid(ULong nDestinationSidLength,Ref Any pDestinationSid,Ref Any pSourceSid) Library "advapi32.dll" Function ULong CountClipboardFormats() Library "user32.dll" Function ULong CreateAcceleratorTable(Ref ACCEL lpaccl,ULong cEntries) Library "user32.dll" Alias For "CreateAcceleratorTableA" Function ULong CreateBitmap(ULong nWidth,ULong nHeight,ULong nPlanes,ULong nBitCount,Ref Any lpBits) Library "gdi32.dll" Function ULong CreateBitmapIndirect(Ref BITMAP lpBitmap) Library "gdi32.dll" Function ULong CreateBrushIndirect(Ref LOGBRUSH lpLogBrush) Library "gdi32.dll" Function ULong CreateCaret(ULong hwnd,ULong hBitmap,ULong nWidth,ULong nHeight) Library "user32.dll" Function ULong CreateColorSpace(Ref LOGCOLORSPACE lplogcolorspace) Library "gdi32.dll" Alias For "CreateColorSpaceA" Function ULong CreateCompatibleBitmap(ULong hdc,ULong nWidth,ULong nHeight) Library "gdi32.dll" Function ULong CreateCompatibleDC(ULong hdc) Library "gdi32.dll" Function ULong CreateConsoleScreenBuffer(ULong dwDesiredAccess,ULong dwShareMode,Ref SECURITY_ATTRIBUTES lpSecurityAttributes,ULong dwFlags,Ref Any lpScreenBufferData) Library "kernel32.dll" Function ULong CreateCursor(ULong hInstance,ULong nXhotspot,ULong nYhotspot,ULong nWidth,ULong nHeight,Ref Any lpANDbitPlane,Ref Any lpXORbitPlane) Library "user32.dll" Function ULong CreateDC(Ref String lpDriverName,Ref String lpDeviceName,Ref String lpOutput,Ref DEVMODE lpInitData) Library "gdi32.dll" Alias For "CreateDCA" Function ULong CreateDesktop(Ref String lpszDesktop,Ref String lpszDevice,Ref DEVMODE pDevmode,ULong dwFlags,ULong dwDesiredAccess,Ref SECURITY_ATTRIBUTES lpsa) Library "user32.dll" Alias For "CreateDesktopA" Function ULong CreateDialogIndirectParam(ULong hInstance,Ref DLGTEMPLATE lpTemplate,ULong hwndParent,ULong lpDialogFunc,ULong dwInitParam) Library "user32.dll" Alias For "CreateDialogIndirectParamA" Function ULong CreateDialogParam(ULong hInstance,Ref String lpName,ULong hwndParent,ULong lpDialogFunc,ULong lParamInit) Library "user32.dll" Alias For "CreateDialogParamA" Function ULong CreateDIBitmap(ULong hdc,Ref BITMAPINFOHEADER lpInfoHeader,ULong dwUsage,Ref Any lpInitBits,Ref BITMAPINFO lpInitInfo,ULong wUsage) Library "gdi32.dll" Function ULong CreateDIBPatternBrush(ULong hPackedDIB,ULong wUsage) Library "gdi32.dll" Function ULong CreateDIBPatternBrushPt(Ref Any lpPackedDIB,ULong iUsage) Library "gdi32.dll" Function ULong CreateDIBSection(ULong hdc,Ref BITMAPINFO pBitmapInfo,ULong un,ULong lplpVoid,ULong Handle,ULong dw) Library "gdi32.dll" Function ULong CreateDirectory(Ref String lpPathName,Ref SECURITY_ATTRIBUTES lpSecurityAttributes) Library "kernel32.dll" Alias For "CreateDirectoryA" Function ULong CreateDirectoryEx(Ref String lpTemplateDirectory,Ref String lpNewDirectory,Ref SECURITY_ATTRIBUTES lpSecurityAttributes) Library "kernel32.dll" Alias For "CreateDirectoryExA" Function ULong CreateDiscardableBitmap(ULong hdc,ULong nWidth,ULong nHeight) Library "gdi32.dll" Function ULong CreateEllipticRgn(ULong X1,ULong Y1,ULong X2,ULong Y2) Library "gdi32.dll" Function ULong CreateEllipticRgnIndirect(Ref RECT lpRect) Library "gdi32.dll" Function ULong CreateEnhMetaFile(ULong hdcref,Ref String lpFileName,Ref RECT lpRect,Ref String lpDescription) Library "gdi32.dll" Alias For "CreateEnhMetaFileA" Function ULong CreateEvent(Ref SECURITY_ATTRIBUTES lpEventAttributes,ULong bManualReset,ULong bInitialState,Ref String lpName) Library "kernel32.dll" Alias For "CreateEventA" Function ULong CreateFile(Ref String lpFileName,ULong dwDesiredAccess,ULong dwShareMode,Ref SECURITY_ATTRIBUTES lpSecurityAttributes,ULong dwCreationDisposition,ULong dwFlagsAndAttributes,ULong hTemplateFile) Library "kernel32.dll" Alias For "CreateFileA" Function ULong CreateFileMapping(ULong hFile,Ref SECURITY_ATTRIBUTES lpFileMappigAttributes,ULong flProtect,ULong dwMaximumSizeHigh,ULong dwMaximumSizeLow,Ref String lpName) Library "kernel32.dll" Alias For "CreateFileMappingA" Function ULong CreateFont(ULong H,ULong W,ULong E,ULong O,ULong W,ULong I,ULong u,ULong S,ULong C,ULong OP,ULong CP,ULong Q,ULong PAF,Ref String F) Library "gdi32.dll" Alias For "CreateFontA" Function ULong CreateFontIndirect(Ref LOGFONT lpLogFont) Library "gdi32.dll" Alias For "CreateFontIndirectA" Function ULong CreateHalftonePalette(ULong hdc) Library "gdi32.dll" Function ULong CreateHatchBrush(ULong nIndex,ULong crColor) Library "gdi32.dll" Function ULong CreateIC(Ref String lpDriverName,Ref String lpDeviceName,Ref String lpOutput,Ref DEVMODE lpInitData) Library "gdi32.dll" Alias For "CreateICA" Function ULong CreateIcon(ULong hInstance,ULong nWidth,ULong nHeight,Byte nPlanes,Byte nBitsPixel,Ref Byte lpANDbits,Ref Byte lpXORbits) Library "user32.dll" Function ULong CreateIconFromResource(Ref Byte presbits,ULong dwResSize,Boolean fIcon,ULong dwVer) Library "user32.dll" Function ULong CreateIconFromResource(Ref Byte presbits,ULong dwResSize,ULong fIcon,ULong dwVer) Library "user32.dll" Function ULong CreateIconIndirect(Ref ICONINFO piconinfo) Library "user32.dll" Function ULong CreateIoCompletionPort(ULong FileHandle,ULong ExistingCompletionPort,ULong CompletionKey,ULong NumberOfConcurrentThreads) Library "kernel32.dll" Function ULong CreateMailslot(Ref String lpName,ULong nMaxMessageSize,ULong lReadTimeout,Ref SECURITY_ATTRIBUTES lpSecurityAttributes) Library "kernel32.dll" Alias For "CreateMailslotA" Function ULong CreateMDIWindow(Ref String lpClassName,Ref String lpWindowName,ULong dwStyle,ULong X,ULong Y,ULong nWidth,ULong nHeight,ULong hwndParent,ULong hInstance,ULong lParam) Library "user32.dll" Alias For "CreateMDIWindowA" Function ULong CreateMenu() Library "user32.dll" Function ULong CreateMetaFile(Ref String lpString) Library "gdi32.dll" Alias For "CreateMetaFileA" Function ULong CreateMutex(Ref SECURITY_ATTRIBUTES lpMutexAttributes,ULong bInitialOwner,Ref String lpName) Library "kernel32.dll" Alias For "CreateMutexA" Function ULong CreateNamedPipe(Ref String lpName,ULong dwOpenMode,ULong dwPipeMode,ULong nMaxInstances,ULong nOutBufferSize,ULong nInBufferSize,ULong nDefaultTimeOut,Ref SECURITY_ATTRIBUTES lpSecurityAttributes) Library "kernel32.dll" Alias For "CreateNamedPipeA" Function ULong CreatePalette(Ref LOGPALETTE lpLogPalette) Library "gdi32.dll" Function ULong CreatePatternBrush(ULong hBitmap) Library "gdi32.dll" Function ULong CreatePen(ULong nPenStyle,ULong nWidth,ULong crColor) Library "gdi32.dll" Function ULong CreatePenIndirect(Ref LOGPEN lpLogPen) Library "gdi32.dll" Function ULong CreatePipe(Ref ULong phReadPipe,Ref ULong phWritePipe,Ref SECURITY_ATTRIBUTES lpPipeAttributes,ULong nSize) Library "kernel32.dll" Function ULong CreatePolygonRgn(Ref POINTAPI lpPoint,ULong nCount,ULong nPolyFillMode) Library "gdi32.dll" Function ULong CreatePolyPolygonRgn(Ref POINTAPI lpPoint,Ref ULong lpPolyCounts,ULong nCount,ULong nPolyFillMode) Library "gdi32.dll" Function ULong CreatePopupMenu() Library "user32.dll" Function ULong CreatePrivateObjectSecurity(Ref SECURITY_DESCRIPTOR ParentDescriptor,Ref SECURITY_DESCRIPTOR CreatorDescriptor,Ref SECURITY_DESCRIPTOR NewDescriptor,ULong IsDirectoryObject,ULong Token,Ref GENERIC_MAPPING GenericMapping) Library "advapi32.dll" Function ULong CreateProcess(Ref String lpApplicationName,Ref String lpCommandLine,Ref SECURITY_ATTRIBUTES lpProcessAttributes,Ref SECURITY_ATTRIBUTES lpThreadAttributes,ULong bInheritHandles,ULong dwCreationFlags,Ref Any lpEnvironment,Ref String lpCurrentDriectory,Ref STARTUPINFO lpStartupInfo,Ref PROCESS_INFORMATION lpProcessInformation) Library "kernel32.dll" Alias For "CreateProcessA" Function ULong CreateProcessAsUser(ULong hToken,Ref String lpApplicationName,Ref String lpCommandLine,SECURITY_ATTRIBUTES lpProcessAttributes,SECURITY_ATTRIBUTES lpThreadAttributes,ULong bInheritHandles,ULong dwCreationFlags,Ref String lpEnvironment,Ref String lpCurrentDirectory,STARTUPINFO lpStartupInfo,PROCESS_INFORMATION lpProcessInformation) Library "kernel32.dll" Alias For "CreateProcessAsUserA" Function ULong CreateRectRgn(ULong X1,ULong Y1,ULong X2,ULong Y2) Library "gdi32.dll" Function ULong CreateRectRgnIndirect(Ref RECT lpRect) Library "gdi32.dll" Function ULong CreateRemoteThread(ULong hProcess,Ref SECURITY_ATTRIBUTES lpThreadAttributes,ULong dwStackSize,Ref ULong lpStartAddress,Ref Any lpParameter,ULong dwCreationFlags,Ref ULong lpThreadId) Library "kernel32.dll" Function ULong CreateRoundRectRgn(ULong X1,ULong Y1,ULong X2,ULong Y2,ULong X3,ULong Y3) Library "gdi32.dll" Function ULong CreateScalableFontResource(ULong fHidden,Ref String lpszResourceFile,Ref String lpszFontFile,Ref String lpszCurrentPath) Library "gdi32.dll" Alias For "CreateScalableFontResourceA" Function ULong CreateSemaphore(Ref SECURITY_ATTRIBUTES lpSemaphoreAttributes,ULong lInitialCount,ULong lMaximumCount,Ref String lpName) Library "kernel32.dll" Alias For "CreateSemaphoreA" Function ULong CreateService(ULong hSCManager,Ref String lpServiceName,Ref String lpDisplayName,ULong dwDesiredAccess,ULong dwServiceType,ULong dwStartType,ULong dwErrorControl,Ref String lpBinaryPathName,Ref String lpLoadOrderGroup,Ref ULong lpdwTagId,Ref String lpDependencies,Ref String lp,Ref String lpPassword) Library "advapi32.dll" Alias For "CreateServiceA" Function ULong CreateSolidBrush(ULong crColor) Library "gdi32.dll" Function ULong CreateTapePartition(ULong hDevice,ULong dwPartitionMethod,ULong dwCount,ULong dwSize) Library "kernel32.dll" Function ULong CreateThread(Ref SECURITY_ATTRIBUTES lpThreadAttributes,ULong dwStackSize,Ref ULong lpStartAddress,Ref Any lpParameter,ULong dwCreationFlags,Ref ULong lpThreadId) Library "kernel32.dll" Function ULong CreateWindow(Ref String lpClassName,Ref String lpWindowName,ULong dwStyle,ULong X,ULong Y,ULong nWidth,ULong nHeight,ULong hwndParent,ULong hMenu,ULong hInstance,Ref Any lpParam) Library "user32.dll" Alias For "CreateWindowA" Function ULong CreateWindowEx(ULong dwExStyle,Ref String lpClassName,Ref String lpWindowName,ULong dwStyle,ULong X,ULong Y,ULong nWidth,ULong nHeight,ULong hwndParent,ULong hMenu,ULong hInstance,Ref Any lpParam) Library "user32.dll" Function ULong DdeAbandonTransaction(ULong idInst,ULong hConv,ULong idTransaction) Library "user32.dll" Function ULong DdeAccessData(ULong hData,Ref ULong pcbDataSize) Library "user32.dll" Alias For "DdeAccessDataA" Function ULong DdeAddData(ULong hData,Ref Byte pSrc,ULong cb,ULong cbOff) Library "user32.dll" Alias For "DdeAddDataA" Function ULong DdeClientTransaction(Ref Byte pData,ULong cbData,ULong hConv,ULong hszItem,ULong wFmt,ULong wType,ULong dwTimeout,Ref ULong pdwResult) Library "user32.dll" Function ULong DdeCmpStringHandles(ULong hsz1,ULong hsz2) Library "user32.dll" Function ULong DdeConnect(ULong idInst,ULong hszService,ULong hszTopic,Ref CONVCONTEXT pCC) Library "user32.dll" Function ULong DdeConnectList(ULong idInst,ULong hszService,ULong hszTopic,ULong hConvList,Ref CONVCONTEXT pCC) Library "user32.dll" Function ULong DdeCreateDataHandle(ULong idInst,Ref Byte pSrc,ULong cb,ULong cbOff,ULong hszItem,ULong wFmt,ULong afCmd) Library "user32.dll" Function ULong DdeCreateStringHandle(ULong idInst,Ref String psz,ULong iCodePage) Library "user32.dll" Alias For "DdeCreateStringHandleA" Function ULong DdeDisconnect(ULong hConv) Library "user32.dll" Function ULong DdeDisconnectList(ULong hConvList) Library "user32.dll" Function ULong DdeEnableCallback(ULong idInst,ULong hConv,ULong wCmd) Library "user32.dll" Function ULong DdeFreeDataHandle(ULong hData) Library "user32.dll" Function ULong DdeFreeStringHandle(ULong idInst,ULong hsz) Library "user32.dll" Function ULong DdeGetData(ULong hData,Ref Byte pDst,ULong cbMax,ULong cbOff) Library "user32.dll" Alias For "DdeGetDataA" Function ULong DdeGetLastError(ULong idInst) Library "user32.dll" Function ULong DdeImpersonateClient(ULong hConv) Library "user32.dll" Function Integer DdeInitialize(Ref ULong pidInst,ULong pfnCallback,ULong afCmd,ULong ulRes) Library "user32.dll" Alias For "DdeInitializeA" Function ULong DdeKeepStringHandle(ULong idInst,ULong hsz) Library "user32.dll" Function ULong DdeNameService(ULong idInst,ULong hsz1,ULong hsz2,ULong afCmd) Library "user32.dll" Function ULong DdePostAdvise(ULong idInst,ULong hszTopic,ULong hszItem) Library "user32.dll" Function ULong DdeQueryConvInfo(ULong hConv,ULong idTransaction,Ref CONVINFO pConvInfo) Library "user32.dll" Function ULong DdeQueryNextServer(ULong hConvList,ULong hConvPrev) Library "user32.dll" Function ULong DdeQueryString(ULong idInst,ULong hsz,Ref String psz,ULong cchMax,ULong iCodePage) Library "user32.dll" Alias For "DdeQueryStringA" Function ULong DdeReconnect(ULong hConv) Library "user32.dll" Function ULong DdeSetQualityOfService(ULong hWndClient,Ref SECURITY_QUALITY_OF_SERVICE pqosNew,Ref SECURITY_QUALITY_OF_SERVICE pqosPrev) Library "user32.dll" Function ULong DdeSetUserHandle(ULong hConv,ULong id,ULong hUser) Library "user32.dll" Function ULong DdeUnaccessData(ULong hData) Library "user32.dll" Alias For "DdeUnaccessDataA" Function ULong DdeUninitialize(ULong idInst) Library "user32.dll" Function ULong DebugActiveProcess(ULong dwProcessId) Library "kernel32.dll" Subroutine DebugBreak() Library "kernel32.dll" Function ULong DefDlgProc(ULong hDlg,ULong wMsg,ULong wParam,ULong lParam) Library "user32.dll" Alias For "DefDlgProcA" Function ULong DefDriverProc(ULong dwDriverIdentifier,ULong hdrvr,ULong uMsg,ULong lParam1,ULong lParam2) Library "winmm.dll" Function ULong DeferWindowPos(ULong hWinPosInfo,ULong hwnd,ULong hWndInsertAfter,ULong X,ULong Y,ULong cx,ULong cy,ULong wFlags) Library "user32.dll" Function ULong DefFrameProc(ULong hwnd,ULong hWndMDIClient,ULong wMsg,ULong wParam,ULong lParam) Library "user32.dll" Alias For "DefFrameProcA" Function ULong DefineDosDevice(ULong dwFlags,Ref String lpDeviceName,Ref String lpTargetPath) Library "kernel32.dll" Alias For "DefineDosDeviceA" Function ULong DefMDIChildProc(ULong hwnd,ULong wMsg,ULong wParam,ULong lParam) Library "user32.dll" Alias For "DefMDIChildProcA" Function ULong DefWindowProc(ULong hwnd,ULong wMsg,ULong wParam,ULong lParam) Library "user32.dll" Alias For "DefWindowProcA" Function ULong DeleteAce(Ref ACL pAcl,ULong dwAceIndex) Library "advapi32.dll" Function Integer DeleteAtom(Integer nAtom) Library "kernel32.dll" Function ULong DeleteColorSpace(ULong hcolorspace) Library "gdi32.dll" Subroutine DeleteCriticalSection(Ref CRITICAL_SECTION lpCriticalSection) Library "kernel32.dll" Function ULong DeleteDC(ULong hdc) Library "gdi32.dll" Function ULong DeleteEnhMetaFile(ULong hemf) Library "gdi32.dll" Function ULong DeleteFile(Ref String lpFileName) Library "kernel32.dll" Alias For "DeleteFileA" Function ULong DeleteForm(ULong hPrinter,Ref String pFormName) Library "winspool.drv" Alias For "DeleteFormA" Function ULong DeleteMenu(ULong hMenu,ULong nPosition,ULong wFlags) Library "user32.dll" Function ULong DeleteMetaFile(ULong hMF) Library "gdi32.dll" Function ULong DeleteMonitor(Ref String pName,Ref String pEnvironment,Ref String pMonitorName) Library "winspool.drv" Alias For "DeleteMonitorA" Function ULong DeleteObject(ULong hObject) Library "gdi32.dll" Function ULong DeletePort(Ref String pName,ULong hwnd,Ref String pPortName) Library "winspool.drv" Alias For "DeletePortA" Function Boolean DeletePrinter(ULong hPrinter) Library "winspool" Function ULong DeletePrinterConnection(Ref String pName) Library "winspool.drv" Alias For "DeletePrinterConnectionA" Function ULong DeletePrinterDriver(Ref String pName,Ref String pEnvironment,Ref String pDriverName) Library "winspool.drv" Alias For "DeletePrinterDriverA" Function ULong DeletePrintProcessor(Ref String pName,Ref String pEnvironment,Ref String pPrintProcessorName) Library "winspool.drv" Alias For "DeletePrintProcessorA" Function ULong DeletePrintProvidor(Ref String pName,Ref String pEnvironment,Ref String pPrintProvidorName) Library "winspool.drv" Alias For "DeletePrintProvidorA" Function ULong DeleteService(ULong hService) Library "advapi32.dll" Function ULong DeregisterEventSource(ULong hEventLog) Library "advapi32.dll" Function ULong DescribePixelFormat(ULong hdc,ULong n,ULong un,Ref PIXELFORMATDESCRIPTOR lpPixelFormatDescriptor) Library "gdi32.dll" Function ULong DestroyAcceleratorTable(ULong haccel) Library "user32.dll" Function ULong DestroyCaret() Library "user32.dll" Function ULong DestroyCursor(ULong hCursor) Library "user32.dll" Function ULong DestroyIcon(ULong hIcon) Library "user32.dll" Function ULong DestroyMenu(ULong hMenu) Library "user32.dll" Function ULong DestroyPrivateObjectSecurity(Ref SECURITY_DESCRIPTOR ObjectDescriptor) Library "advapi32.dll" Function ULong DestroyWindow(ULong hwnd) Library "user32.dll" Function ULong DeviceCapabilities(Ref String lpDeviceName,Ref String lpPort,ULong iIndex,Ref String lpOutput,Ref DEVMODE lpDevMode) Library "winspool.drv" Alias For "DeviceCapabilitiesA" Function ULong DeviceIoControl(ULong hDevice,ULong dwIoControlCode,Ref Any lpInBuffer,ULong nInBufferSize,Ref Any lpOutBuffer,ULong nOutBufferSize,Ref ULong lpBytesReturned,Ref OVERLAPPED lpOverlapped) Library "kernel32.dll" Function ULong DialogBoxIndirectParam(ULong hInstance,Ref DLGTEMPLATE hDialogTemplate,ULong hwndParent,ULong lpDialogFunc,ULong dwInitParam) Library "user32.dll" Alias For "DialogBoxIndirectParamA" Function Boolean DisableThreadLibraryCalls(ULong hLibModule) Library "kernel32.dll" Function ULong DisconnectNamedPipe(ULong hNamedPipe) Library "kernel32.dll" Function ULong DispatchMessage(Ref msg lpMsg) Library "user32.dll" Alias For "DispatchMessageA" Function ULong DlgDirList(ULong hDlg,Ref String lpPathSpec,ULong nIDListBox,ULong nIDStaticPath,ULong wFileType) Library "user32.dll" Alias For "DlgDirListA" Function ULong DlgDirListComboBox(ULong hDlg,Ref String lpPathSpec,ULong nIDComboBox,ULong nIDStaticPath,ULong wFileType) Library "user32.dll" Alias For "DlgDirListComboBoxA" Function ULong DlgDirSelectComboBoxEx(ULong hWndDlg,Ref String lpszPath,ULong cbPath,ULong idComboBox) Library "user32.dll" Alias For "DlgDirSelectComboBoxExA" Function ULong DlgDirSelectEx(ULong hWndDlg,Ref String lpszPath,ULong cbPath,ULong idListBox) Library "user32.dll" Alias For "DlgDirSelectExA" Function ULong DocumentProperties(ULong hwnd,ULong hPrinter,Ref String pDeviceName,Ref DEVMODE pDevModeOutput,Ref DEVMODE pDevModeInput,ULong fMode) Library "winspool.drv" Alias For "DocumentPropertiesA" Function ULong DoEnvironmentSubst(Ref String szString,ULong cbString) Library "shell32.dll" Alias For "DoEnvironmentSubstA" Function ULong DosDateTimeToFileTime(ULong wFatDate,ULong wFatTime,Ref FILETIME lpFileTime) Library "kernel32.dll" Function ULong DPtoLP(ULong hdc,Ref POINTAPI lpPoint,ULong nCount) Library "gdi32.dll" Subroutine DragAcceptFiles(ULong hwnd,ULong fAccept) Library "shell32.dll" Function Boolean DragDetect(ULong hwnd,POINTAPI pt) Library "user32.dll" Subroutine DragFinish(ULong hDrop) Library "shell32.dll" Function ULong DragObject(ULong hWnd1,ULong hWnd2,ULong un,ULong dw,ULong hCursor) Library "user32.dll" Function ULong DragQueryFile(ULong hDrop,ULong UInt,Ref String lpStr,ULong ch) Library "shell32.dll" Alias For "DragQueryFileA" Function ULong DragQueryPoint(ULong hDrop,Ref POINTAPI lpPoint) Library "shell32.dll" Function Boolean DrawAnimatedRects(ULong hwnd,ULong idAni,Ref RECT lprcFrom,Ref RECT lprcTo) Library "user32.dll" Function Boolean DrawCaption(ULong hwnd,ULong hdc,Ref RECT pcRect,ULong un) Library "user32.dll" Function Boolean DrawEdge(ULong hdc,Ref RECT qrc,ULong edge,ULong grfFlags) Library "user32.dll" Function ULong DrawEscape(ULong hdc,ULong nEscape,ULong cbInput,Ref String lpszInData) Library "gdi32.dll" Function ULong DrawFocusRect(ULong hdc,Ref RECT lpRect) Library "user32.dll" Function Boolean DrawFrameControl(ULong hdc,Ref RECT lpRect,ULong un1,ULong un2) Library "user32.dll" Function ULong DrawIcon(ULong hdc,ULong X,ULong Y,ULong hIcon) Library "user32.dll" Function Boolean DrawIconEx(ULong hdc,ULong xLeft,ULong yTop,ULong hIcon,ULong cxWidth,ULong cyWidth,ULong istepIfAniCur,ULong hbrFlickerFreeDraw,ULong diFlags) Library "user32.dll" Function ULong DrawMenuBar(ULong hwnd) Library "user32.dll" Function Boolean DrawState(ULong hdc,ULong hBrush,ULong lpDrawStateProc,ULong lParam,ULong wParam,ULong n1,ULong n2,ULong n3,ULong n4,ULong un) Library "user32.dll" Alias For "DrawStateA" Function ULong DrawText(ULong hdc,Ref String lpStr,ULong nCount,Ref RECT lpRect,ULong wFormat) Library "user32.dll" Alias For "DrawTextA" Function ULong DrawTextEx(ULong hdc,Ref String lpsz,ULong n,Ref RECT lpRect,ULong un,Ref DRAWTEXTPARAMS lpDrawTextParams) Library "user32.dll" Alias For "DrawTextExA" Function ULong DrvGetModuleHandle(ULong hDriver) Library "winmm.dll" Function ULong DuplicateHandle(ULong hSourceProcessHandle,ULong hSourceHandle,ULong hTargetProcessHandle,Ref ULong lpTargetHandle,ULong dwDesiredAccess,ULong bInheritHandle,ULong dwOptions) Library "kernel32.dll" Function ULong DuplicateIcon(ULong hInst,ULong hIcon) Library "shell32.dll" Function ULong DuplicateToken(ULong ExistingTokenHandle,Ref Integer ImpersonationLevel,Ref ULong DuplicateTokenHandle) Library "advapi32.dll" Function ULong Ellipse(ULong hdc,ULong X1,ULong Y1,ULong X2,ULong Y2) Library "gdi32.dll" Function ULong EmptyClipboard() Library "user32.dll" Function ULong EnableMenuItem(ULong hMenu,ULong wIDEnableItem,ULong wEnable) Library "user32.dll" Function ULong EnableScrollBar(ULong hwnd,ULong wSBflags,ULong wArrows) Library "user32.dll" Function ULong EnableWindow(ULong hwnd,ULong fEnable) Library "user32.dll" Function ULong EndDeferWindowPos(ULong hWinPosInfo) Library "user32.dll" Function ULong EndDialog(ULong hDlg,ULong nResult) Library "user32.dll" Function ULong EndDoc(ULong hdc) Library "gdi32.dll" Function ULong EndDoc(ULong hdc) Library "gdi32.dll" Function ULong EndDocPrinter(ULong hPrinter) Library "winspool.drv" Function ULong EndPage(ULong hdc) Library "gdi32.dll" Function ULong EndPagePrinter(ULong hPrinter) Library "winspool.drv" Function ULong EndPaint(ULong hwnd,Ref PAINTSTRUCT lpPaint) Library "user32.dll" Function ULong EndPath(ULong hdc) Library "gdi32.dll" Function ULong EndUpdateResource(ULong hUpdate,ULong fDiscard) Library "kernel32.dll" Alias For "EndUpdateResourceA" Subroutine EnterCriticalSection(Ref CRITICAL_SECTION lpCriticalSection) Library "kernel32.dll" Function Boolean EnumCalendarInfo(ULong lpCalInfoEnumProc,ULong Locale,ULong Calendar,ULong CalType) Library "kernel32.dll" Alias For "EnumCalendarInfoA" Function Boolean EnumChildWindows(ULong hwndParent,ULong lpEnumFunc,ULong lParam) Library "user32.dll" Function ULong EnumClipboardFormats(ULong wFormat) Library "user32.dll" Function ULong EnumDateFormats(ULong lpDateFmtEnumProc,ULong Locale,ULong dwFlags) Library "kernel32.dll" Function ULong EnumDependentServices(ULong hService,ULong dwServiceState,Ref ENUM_SERVICE_STATUS lpServices,ULong cbBufSize,Ref ULong pcbBytesNeeded,Ref ULong lpServicesReturned) Library "advapi32.dll" Alias For "EnumDependentServicesA" Function Boolean EnumDesktops(ULong hWinSta,ULong lpEnumFunc,ULong lParam) Library "user32.dll" Alias For "EnumDesktopsA" Function Boolean EnumDesktopWindows(ULong hDesktop,ULong lpfn,ULong lParam) Library "user32.dll" Function ULong EnumEnhMetaFile(ULong hdc,ULong hemf,ULong lpEnhMetaFunc,Ref Any lpData,Ref RECT lpRect) Library "gdi32.dll" Function ULong EnumFontFamilies(ULong hdc,Ref String lpszFamily,ULong lpEnumFontFamProc,ULong lParam) Library "gdi32.dll" Alias For "EnumFontFamiliesA" Function ULong EnumFontFamiliesEx(ULong hdc,Ref LOGFONT lpLogFont,ULong lpEnumFontProc,ULong lParam,ULong dw) Library "gdi32.dll" Alias For "EnumFontFamiliesExA" Function ULong EnumFonts(ULong hdc,Ref String lpsz,ULong lpFontEnumProc,ULong lParam) Library "gdi32.dll" Alias For "EnumFontsA" Function ULong EnumForms(ULong hPrinter,ULong Level,Ref Byte pForm,ULong cbBuf,Ref ULong pcbNeeded,Ref ULong pcReturned) Library "winspool.drv" Alias For "EnumFormsA" Function ULong EnumICMProfiles(ULong hdc,ULong icmEnumProc,ULong lParam) Library "gdi32.dll" Alias For "EnumICMProfilesA" Function ULong EnumJobs(ULong hPrinter,ULong FirstJob,ULong NoJobs,ULong Level,Ref Byte pJob,ULong cdBuf,Ref ULong pcbNeeded,Ref ULong pcReturned) Library "winspool.drv" Alias For "EnumJobsA" Function Boolean EnumMetaFile(ULong hdc,ULong hMetafile,ULong lpMFEnumProc,ULong lParam) Library "gdi32.dll" Function ULong EnumMonitors((Ref String pName,ULong Level,Ref Byte pMonitors,ULong cbBuf,Ref ULong pcbNeeded,Ref ULong pcReturned) Library "winspool.drv" Alias For "EnumMonitorsA" Function ULong EnumObjects(ULong hdc,ULong n,ULong lpGOBJEnumProc,Ref Any lpVoid) Library "gdi32.dll" Function ULong EnumPorts(Ref String pName,ULong Level,ULong lpbPorts,ULong cbBuf,Ref ULong pcbNeeded,Ref ULong pcReturned) Library "winspool.drv" Alias For "EnumPortsA" Function ULong EnumPrinterDrivers(Ref String pName,Ref String pEnvironment,ULong Level,Ref Byte pDriverInfo,ULong cdBuf,Ref ULong pcbNeeded,Ref ULong pcRetruned) Library "winspool.drv" Alias For "EnumPrinterDriversA" Function ULong EnumPrinterPropertySheets(Ref ULong hPrinter,Ref ULong hwnd,Ref ULong lpfnAdd,ULong lParam) Library "winspool.drv" Function ULong EnumPrinters(ULong flags,Ref String Name,ULong Level,Ref Byte pPrinterEnum,ULong cdBuf,Ref ULong pcbNeeded,Ref ULong pcReturned) Library "winspool.drv" Alias For "EnumPrintersA" Function ULong EnumPrintProcessorDatatypes(Ref String pName,Ref String pPrintProcessorName,ULong Level,Ref Byte pDatatypes,ULong cdBuf,Ref ULong pcbNeeded,Ref ULong pcRetruned) Library "winspool.drv" Alias For "EnumPrintProcessorDatatypesA" Function ULong EnumPrintProcessors(Ref String pName,Ref String pEnvironment,ULong Level,Ref Byte pPrintProcessorInfo,ULong cdBuf,Ref ULong pcbNeeded,Ref ULong pcReturned) Library "winspool.drv" Alias For "EnumPrintProcessorsA" Function ULong EnumProps(ULong hwnd,ULong lpEnumFunc) Library "user32.dll" Alias For "EnumPropsA" Function ULong EnumPropsEx(ULong hwnd,ULong lpEnumFunc,ULong lParam) Library "user32.dll" Alias For "EnumPropsExA" Function Boolean EnumResourceLanguages(ULong hModule,Ref String lpType,Ref String lpName,ULong lpEnumFunc,ULong lParam) Library "kernel32.dll" Alias For "EnumResourceLanguagesA" Function Boolean EnumResourceNames(ULong hModule,Ref String lpType,ULong lpEnumFunc,ULong lParam) Library "kernel32.dll" Alias For "EnumResourceNamesA" Function Boolean EnumResourceTypes(ULong hModule,ULong lpEnumFunc,ULong lParam) Library "kernel32.dll" Alias For "EnumResourceTypesA" Function ULong EnumServicesStatus(ULong hSCManager,ULong dwServiceType,ULong dwServiceState,Ref ENUM_SERVICE_STATUS lpServices,ULong cbBufSize,Ref ULong pcbBytesNeeded,Ref ULong lpServicesReturned,Ref ULong lpResumeHandle) Library "advapi32.dll" Alias For "EnumServicesStatusA" Function ULong EnumSystemCodePages(ULong lpCodePageEnumProc,ULong dwFlags) Library "kernel32.dll" Function ULong EnumSystemLocales(ULong lpLocaleEnumProc,ULong dwFlags) Library "kernel32.dll" Function Boolean EnumThreadWindows(ULong dwThreadId,ULong lpfn,ULong lParam) Library "user32.dll" Function ULong EnumTimeFormats(ULong lpTimeFmtEnumProc,ULong Locale,ULong dwFlags) Library "kernel32.dll" Function Boolean EnumWindowStations(ULong lpEnumFunc,ULong lParam) Library "user32.dll" Alias For "EnumWindowStationsA" Function ULong EqualPrefixSid(Ref Any pSid1,Ref Any pSid2) Library "advapi32.dll" Function ULong EqualRect(Ref RECT lpRect1,Ref RECT lpRect2) Library "user32.dll" Function ULong EqualRgn(ULong hSrcRgn1,ULong hSrcRgn2) Library "gdi32.dll" Function ULong EqualSid(Ref Any pSid1,Ref Any pSid2) Library "advapi32.dll" Function ULong EraseTape(ULong hDevice,ULong dwEraseType,ULong bimmediate) Library "kernel32.dll" Function ULong Escape(ULong hdc,ULong nEscape,ULong nCount,Ref String lpInData,Ref Any lpOutData) Library "gdi32.dll" Function ULong EscapeCommFUNCTION(ULong nCid,ULong nFunc) Library "kernel32.dll" Function ULong ExcludeClipRect(ULong hdc,ULong X1,ULong Y1,ULong X2,ULong Y2) Library "gdi32.dll" Function ULong ExcludeUpdateRgn(ULong hdc,ULong hwnd) Library "user32.dll" Subroutine ExitProcess(ULong uExitCode) Library "kernel32.dll" Subroutine ExitThread(ULong dwExitCode) Library "kernel32.dll" Function ULong ExitWindows(ULong dwReserved,ULong uReturnCode) Library "user32.dll" Function ULong ExitWindowsEx(ULong uFlags,ULong dwReserved) Library "user32.dll" Function ULong ExpandEnvironmentStrings(Ref String lpSrc,Ref String lpDst,ULong nSize) Library "kernel32.dll" Alias For "ExpandEnvironmentStringsA" Function ULong ExtCreatePen(ULong dwPenStyle,ULong dwWidth,Ref LOGBRUSH lplb,ULong dwStyleCount,Ref ULong lpStyle) Library "gdi32.dll" Function ULong ExtCreateRegion(Ref xform lpXform,ULong nCount,Ref RGNDATA lpRgnData) Library "gdi32.dll" Function ULong ExtEscape(ULong hdc,ULong nEscape,ULong cbInput,Ref String lpszInData,ULong cbOutput,Ref String lpszOutData) Library "gdi32.dll" Function ULong ExtFloodFill(ULong hdc,ULong X,ULong Y,ULong crColor,ULong wFillType) Library "gdi32.dll" Function ULong ExtractAssociatedIcon(ULong hInst,Ref String lpIconPath,Ref ULong lpiIcon) Library "shell32.dll" Alias For "ExtractAssociateIconA" Function ULong ExtractIcon(ULong hInst,Ref String lpszExeFileName,ULong nIconIndex) Library "shell32.dll" Alias For "ExtractIconA" Function ULong ExtractIconEx(Ref String lpszFile,ULong nIconIndex,Ref ULong phiconLarge,Ref ULong phiconSmall,ULong nIcons) Library "shell32.dll" Alias For "ExtractIconExA" Function ULong ExtSelectClipRgn(ULong hdc,ULong hRgn,ULong fnMode) Library "gdi32.dll" Function ULong ExtTextOut(ULong hdc,ULong X,ULong Y,ULong wOptions,Ref RECT lpRect,Ref String lpString,ULong nCount,Ref ULong lpDx) Library "gdi32.dll" Alias For "ExtTextOutA" Subroutine FatalAppExit(ULong uAction,Ref String lpMessageText) Library "kernel32.dll" Alias For "FatalAppExitA" Subroutine FatalExit(ULong code) Library "kernel32.dll" Function ULong FileTimeToDosDateTime(Ref FILETIME lpFileTime,ULong lpFatDate,ULong lpFatTime) Library "kernel32.dll" Function ULong FileTimeToLocalFileTime(Ref FILETIME lpFileTime,Ref FILETIME lpLocalFileTime) Library "kernel32.dll" Function ULong FileTimeToSystemTime(Ref FILETIME lpFileTime,Ref SYSTEMTIME lpSystemTime) Library "kernel32.dll" Function ULong FillConsoleOutputAttribute(ULong hConsoleOutput,ULong wAttribute,ULong nLength,Ref COORD dwWriteCoord,Ref ULong lpNumberOfAttrsWritten) Library "kernel32.dll" Function ULong FillConsoleOutputCharacter(ULong hConsoleOutput,Byte cCharacter,ULong nLength,Ref COORD dwWriteCoord,Ref ULong lpNumberOfCharsWritten) Library "kernel32.dll" Alias For "FillConsoleOutputCharacterA" Function ULong FillPath(ULong hdc) Library "gdi32.dll" Function ULong FillRect(ULong hdc,Ref RECT lpRect,ULong hBrush) Library "user32.dll" Function ULong FillRgn(ULong hdc,ULong hRgn,ULong hBrush) Library "gdi32.dll" Function Integer FindAtom(Ref String lpString) Library "kernel32.dll" Alias For "FindAtomA" Function ULong FindClose(ULong hFindFile) Library "kernel32.dll" Function ULong FindCloseChangeNotification(ULong hChangeHandle) Library "kernel32.dll" Function Boolean FindClosePrinterChangeNotification(ULong hChange) Library "winspool" Function String FindEnvironmentString(Ref String szEnvVar) Library "shell32.dll" Alias For "FindEnvironmentStringA" Function ULong FindExecutable(Ref String lpFile,Ref String lpDirectory,Ref String lpResult) Library "shell32.dll" Alias For "FindExecutableA" Function ULong FindFirstChangeNotification(Ref String lpPathName,ULong bWatchSubtree,ULong dwNotifyFilter) Library "kernel32.dll" Alias For "FindFirstChangeNotificationA" Function ULong FindFirstFile(Ref String lpFileName,Ref WIN32_FIND_DATA lpFindFileData) Library "kernel32.dll" Alias For "FindFirstFileA" Function ULong FindFirstFreeAce(Ref ACL pAcl,Ref ULong pAce) Library "advapi32.dll" Function ULong FindFirstPrinterChangeNotification(ULong hPrinter,ULong fdwFlags,ULong fdwOptions,Ref String pPrinterNotifyOptions) Library "winspool" Function ULong FindNextChangeNotification(ULong hChangeHandle) Library "kernel32.dll" Function ULong FindNextFile(ULong hFindFile,Ref WIN32_FIND_DATA lpFindFileData) Library "kernel32.dll" Alias For "FindNextFileA" Function Boolean FindNextPrinterChangeNotification(ULong hChange,Ref ULong pdwChange,Ref String pvReserved,ULong ppPrinterNotifyInfo) Library "winspool" Function ULong FindResource(ULong hInstance,Ref String lpName,Ref String lpType) Library "kernel32.dll" Alias For "FindResourceA" Function ULong FindResourceEx(ULong hModule,Ref String lpType,Ref String lpName,ULong wLanguage) Library "kernel32.dll" Alias For "FindResourceExA" //FUNCTION ulong FindText(ref FINDREPLACE pFindreplace) LIBRARY "comdlg32.dll" ALIAS FOR "FindTextA Function ULong FindWindow(Ref String lpClassName,Ref String lpWindowName) Library "user32.dll" Alias For "FindWindowA" Function ULong FindWindowEx(ULong hWnd1,ULong hWnd2,Ref String lpsz1,Ref String lpsz2) Library "user32.dll" Alias For "FindWindowExA" Function Boolean FixBrushOrgEx(ULong hdc,ULong n1,ULong n2,Ref POINTAPI lpPoint) Library "gdi32.dll" Function ULong FlashWindow(ULong hwnd,ULong bInvert) Library "user32.dll" Function ULong FlattenPath(ULong hdc) Library "gdi32.dll" Function ULong FloodFill(ULong hdc,ULong X,ULong Y,ULong crColor) Library "gdi32.dll" Function ULong FlushConsoleInputBuffer(ULong hConsoleInput) Library "kernel32.dll" Function ULong FlushFileBuffers(ULong hFile) Library "kernel32.dll" Function ULong FlushInstructionCache(ULong hProcess,Ref Any lpBaseAddress,ULong dwSize) Library "kernel32.dll" Function ULong FlushViewOfFile(Ref Any lpBaseAddress,ULong dwNumberOfBytesToFlush) Library "kernel32.dll" Function ULong FoldString(ULong dwMapFlags,Ref String lpSrcStr,ULong cchSrc,Ref String lpDestStr,ULong cchDest) Library "kernel32.dll" Alias For "FoldStringA" Function ULong FormatMessage(ULong dwFlags,Ref Any lpSource,ULong dwMessageId,ULong dwLanguageId,Ref String lpBuffer,ULong nSize,Ref ULong Arguments) Library "kernel32.dll" Alias For "FormatMessageA" Function ULong FrameRect(ULong hdc,Ref RECT lpRect,ULong hBrush) Library "user32.dll" Function ULong FrameRgn(ULong hdc,ULong hRgn,ULong hBrush,ULong nWidth,ULong nHeight) Library "gdi32.dll" Function ULong FreeConsole() Library "kernel32.dll" Function ULong FreeDDElParam(ULong msg,ULong lParam) Library "user32.dll" Function Boolean FreeEnvironmentStrings(Ref String lpsz) Library "kernel32.dll" Alias For "FreeEnvironmentStringsA" Function ULong FreeLibrary(ULong hLibModule) Library "kernel32.dll" Subroutine FreeLibraryAndExitThread(ULong hLibModule,ULong dwExitCode) Library "kernel32.dll" Function Boolean FreeResource(ULong hResData) Library "kernel32.dll" Subroutine FreeSid(Ref Any pSid) Library "advapi32.dll" Function ULong GdiComment(ULong hdc,ULong cbSize,Ref Byte lpData) Library "gdi32.dll" Function ULong GdiFlush() Library "gdi32.dll" Function ULong GdiGetBatchLimit() Library "gdi32.dll" Function ULong GdiSetBatchLimit(ULong dwLimit) Library "gdi32.dll" Function ULong GenerateConsoleCtrlEvent(ULong dwCtrlEvent,ULong dwProcessGroupId) Library "kernel32.dll" Function ULong GetAce(Ref ACL pAcl,ULong dwAceIndex,Ref Any pAce) Library "advapi32.dll" Function ULong GetAclInformation(Ref ACL pAcl,Ref Any pAclInformation,ULong nAclInformationLength,Integer dwAclInformationClass) Library "advapi32.dll" Function ULong GetACP() Library "kernel32.dll" Function ULong GetActiveWindow() Library "user32.dll" Function ULong GetArcDirection(ULong hdc) Library "gdi32.dll" Function ULong GetAspectRatioFilterEx(ULong hdc,Ref SIZE lpAspectRatio) Library "gdi32.dll" Function Integer GetAsyncKeyState(ULong vKey) Library "user32.dll" Function ULong GetAtomName(Integer nAtom,Ref String lpBuffer,ULong nSize) Library "kernel32.dll" Alias For "GetAtomNameA" Function ULong GetBinaryType(Ref String lpApplicationName,Ref ULong lpBinaryType) Library "kernel32.dll" Alias For "GetBinaryTypeA" Function ULong GetBitmapBits(ULong hBitmap,ULong dwCount,Ref Any lpBits) Library "gdi32.dll" Function ULong GetBitmapDimensionEx(ULong hBitmap,Ref SIZE lpDimension) Library "gdi32.dll" Function ULong GetBkColor(ULong hdc) Library "gdi32.dll" Function ULong GetBkMode(ULong hdc) Library "gdi32.dll" Function ULong GetBoundsRect(ULong hdc,Ref RECT lprcBounds,ULong flags) Library "gdi32.dll" Function Boolean GetBrushOrgEx(ULong hdc,Ref POINTAPI lpPoint) Library "gdi32.dll" Function ULong GetCapture() Library "user32.dll" Function ULong GetCaretBlinkTime() Library "user32.dll" Function ULong GetCaretPos(Ref POINTAPI lpPoint) Library "user32.dll" Function ULong GetCharABCWidths(ULong hdc,ULong uFirstChar,ULong uLastChar,Ref ABC lpabc) Library "gdi32.dll" Alias For "GetCharABCWidthsA" Function ULong GetCharABCWidthsFloat(ULong hdc,ULong iFirstChar,ULong iLastChar,Ref ABCFLOAT lpABCF) Library "gdi32.dll" Alias For "GetCharABCWidthsFloatA" //FUNCTION ulong GetCharacterPlacement(ulong hdc,ref string lpsz,ulong n1,ulong n2,ref GCP_RESULTS lpGcpResults,ulong dw) LIBRARY "gdi32.dll" ALIAS FOR " Function Boolean GetCharWidth(ULong hdc,ULong un1,ULong un2,Ref ULong lpn) Library "gdi32.dll" Alias For "GetCharWidthA" Function ULong GetCharWidth32(ULong hdc,ULong iFirstChar,ULong iLastChar,Ref ULong lpBuffer) Library "gdi32.dll" Alias For "GetCharWidth32A" Function ULong GetCharWidthFloat(ULong hdc,ULong iFirstChar,ULong iLastChar,Ref Double pxBuffer) Library "gdi32.dll" Alias For "GetCharWidthFloatA" Function ULong GetClassInfo(ULong hInstance,Ref String lpClassName,Ref WNDCLASS lpWndClass) Library "user32.dll" Alias For "GetClassInfoA" Function ULong GetClassulong(ULong hwnd,ULong nIndex) Library "user32.dll" Alias For "GetClassLongA" Function ULong GetClassName(ULong hwnd,Ref String lpClassName,ULong nMaxCount) Library "user32.dll" Alias For "GetClassNameA" Function ULong GetClassWord(ULong hwnd,ULong nIndex) Library "user32.dll" Function ULong GetClientRect(ULong hwnd,Ref RECT lpRect) Library "user32.dll" Function ULong GetClipboardData(ULong wFormat) Library "user32.dll" Alias For "GetClipboardDataA" Function ULong GetClipboardFormatName(ULong wFormat,Ref String lpString,ULong nMaxCount) Library "user32.dll" Alias For "GetClipboardFormatNameA" Function ULong GetClipboardOwner() Library "user32.dll" Function ULong GetClipboardViewer() Library "user32.dll" Function ULong GetClipBox(ULong hdc,Ref RECT lpRect) Library "gdi32.dll" Function ULong GetClipCursor(Ref RECT lprc) Library "user32.dll" Function ULong GetClipRgn(ULong hdc,ULong hRgn) Library "gdi32.dll" Function ULong GetColorAdjustment(ULong hdc,Ref COLORADJUSTMENT lpca) Library "gdi32.dll" Function ULong GetColorSpace(ULong hdc) Library "gdi32.dll" Function String GetCommandLine() Library "kernel32.dll" Alias For "GetCommandLineA" Function Boolean GetCommConfig(ULong hCommDev,Ref COMMCONFIG lpCC,Ref ULong lpdwSize) Library "kernel32.dll" Function ULong GetCommMask(ULong hFile,Ref ULong lpEvtMask) Library "kernel32.dll" Function ULong GetCommModemStatus(ULong hFile,Ref ULong lpModemStat) Library "kernel32.dll" Function ULong GetCommProperties(ULong hFile,Ref COMMPROP lpCommProp) Library "kernel32.dll" Function ULong GetCommState(ULong nCid,Ref DCB lpDCB) Library "kernel32.dll" Function ULong GetCommTimeouts(ULong hFile,Ref COMMTIMEOUTS lpCommTimeouts) Library "kernel32.dll" Function ULong GetCompressedFileSize(Ref String lpFileName,Ref ULong lpFileSizeHigh) Library "kernel32.dll" Alias For "GetCompressedFileSizeA" Function ULong GetComputerName(Ref String lpBuffer,Ref ULong nSize) Library "kernel32.dll" Alias For "GetComputerNameA" Function ULong GetConsoleCP() Library "kernel32.dll" Function ULong GetConsoleCursorInfo(ULong hConsoleOutput,Ref CONSOLE_CURSOR_INFO lpConsoleCursorInfo) Library "kernel32.dll" Function ULong GetConsoleMode(ULong hConsoleHandle,Ref ULong lpMode) Library "kernel32.dll" Function ULong GetConsoleOutputCP() Library "kernel32.dll" Function ULong GetConsoleScreenBufferInfo(ULong hConsoleOutput,Ref CONSOLE_SCREEN_BUFFER_INFO lpConsoleScreenBufferInfo) Library "kernel32.dll" Function ULong GetConsoleTitle(Ref String lpConsoleTitle,ULong nSize) Library "kernel32.dll" Alias For "GetConsoleTitleA" Function ULong GetCPInfo(ULong CodePage,Ref CPINFO lpCPInfo) Library "kernel32.dll" Function ULong GetCurrencyFormat(ULong Locale,ULong dwFlags,Ref String lpValue,Ref CURRENCYFMT lpFormat,Ref String lpCurrencyStr,ULong cchCurrency) Library "kernel32.dll" Alias For "GetCurrencyFormatA" Function ULong GetCurrentDirectory(ULong nBufferLength,Ref String lpBuffer) Library "kernel32.dll" Function ULong GetCurrentObject(ULong hdc,ULong uObjectType) Library "gdi32.dll" Function ULong GetCurrentPositionEx(ULong hdc,Ref POINTAPI lpPoint) Library "gdi32.dll" Function ULong GetCurrentProcess() Library "kernel32.dll" Function ULong GetCurrentProcessId() Library "kernel32.dll" Function ULong GetCurrentThread() Library "kernel32.dll" Function ULong GetCurrentThreadId() Library "kernel32.dll" Function ULong GetCursor() Library "user32.dll" Function ULong GetCursorPos(Ref POINTAPI lpPoint) Library "user32.dll" Function ULong GetDateFormat(ULong Locale,ULong dwFlags,Ref SYSTEMTIME lpDate,Ref String lpFormat,Ref String lpDateStr,ULong cchDate) Library "kernel32.dll" Alias For "GetDateFormatA" Function ULong GetDC(ULong hwnd) Library "user32.dll" Function ULong GetDCEx(ULong hwnd,ULong hrgnclip,ULong fdwOptions) Library "user32.dll" Function ULong GetDCOrgEx(ULong hdc,Ref POINTAPI lpPoint) Library "gdi32.dll" Function Boolean GetDefaultCommConfig(Ref String lpszName,Ref COMMCONFIG lpCC,Ref ULong lpdwSize) Library "kernel32.dll" Alias For "GetDefaultCommConfigA" Function ULong GetDesktopWindow() Library "user32.dll" Function ULong GetDeviceCaps(ULong hdc,ULong nIndex) Library "gdi32.dll" Function ULong GetDeviceGammaRamp(ULong hdc,Ref Any lpv) Library "gdi32.dll" Function ULong GetDialogBaseUnits() Library "user32.dll" Function ULong GetDIBColorTable(ULong hdc,ULong un1,ULong un2,Ref RGBQUAD pRGBQuad) Library "gdi32.dll" Function ULong GetDIBits(ULong aHDC,ULong hBitmap,ULong nStartScan,ULong nNumScans,Ref Any lpBits,Ref BITMAPINFO lpBI,ULong wUsage) Library "gdi32.dll" Function ULong GetDiskFreeSpace(Ref String lpRootPathName,Ref ULong lpSectorsPerCluster,Ref ULong lpBytesPerSector,Ref ULong lpNumberOfFreeClusters,Ref ULong lpTtoalNumberOfClusters) Library "kernel32.dll" Alias For "GetDiskFreeSpaceA" Function ULong GetDlgCtrlID(ULong hwnd) Library "user32.dll" Function ULong GetDlgItem(ULong hDlg,ULong nIDDlgItem) Library "user32.dll" Function ULong GetDlgItemInt(ULong hDlg,ULong nIDDlgItem,ULong lpTranslated,ULong bSigned) Library "user32.dll" Function ULong GetDlgItemText(ULong hDlg,ULong nIDDlgItem,Ref String lpString,ULong nMaxCount) Library "user32.dll" Alias For "GetDlgItemTextA" Function ULong GetDoubleClickTime() Library "user32.dll" Function ULong GetDriverModuleHandle(ULong hDriver) Library "winmm.dll" Function ULong GetDriveType(Ref String nDrive) Library "kernel32.dll" Alias For "GetDriveTypeA" Function ULong GetEnhMetaFile(Ref String lpszMetaFile) Library "gdi32.dll" Alias For "GetEnhMetaFileA" Function ULong GetEnhMetaFileBits(ULong hemf,ULong cbBuffer,Ref Byte lpbBuffer) Library "gdi32.dll" Function ULong GetEnhMetaFileDescription(ULong hemf,ULong cchBuffer,Ref String lpszDescription) Library "gdi32.dll" Alias For "GetEnhMetaFileDescriptionA" Function ULong GetEnhMetaFileHeader(ULong hemf,ULong cbBuffer,Ref ENHMETAHEADER lpemh) Library "gdi32.dll" Function ULong GetEnhMetaFilePaletteEntries(ULong hemf,ULong cEntries,Ref PALETTEENTRY lppe) Library "gdi32.dll" Function String GetEnvironmentStrings() Library "kernel32.dll" Alias For "GetEnvironmentStringsA" Function ULong GetEnvironmentVariable(Ref String lpName,Ref String lpBuffer,ULong nSize) Library "kernel32.dll" Alias For "GetEnvironmentVariableA" Function ULong GetExitCodeProcess(ULong hProcess,Ref ULong lpExitCode) Library "kernel32.dll" Function ULong GetExitCodeThread(ULong hThread,Ref ULong lpExitCode) Library "kernel32.dll" Function ULong GetExpandedName(Ref String lpszSource,Ref String lpszBuffer) Library "lz32.dll" Alias For "GetExpandedNameA" Function ULong GetFileAttributes(Ref String lpFileName) Library "kernel32.dll" Alias For "GetFileAttributesA" Function ULong GetFileInformationByHandle(ULong hFile,Ref BY_HANDLE_FILE_INFORMATION lpFileInformation) Library "kernel32.dll" Function ULong GetFileSecurity(Ref String lpFileName,ULong RequestedInformation,Ref SECURITY_DESCRIPTOR pSecurityDescriptor,ULong nLength,Ref ULong lpnLengthNeeded) Library "advapi32.dll" Alias For "GetFileSecurityA" Function ULong GetFileSize(ULong hFile,Ref ULong lpFileSizeHigh) Library "kernel32.dll" Function ULong GetFileTime(ULong hFile,Ref FILETIME lpCreationTime,Ref FILETIME lpLastAccessTime,Ref FILETIME lpLastWriteTime) Library "kernel32.dll" Function Integer GetFileTitle(Ref String lpszFile,Ref String lpszTitle,Integer cbBuf) Library "comdlg32.dll" Alias For "GetFileTitleA" Function ULong GetFileType(ULong hFile) Library "kernel32.dll" Function ULong GetFileVersionInfo(Ref String lptstrFilename,ULong dwHandle,ULong dwLen,Ref Any lpData) Library "version.dll" Alias For "GetFileVersionInfoA" Function ULong GetFileVersionInfoSize(Ref String lptstrFilename,Ref ULong lpdwHandle) Library "version.dll" Alias For "GetFileVersionInfoSizeA" Function ULong GetFocus() Library "user32.dll" Function ULong GetFontData(ULong hdc,ULong dwTable,ULong dwOffset,Ref Any lpvBuffer,ULong cbData) Library "gdi32.dll" Alias For "GetFontDataA" Function ULong GetFontLanguageInfo(ULong hdc) Library "gdi32.dll" Function ULong GetForegroundWindow() Library "user32.dll" Function ULong GetForm(ULong hPrinter,Ref String pFormName,ULong Level,Ref Byte pForm,ULong cbBuf,Ref ULong pcbNeeded) Library "winspool.drv" Alias For "GetFormA" Function ULong GetFullPathName(Ref String lpFileName,ULong nBufferLength,Ref String lpBuffer,Ref String lpFilePart) Library "kernel32.dll" Alias For "GetFullPathNameA" Function ULong GetGlyphOutline(ULong hdc,ULong uChar,ULong fuFormat,Ref GLYPHMETRICS lpgm,ULong cbBuffer,Ref Any lpBuffer,Ref MAT2 lpmat2) Library "gdi32.dll" Alias For "GetGlyphOutlineA" Function ULong GetGraphicsMode(ULong hdc) Library "gdi32.dll" Function Boolean GetHandleInformation(ULong hObject,Ref ULong lpdwFlags) Library "kernel32.dll" Function ULong GetICMProfile(ULong hdc,ULong dw,Ref String lpStr) Library "gdi32.dll" Alias For "GetICMProfileA" Function ULong GetIconInfo(ULong hIcon,Ref ICONINFO piconinfo) Library "user32.dll" Function ULong GetInputState() Library "user32.dll" Function ULong GetJob(ULong hPrinter,ULong JobId,ULong Level,Ref Byte pJob,ULong cdBuf,Ref ULong pcbNeeded) Library "winspool.drv" Alias For "GetJobA" Function ULong GetKBCodePage() Library "user32.dll" Function ULong GetKernelObjectSecurity(ULong Handle,ULong RequestedInformation,Ref SECURITY_DESCRIPTOR pSecurityDescriptor,ULong nLength,Ref ULong lpnLengthNeeded) Library "advapi32.dll" Function ULong GetKerningPairs(ULong hdc,ULong cPairs,Ref KERNINGPAIR lpkrnpair) Library "gdi32.dll" Alias For "GetKerningPairsA" Function ULong GetKeyboardLayout(ULong dwLayout) Library "user32.dll" Function ULong GetKeyboardLayoutList(ULong nBuff,Ref ULong lpList) Library "user32.dll" Function ULong GetKeyboardLayoutName(Ref String pwszKLID) Library "user32.dll" Alias For "GetKeyboardLayoutNameA" Function ULong GetKeyboardState(Ref Byte pbKeyState) Library "user32.dll" Function ULong GetKeyboardType(ULong nTypeFlag) Library "user32.dll" Function ULong GetKeyNameText(ULong lParam,Ref String lpBuffer,ULong nSize) Library "user32.dll" Alias For "GetKeyNameTextA" Function Integer GetKeyState(ULong nVirtKey) Library "user32.dll" Function COORD GetLargestConsoleWindowSize(ULong hConsoleOutput) Library "kernel32.dll" Function ULong GetLastActivePopup(ULong hwndOwnder) Library "user32.dll" Function ULong GetLastError() Library "kernel32.dll" Function ULong GetLengthSid(Ref Any pSid) Library "advapi32.dll" Function ULong GetLocaleInfo(ULong Locale,ULong LCType,Ref String lpLCData,ULong cchData) Library "kernel32.dll" Alias For "GetLocaleInfoA" Subroutine GetLocalTime(Ref SYSTEMTIME lpSystemTime) Library "kernel32.dll" Function ULong GetLogColorSpace(ULong hcolorspace,LOGCOLORSPACE lplogcolorspace,ULong dw) Library "gdi32.dll" Alias For "GetLogColorSpaceA" Function ULong GetLogicalDrives() Library "kernel32.dll" Function ULong GetLogicalDriveStrings(ULong nBufferLength,Ref String lpBuffer) Library "kernel32.dll" Alias For "GetLogicalDriveStringsA" Function ULong GetMailslotInfo(ULong hMailslot,Ref ULong lpMaxMessageSize,Ref ULong lpNextSize,Ref ULong lpMessageCount,Ref ULong lpReadTimeout) Library "kernel32.dll" Function ULong GetMapMode(ULong hdc) Library "gdi32.dll" Function ULong GetMenu(ULong hwnd) Library "user32.dll" Function ULong GetMenuCheckMarkDimensions() Library "user32.dll" Function ULong GetMenuContextHelpId(ULong hMenu) Library "user32.dll" Function ULong GetMenuDefaultItem(ULong hMenu,ULong fByPos,ULong gmdiFlags) Library "user32.dll" Function ULong GetMenuItemCount(ULong hMenu) Library "user32.dll" Function ULong GetMenuItemID(ULong hMenu,ULong nPos) Library "user32.dll" Function Boolean GetMenuItemInfo(ULong hMenu,ULong un,Boolean b,Ref MENUITEMINFO lpMenuItemInfo) Library "user32.dll" Alias For "GetMenuItemInfoA" Function Boolean GetMenuItemRect(ULong hwnd,ULong hMenu,ULong uItem,Ref RECT lprcItem) Library "user32.dll" Function ULong GetMenuState(ULong hMenu,ULong wID,ULong wFlags) Library "user32.dll" Function ULong GetMenuString(ULong hMenu,ULong wIDItem,Ref String lpString,ULong nMaxCount,ULong wFlag) Library "user32.dll" Alias For "GetMenuStringA" Function ULong GetMessage(Ref msg lpMsg,ULong hwnd,ULong wMsgFilterMin,ULong wMsgFilterMax) Library "user32.dll" Alias For "GetMessageA" Function ULong GetMessageExtraInfo() Library "user32.dll" Function ULong GetMessagePos() Library "user32.dll" Function ULong GetMessageTime() Library "user32.dll" Function ULong GetMetaFile(Ref String lpFileName) Library "gdi32.dll" Alias For "GetMetaFileA" Function ULong GetMetaFileBitsEx(ULong hMF,ULong nSize,Ref Any lpvData) Library "gdi32.dll" Function ULong GetMetaRgn(ULong hdc,ULong hRgn) Library "gdi32.dll" Function ULong GetMiterLimit(ULong hdc,Ref Double peLimit) Library "gdi32.dll" Function ULong GetModuleFileName(ULong hModule,Ref String lpFileName,ULong nSize) Library "kernel32.dll" Alias For "GetModuleFileNameA" Function ULong GetModuleHandle(Ref String lpModuleName) Library "kernel32.dll" Alias For "GetModuleHandleA" Function ULong GetNamedPipeHandleState(ULong hNamedPipe,Ref ULong lpState,Ref ULong lpCurInstances,Ref ULong lpMaxCollectionCount,Ref ULong lpCollectDataTimeout,Ref String lpUserName,ULong nMaxUserNameSize) Library "kernel32.dll" Alias For "GetNamedPipeHandleStateA" Function ULong GetNamedPipeInfo(ULong hNamedPipe,Ref ULong lpFlags,Ref ULong lpOutBufferSize,Ref ULong lpInBufferSize,Ref ULong lpMaxInstances) Library "kernel32.dll" Function ULong GetNearestColor(ULong hdc,ULong crColor) Library "gdi32.dll" Function ULong GetNearestPaletteIndex(ULong hPalette,ULong crColor) Library "gdi32.dll" Function ULong GetNextDlgGroupItem(ULong hDlg,ULong hCtl,ULong bPrevious) Library "user32.dll" Function ULong GetNextDlgTabItem(ULong hDlg,ULong hCtl,ULong bPrevious) Library "user32.dll" Function ULong GetNextWindow(ULong hwnd,ULong wFlag) Library "user32.dll" Function ULong GetNumberFormat(ULong Locale,ULong dwFlags,Ref String lpValue,Ref NUMBERFMT lpFormat,Ref String lpNumberStr,ULong cchNumber) Library "kernel32.dll" Alias For "GetNumberFormatA" Function ULong GetNumberOfConsoleInputEvents(ULong hConsoleInput,Ref ULong lpNumberOfEvents) Library "kernel32.dll" Function ULong GetNumberOfConsoleMouseButtons(Ref ULong lpNumberOfMouseButtons) Library "kernel32.dll" Function ULong GetNumberOfEventLogRecords(ULong hEventLog,Ref ULong NumberOfRecords) Library "advapi32.dll" Function ULong GetObject(ULong hObject,ULong nCount,Ref Any lpObject) Library "gdi32.dll" Alias For "GetObjectA" Function ULong GetObjectType(ULong hgdiobj) Library "gdi32.dll" Function ULong GetOEMCP() Library "kernel32.dll" Function ULong GetOldestEventLogRecord(ULong hEventLog,Ref ULong OldestRecord) Library "advapi32.dll" Function ULong GetOpenClipboardWindow() Library "user32.dll" Function ULong GetOpenFileName(Ref OPENFILENAME pOpenfilename) Library "comdlg32.dll" Alias For "GetOpenFileNameA" Function ULong GetOutlineTextMetrics(ULong hdc,ULong cbData,Ref OUTLINETEXTMETRIC lpotm) Library "gdi32.dll" Alias For "GetOutlineTextMetricsA" Function ULong GetOverlappedResult(ULong hFile,Ref OVERLAPPED lpOverlapped,Ref ULong lpNumberOfBytesTransferred,ULong bWait) Library "kernel32.dll" Function ULong GetPaletteEntries(ULong hPalette,ULong wStartIndex,ULong wNumEntries,Ref PALETTEENTRY lpPaletteEntries) Library "gdi32.dll" Function ULong GetParent(ULong hwnd) Library "user32.dll" Function ULong GetPath(ULong hdc,Ref POINTAPI lpPoint,Ref Byte lpTypes,ULong nSize) Library "gdi32.dll" Function ULong GetPixel(ULong hdc,ULong X,ULong Y) Library "gdi32.dll" Function ULong GetPixelFormat(ULong hdc) Library "gdi32.dll" Function ULong GetPolyFillMode(ULong hdc) Library "gdi32.dll" Function Boolean GetPrinter(ULong hPrinter,ULong Level,Ref Byte pPrinter,ULong cbBuf,Ref ULong pcbNeeded) Library "winspool" Alias For "GetPrinterA" Function ULong GetPrinterData(ULong hPrinter,Ref String pValueName,Ref ULong pType,Ref Byte pData,ULong nSize,Ref ULong pcbNeeded) Library "winspool.drv" Alias For "GetPrinterDataA" Function ULong GetPrinterDriver(ULong hPrinter,Ref String pEnvironment,ULong Level,Ref Byte pDriverInfo,ULong cdBuf,Ref ULong pcbNeeded) Library "winspool.drv" Alias For "GetPrinterDriverA" Function ULong GetPrinterDriverDirectory(Ref String pName,Ref String pEnvironment,ULong Level,Ref Byte pDriverDirectory,ULong cdBuf,Ref ULong pcbNeeded) Library "winspool.drv" Alias For "GetPrinterDriverDirectoryA" Function ULong GetPrintProcessorDirectory(Ref String pName,Ref String pEnvironment,ULong Level,Ref String pPrintProcessorInfo,ULong cdBuf,Ref ULong pcbNeeded) Library "winspool.drv" Alias For "GetPrintProcessorDirectoryA" Function ULong GetPriorityClass(ULong hProcess) Library "kernel32.dll" Function ULong GetPriorityClipboardFormat(Ref ULong lpPriorityList,ULong nCount) Library "user32.dll" Function ULong GetPrivateObjectSecurity(Ref SECURITY_DESCRIPTOR ObjectDescriptor,ULong SecurityInformation,Ref SECURITY_DESCRIPTOR ResultantDescriptor,ULong DescriptorLength,Ref ULong ReturnLength) Library "advapi32.dll" Function ULong GetPrivateProfileInt(Ref String lpApplicationName,Ref String lpKeyName,ULong nDefault,Ref String lpFileName) Library "kernel32.dll" Alias For "GetPrivateProfileIntA" Function ULong GetPrivateProfileSection(Ref String lpAppName,Ref String lpReturnedString,ULong nSize,Ref String lpFileName) Library "kernel32.dll" Alias For "GetPrivateProfileSectionA" Function ULong GetPrivateProfileString(Ref String lpApplicationName,Any lpKeyName,Ref String lpDefault,Ref String lpReturnedString,ULong nSize,Ref String lpFileName) Library "kernel32.dll" Alias For "GetPrivateProfileStringA" Function ULong GetProcAddress(ULong hModule,Ref String lpProcName) Library "kernel32.dll" Function ULong GetProcessAffinityMask(ULong hProcess,Ref ULong lpProcessAffinityMask,Ref ULong SystemAffinityMask) Library "kernel32.dll" Function ULong GetProcessHeap() Library "kernel32.dll" Function ULong GetProcessHeaps(ULong NumberOfHeaps,Ref ULong ProcessHeap |