coredll.inc 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2005 Free Pascal development team.
  4. See the file COPYING.FPC, included in this distribution,
  5. for details about the copyright.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. **********************************************************************}
  10. { Declarations for coredll WinCE API
  11. }
  12. {exported functions list = to do,
  13. * please remove functions done *
  14. Exports
  15. ordinal name
  16. 5C4 ??2@YAPAXI@Z
  17. 5C7 ??2@YAPAXIABUnothrow_t@std@@@Z
  18. 5C3 ??3@YAXPAX@Z
  19. 5C9 ??3@YAXPAXABUnothrow_t@std@@@Z
  20. 5C5 ??_U@YAPAXI@Z
  21. 5C8 ??_U@YAPAXIABUnothrow_t@std@@@Z
  22. 5C6 ??_V@YAXPAX@Z
  23. 5CA ??_V@YAXPAXABUnothrow_t@std@@@Z
  24. 47A ?DefaultImcGet@@YAKXZ
  25. 47B ?DefaultImeWndGet@@YAPAUHWND__@@XZ
  26. 47F ?ImmGetUIClassName@@YAPAGXZ
  27. 47C ?ImmProcessKey@@YAKPAUHWND__@@IJKI@Z
  28. 468 ?ImmSetActiveContext@@YAHPAUHWND__@@KH@Z
  29. 47D ?ImmTranslateMessage@@YAHPAUHWND__@@IIJHIIPAH@Z
  30. 671 ?_Nomemory@std@@YAXXZ
  31. 66F ?_Xlen@std@@YAXXZ
  32. 670 ?_Xran@std@@YAXXZ
  33. 66B ?__set_inconsistency@@YAP6AXXZP6AXXZ@Z
  34. 66E ?_inconsistency@@YAXXZ
  35. 675 ?_query_new_handler@@YAP6AHI@ZXZ
  36. 673 ?_query_new_mode@@YAHXZ
  37. 674 ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z
  38. 672 ?_set_new_mode@@YAHH@Z
  39. 690 ?nothrow@std@@3Unothrow_t@1@B
  40. 676 ?set_new_handler@@YAP6AXXZP6AXXZ@Z
  41. 669 ?set_terminate@std@@YAP6AXXZP6AXXZ@Z
  42. 66A ?set_unexpected@std@@YAP6AXXZP6AXXZ@Z
  43. 66C ?terminate@std@@YAXXZ
  44. 66D ?unexpected@std@@YAXXZ
  45. 3CE AFS_CloseAllFileHandles
  46. 3C4 AFS_CreateDirectoryW
  47. 3C8 AFS_CreateFileW
  48. 3C9 AFS_DeleteFileW
  49. 3D1 AFS_FindFirstChangeNotificationW
  50. 3CB AFS_FindFirstFileW
  51. 3CF AFS_GetDiskFreeSpace
  52. 3C6 AFS_GetFileAttributesW
  53. 3CA AFS_MoveFileW
  54. 3D0 AFS_NotifyMountedFS
  55. 3CD AFS_PrestoChangoFileName
  56. 3CC AFS_RegisterFileSystemFunction
  57. 3C5 AFS_RemoveDirectoryW
  58. 3C7 AFS_SetFileAttributesW
  59. 3C3 AFS_Unmount
  60. 693 A_SHAFinal
  61. 691 A_SHAInit
  62. 692 A_SHAUpdate
  63. 1B8 AccessibilitySoundSentryEvent
  64. 35B AddEventAccess
  65. 37A AddTrackedItem
  66. 496 AllKeys
  67. 35F AllocPhysMem
  68. E5 AttachDebugger
  69. 265 AudioUpdateFromRegistry
  70. 40A BatteryDrvrGetLevels
  71. 40B BatteryDrvrSupportsChangeNotification
  72. 40C BatteryGetLifeTimeInfo
  73. 40D BatteryNotifyOfTimeChange
  74. 389 BinaryCompress
  75. 38A BinaryDecompress
  76. 379 CacheRangeFlush
  77. 378 CacheSync
  78. 1EA CeChangeDatabaseLCID
  79. 1EF CeClearReplChangeBitsEx
  80. 2DB CeClearUserNotification
  81. 1D1 CeCreateDatabase
  82. 1D2 CeCreateDatabaseEx
  83. 1DC CeCreateDatabaseEx2
  84. 1D7 CeDeleteDatabase
  85. 1DF CeDeleteDatabaseEx
  86. 1E1 CeDeleteRecord
  87. 1E4 CeEnumDBVolumes
  88. 2E3 CeEventHasOccurred
  89. 1CF CeFindFirstDatabase
  90. 1DA CeFindFirstDatabaseEx
  91. 1D0 CeFindNextDatabase
  92. 1DB CeFindNextDatabaseEx
  93. 1E7 CeFlushDBVol
  94. 1E9 CeFreeNotification
  95. 2D3 CeGenRandom
  96. 39E CeGetCallerTrust
  97. 39D CeGetCurrentTrust
  98. 1E8 CeGetDBInformationByHandle
  99. 10A CeGetFileNotificationInfo
  100. 9D CeGetRandomSeed
  101. 1ED CeGetReplChangeBitsEx
  102. 1EB CeGetReplChangeMask
  103. 1F0 CeGetReplOtherBitsEx
  104. 313 CeGetThreadPriority
  105. 315 CeGetThreadQuantum
  106. 2E2 CeGetUserNotification
  107. 2E1 CeGetUserNotificationHandles
  108. 2DF CeGetUserNotificationPreferences
  109. 2DE CeHandleAppNotifications
  110. 96 CeLogData
  111. 98 CeLogGetZones
  112. 99 CeLogReSync
  113. 97 CeLogSetZones
  114. 359 CeMapArgumentArray
  115. 30 CeModuleJit
  116. 1E3 CeMountDBVol
  117. 104 CeOidGetInfo
  118. 105 CeOidGetInfoEx
  119. 106 CeOidGetInfoEx2
  120. 1D5 CeOpenDatabase
  121. 1D6 CeOpenDatabaseEx
  122. 1DE CeOpenDatabaseEx2
  123. 1D8 CeReadRecordProps
  124. 1E2 CeReadRecordPropsEx
  125. 177 CeRegisterFileSystemNotification
  126. 1F2 CeRegisterReplNotification
  127. 4E4 CeRemoveFontResource
  128. 15D CeResyncFilesys
  129. 2DD CeRunAppAtEvent
  130. 2DC CeRunAppAtTime
  131. 1D9 CeSeekDatabase
  132. 1E0 CeSeekDatabaseEx
  133. 1D3 CeSetDatabaseInfo
  134. 1D4 CeSetDatabaseInfoEx
  135. 1DD CeSetDatabaseInfoEx2
  136. 35A CeSetExtendedPdata
  137. E7 CeSetPowerOnEvent
  138. 309 CeSetProcessVersion
  139. 1EE CeSetReplChangeBitsEx
  140. 1EC CeSetReplChangeMask
  141. 1F1 CeSetReplOtherBitsEx
  142. 312 CeSetThreadPriority
  143. 314 CeSetThreadQuantum
  144. 2DA CeSetUserNotification
  145. 2E0 CeSetUserNotificationEx
  146. 1E6 CeUnmountDBVol
  147. 1E5 CeWriteRecordProps
  148. 2F CeZeroPointer
  149. 184 CloseAllDeviceHandles
  150. 180 CloseAllFileHandles
  151. 16D CloseAllServiceHandles
  152. 384 CloseProcOE
  153. 18 ComThreadBaseFunc
  154. 51 CompactAllHeaps
  155. 3B6 ConnectDebugger
  156. 3B9 CreateAPIHandle
  157. 35C CreateAPISet
  158. 528 CreateBitmapFromPointer
  159. 3A2 CreateCrit
  160. 185 CreateDeviceHandle
  161. 34E CreateStaticMapping
  162. C5 CryptAcquireContextW
  163. E1 CryptContextAddRef
  164. D0 CryptCreateHash
  165. CF CryptDecrypt
  166. C8 CryptDeriveKey
  167. D3 CryptDestroyHash
  168. C9 CryptDestroyKey
  169. E3 CryptDuplicateHash
  170. E2 CryptDuplicateKey
  171. CE CryptEncrypt
  172. DF CryptEnumProviderTypesW
  173. E0 CryptEnumProvidersW
  174. CC CryptExportKey
  175. C7 CryptGenKey
  176. D6 CryptGenRandom
  177. DE CryptGetDefaultProviderW
  178. D9 CryptGetHashParam
  179. CB CryptGetKeyParam
  180. DB CryptGetProvParam
  181. D7 CryptGetUserKey
  182. D2 CryptHashData
  183. D1 CryptHashSessionKey
  184. CD CryptImportKey
  185. 2D1 CryptProtectData
  186. C6 CryptReleaseContext
  187. DA CryptSetHashParam
  188. CA CryptSetKeyParam
  189. DC CryptSetProvParam
  190. DD CryptSetProviderExW
  191. D8 CryptSetProviderW
  192. D4 CryptSignHashW
  193. 2D2 CryptUnprotectData
  194. D5 CryptVerifySignatureW
  195. 149 DBCanonicalize
  196. C3 DDKReg_GetIsrInfo
  197. C4 DDKReg_GetPciInfo
  198. C2 DDKReg_GetWindowInfo
  199. 3BF DebugNotify
  200. 38B DecompressBinaryBlock
  201. FF DeleteAndRenameFile
  202. 37B DeleteTrackedItem
  203. 179 DeregisterAFS
  204. 17B DeregisterAFSName
  205. 3DA DisableCaretSystemWide
  206. 17E DumpFileSystemHeap
  207. 30C DumpKCallProfile
  208. 3DB EnableCaretSystemWide
  209. 553 EnableEUDC
  210. 50E EnumDisplayDevices
  211. 666 EnumDisplayMonitors
  212. 14D EnumUILanguagesW
  213. 374 ExtractResource
  214. 17F FileSystemPowerFunction
  215. 381 FilterTrackedItem
  216. 345 FlushViewOfFileMaybe
  217. 334 ForcePageout
  218. 3AC FreeIntChainHandler
  219. 360 FreePhysMem
  220. 2C GetAPIAddress
  221. 1C1 GetAssociatedMenu
  222. 48F GetAsyncShiftFlags
  223. 2E GetCRTFlags
  224. 2D GetCRTStorageEx
  225. 33F GetCallStackSnapshot
  226. 398 GetCallerProcess
  227. 3BE GetCallerProcessIndex
  228. 3E9 GetClipboardDataAlloc
  229. 29 GetCurrentFT
  230. 39F GetCurrentPermissions
  231. 186 GetDeviceByIndex
  232. 2FA GetEventData
  233. 394 GetFSHeapInfo
  234. 407 GetForegroundInfo
  235. 409 GetForegroundKeyboardLayoutHandle
  236. 408 GetForegroundKeyboardTarget
  237. 50 GetHeapSnapshot
  238. 37D GetKPhys
  239. 405 GetKeyboardTarget
  240. 4B7 GetMessageWNoWait
  241. 30B GetModuleInformation
  242. 665 GetMonitorInfo
  243. 397 GetOwnerProcess
  244. 110 GetPasswordStatus
  245. 1B6 GetPrivateCallbacks
  246. 393 GetProcAddrBits
  247. 391 GetProcFromPtr
  248. 3A8 GetProcName
  249. 3BD GetProcessIDFromIndex
  250. 3BC GetProcessIndexFromID
  251. 371 GetRealTime
  252. 377 GetRomFileBytes
  253. 376 GetRomFileInfo
  254. 102 GetStoreInformation
  255. 2D0 GetUserDirectory
  256. 1B7 GetWindowTextWDirect
  257. 37E GiveKPhys
  258. 531 GradientFill
  259. 43D ImageList_Copy
  260. 423 ImageList_CopyDitherImage
  261. 43E ImageList_Duplicate
  262. 44C ImmAssociateContext
  263. 476 ImmAssociateContextEx
  264. 44D ImmConfigureIMEW
  265. 44A ImmCreateContext
  266. 44E ImmCreateIMCC
  267. 44B ImmDestroyContext
  268. 44F ImmDestroyIMCC
  269. 443 ImmDisableIME
  270. 444 ImmEnableIME
  271. 450 ImmEnumRegisterWordW
  272. 451 ImmEscapeW
  273. 452 ImmGenerateMessage
  274. 454 ImmGetCandidateListCountW
  275. 453 ImmGetCandidateListW
  276. 455 ImmGetCandidateWindow
  277. 456 ImmGetCompositionFontW
  278. 447 ImmGetCompositionStringW
  279. 457 ImmGetCompositionWindow
  280. 440 ImmGetContext
  281. 458 ImmGetConversionListW
  282. 441 ImmGetConversionStatus
  283. 459 ImmGetDefaultIMEWnd
  284. 45A ImmGetDescriptionW
  285. 45B ImmGetGuideLineW
  286. 46E ImmGetHotKey
  287. 45C ImmGetIMCCLockCount
  288. 45D ImmGetIMCCSize
  289. 45E ImmGetIMCLockCount
  290. 477 ImmGetIMEFileNameW
  291. 479 ImmGetImeMenuItemsW
  292. 449 ImmGetKeyboardLayout
  293. 45F ImmGetOpenStatus
  294. 460 ImmGetProperty
  295. 461 ImmGetRegisterWordStyleW
  296. 471 ImmGetStatusWindowPos
  297. 478 ImmGetVirtualKey
  298. 448 ImmIsIME
  299. 462 ImmIsUIMessageW
  300. 463 ImmLockIMC
  301. 464 ImmLockIMCC
  302. 442 ImmNotifyIME
  303. 465 ImmReSizeIMCC
  304. 466 ImmRegisterWordW
  305. 445 ImmReleaseContext
  306. 480 ImmRequestMessageW
  307. 467 ImmSIPanelState
  308. 469 ImmSetCandidateWindow
  309. 46A ImmSetCompositionFontW
  310. 46B ImmSetCompositionStringW
  311. 46C ImmSetCompositionWindow
  312. 446 ImmSetConversionStatus
  313. 46D ImmSetHotKey
  314. 47E ImmSetImeWndIMC
  315. 46F ImmSetOpenStatus
  316. 470 ImmSetStatusWindowPos
  317. 472 ImmSimulateHotKey
  318. 473 ImmUnlockIMC
  319. 474 ImmUnlockIMCC
  320. 475 ImmUnregisterWordW
  321. D InitLocale
  322. 38C InputDebugCharW
  323. 2F8 Int_CreateEventW
  324. 47 Int_HeapAlloc
  325. 42 Int_HeapCreate
  326. 44 Int_HeapDestroy
  327. 4D Int_HeapFree
  328. 49 Int_HeapReAlloc
  329. 4B Int_HeapSize
  330. 15 InterlockedCompareExchange
  331. 3B1 InterruptDisable
  332. 3B0 InterruptDone
  333. 3AE InterruptInitialize
  334. 3AF InterruptMask
  335. 2A IsAPIReady
  336. 392 IsBadPtr
  337. E4 IsEncryptionPermitted
  338. E8 IsExiting
  339. 39B IsPrimaryThread
  340. F IsProcessDying
  341. 183 IsSystemFile
  342. 375 KernExtractIcons
  343. 34C KernelIoControl
  344. 34D KernelLibIoControl
  345. 489 KeybdGetDeviceInfo
  346. 48A KeybdInitStates
  347. 48B KeybdVKeyToUnicode
  348. 396 KillAllOtherThreads
  349. 38E LeaveCritSec
  350. 3AA LoadDriver
  351. 151 LoadFSD
  352. 152 LoadFSDEx
  353. 3AB LoadIntChainHandler
  354. 3AD LoadKernelLibrary
  355. 3E LocalAllocInProcess
  356. 32 LocalAllocTrace
  357. 3F LocalFreeInProcess
  358. 40 LocalSizeInProcess
  359. 364 LockPages
  360. 696 MD5Final
  361. 694 MD5Init
  362. 695 MD5Update
  363. 17 MainThreadBaseFunc
  364. 33C NKDbgPrintfW
  365. 3A7 NKTerminateThread
  366. 36F NKvDbgPrintfW
  367. 30F NotifyForceCleanboot
  368. 410 NotifyWinUserSystem
  369. 395 OtherThreadsRunning
  370. 3BB PPSHRestart
  371. C PSLNotify
  372. 340 PageOutModule
  373. 2D5 PegClearUserNotification
  374. 1C7 PegCreateDatabase
  375. 1CA PegDeleteDatabase
  376. 1CC PegDeleteRecord
  377. 1C5 PegFindFirstDatabase
  378. 1C6 PegFindNextDatabase
  379. 2D9 PegGetUserNotificationPreferences
  380. 2D8 PegHandleAppNotifications
  381. 103 PegOidGetInfo
  382. 1C9 PegOpenDatabase
  383. 1CD PegReadRecordProps
  384. 4E9 PegRemoveFontResource
  385. 2D7 PegRunAppAtEvent
  386. 2D6 PegRunAppAtTime
  387. 1CB PegSeekDatabase
  388. 1C8 PegSetDatabaseInfo
  389. 2D4 PegSetUserNotification
  390. 1CE PegWriteRecordProps
  391. 2F1 PerformCallBack4
  392. 3A3 PowerOffSystem
  393. 37C PrintTrackedItem
  394. 373 ProcessDetachAllDLLs
  395. 94 ProfileCaptureStatus
  396. 92 ProfileStart
  397. 95 ProfileStartEx
  398. 93 ProfileStop
  399. 370 ProfileSyscall
  400. 484 QASetWindowsJournalHook
  401. 485 QAUnhookWindowsJournalHook
  402. 2F2 QueryAPISetID
  403. 91 Random
  404. 181 ReadFileWithSeek
  405. 3C0 ReadRegistryFromOEM
  406. 1BE RectangleAnimation
  407. 383 RefreshKernelAlarm
  408. 2CA RegCopyFile
  409. 159 RegOpenProcessKey
  410. 2CB RegRestoreFile
  411. 178 RegisterAFSEx
  412. 17A RegisterAFSName
  413. 3B8 RegisterAPISet
  414. 33D RegisterDbgZones
  415. 4DB RegisterDesktop
  416. 1BD RegisterSIPanel
  417. 380 RegisterTrackedItem
  418. E ReinitLocale
  419. 36 RemoteHeapAlloc
  420. 38 RemoteHeapFree
  421. 37 RemoteHeapReAlloc
  422. 39 RemoteHeapSize
  423. 3A RemoteLocalAlloc
  424. 3D RemoteLocalFree
  425. 3B RemoteLocalReAlloc
  426. 3C RemoteLocalSize
  427. 15A ResourceCreateList
  428. 15C ResourceRelease
  429. 15B ResourceRequest
  430. 2E6 SHCreateExplorerInstance
  431. 2E8 SHCreateShortcut
  432. 2EA SHCreateShortcutEx
  433. 2E9 SHGetShortcutTarget
  434. 2EC SHLoadDIBitmap
  435. 2EB SHShowOutOfMemory
  436. 11B SetACP
  437. 1C0 SetAssociatedMenu
  438. 3A1 SetCleanRebootFlag
  439. 2CE SetCurrentUser
  440. 3A4 SetDbgZone
  441. 2FB SetEventData
  442. 37F SetExceptionHandler
  443. 385 SetGwesOOMEvent
  444. 3B4 SetGwesPowerHandler
  445. 3A9 SetHandleOwner
  446. 3B7 SetHardwareWatch
  447. E6 SetInterruptEvent
  448. 3B2 SetKMode
  449. 382 SetKernelAlarm
  450. 404 SetKeyboardTarget
  451. 39A SetLowestScheduledPriority
  452. 11C SetOEMCP
  453. 386 SetOOMEvent
  454. 551 SetObjectOwner
  455. 10F SetPasswordStatus
  456. 3B3 SetPowerOffHandler
  457. 39C SetProcPermissions
  458. 372 SetRealTime
  459. 135 SetSystemDefaultLCID
  460. 17D SetSystemMemoryDivision
  461. 3A0 SetTimeZoneBias
  462. 2CF SetUserData
  463. 3B5 SetWDevicePowerHandler
  464. 406 ShellModalEnd
  465. 1C4 ShowStartupWindow
  466. 176 SignalStarted
  467. 361 SleepTillTick
  468. 156 StopDeviceNotifications
  469. 648 StringCbCatA
  470. 64A StringCbCatExA
  471. 82 StringCbCatExW
  472. 64C StringCbCatNA
  473. 64E StringCbCatNExA
  474. 86 StringCbCatNExW
  475. 84 StringCbCatNW
  476. 80 StringCbCatW
  477. 642 StringCbCopyA
  478. 644 StringCbCopyExA
  479. 7C StringCbCopyExW
  480. 646 StringCbCopyNA
  481. 7E StringCbCopyNW
  482. 7A StringCbCopyW
  483. 658 StringCbLengthA
  484. 90 StringCbLengthW
  485. 652 StringCbPrintfA
  486. 654 StringCbPrintfExA
  487. 8C StringCbPrintfExW
  488. 8A StringCbPrintfW
  489. 650 StringCbVPrintfA
  490. 656 StringCbVPrintfExA
  491. 8E StringCbVPrintfExW
  492. 88 StringCbVPrintfW
  493. 647 StringCchCatA
  494. 649 StringCchCatExA
  495. 81 StringCchCatExW
  496. 64B StringCchCatNA
  497. 64D StringCchCatNExA
  498. 85 StringCchCatNExW
  499. 83 StringCchCatNW
  500. 7F StringCchCatW
  501. 641 StringCchCopyA
  502. 643 StringCchCopyExA
  503. 7B StringCchCopyExW
  504. 645 StringCchCopyNA
  505. 7D StringCchCopyNW
  506. 79 StringCchCopyW
  507. 657 StringCchLengthA
  508. 8F StringCchLengthW
  509. 651 StringCchPrintfA
  510. 653 StringCchPrintfExA
  511. 8B StringCchPrintfExW
  512. 89 StringCchPrintfW
  513. 64F StringCchVPrintfA
  514. 655 StringCchVPrintfExA
  515. 8D StringCchVPrintfExW
  516. 87 StringCchVPrintfW
  517. 387 StringCompress
  518. 388 StringDecompress
  519. 49D SystemIdleTimerReset
  520. 5 SystemMemoryLow
  521. 4 SystemStarted
  522. 30D THCreateSnapshot
  523. 30E THGrow
  524. 38D TakeCritSec
  525. 366 ThreadAttachAllDLLs
  526. 16 ThreadBaseFunc
  527. 367 ThreadDetachAllDLLs
  528. B ThreadExceptionExit
  529. 3A6 TurnOffProfiling
  530. 3A5 TurnOnProfiling
  531. 36C U_rclose
  532. 36B U_rlseek
  533. 368 U_ropen
  534. 369 U_rread
  535. 36A U_rwrite
  536. 365 UnlockPages
  537. 495 UnregisterFunc1
  538. 36D UpdateNLSInfo
  539. 36E UpdateNLSInfoEx
  540. 3BA VerifyAPIHandle
  541. 35D VirtualCopy
  542. 35E VirtualSetAttributes
  543. 3C2 WriteDebugLED
  544. 182 WriteFileWithSeek
  545. 3C1 WriteRegistryToOEM
  546. 67B _CountLeadingOnes
  547. 67C _CountLeadingOnes64
  548. 67D _CountLeadingSigns
  549. 67E _CountLeadingSigns64
  550. 67F _CountLeadingZeros
  551. 680 _CountLeadingZeros64
  552. 681 _CountOneBits
  553. 682 _CountOneBits64
  554. 5BB _HUGE
  555. 61C _InitStdioLib
  556. 686 _MulHigh
  557. 687 _MulUnsignedHigh
  558. 68F _XcptFilter
  559. 9A __C_specific_handler
  560. 667 __CxxFrameHandler
  561. 668 __CxxThrowException
  562. 1 __IMPORT_DESCRIPTOR_COREDLL
  563. 2 __NULL_IMPORT_DESCRIPTOR
  564. 600 __addd
  565. 5FE __adds
  566. 5FD __cmpd
  567. 5FC __cmps
  568. 5FB __divd
  569. 5FA __divs
  570. 5F9 __dtoi
  571. 5F8 __dtoi64
  572. 5F7 __dtos
  573. 5F6 __dtou
  574. 5F5 __dtou64
  575. 5F4 __eqd
  576. 5F3 __eqs
  577. 5F2 __ged
  578. 5F1 __ges
  579. 5F0 __gtd
  580. 5EF __gts
  581. 5EE __i64tod
  582. 5ED __i64tos
  583. 5C4 __imp_??2@YAPAXI@Z
  584. 5C7 __imp_??2@YAPAXIABUnothrow_t@std@@@Z
  585. 5C3 __imp_??3@YAXPAX@Z
  586. 5C9 __imp_??3@YAXPAXABUnothrow_t@std@@@Z
  587. 5C5 __imp_??_U@YAPAXI@Z
  588. 5C8 __imp_??_U@YAPAXIABUnothrow_t@std@@@Z
  589. 5C6 __imp_??_V@YAXPAX@Z
  590. 5CA __imp_??_V@YAXPAXABUnothrow_t@std@@@Z
  591. 47A __imp_?DefaultImcGet@@YAKXZ
  592. 47B __imp_?DefaultImeWndGet@@YAPAUHWND__@@XZ
  593. 47F __imp_?ImmGetUIClassName@@YAPAGXZ
  594. 47C __imp_?ImmProcessKey@@YAKPAUHWND__@@IJKI@Z
  595. 468 __imp_?ImmSetActiveContext@@YAHPAUHWND__@@KH@Z
  596. 47D __imp_?ImmTranslateMessage@@YAHPAUHWND__@@IIJHIIPAH@Z
  597. 671 __imp_?_Nomemory@std@@YAXXZ
  598. 66F __imp_?_Xlen@std@@YAXXZ
  599. 670 __imp_?_Xran@std@@YAXXZ
  600. 66B __imp_?__set_inconsistency@@YAP6AXXZP6AXXZ@Z
  601. 66E __imp_?_inconsistency@@YAXXZ
  602. 675 __imp_?_query_new_handler@@YAP6AHI@ZXZ
  603. 673 __imp_?_query_new_mode@@YAHXZ
  604. 674 __imp_?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z
  605. 672 __imp_?_set_new_mode@@YAHH@Z
  606. 690 __imp_?nothrow@std@@3Unothrow_t@1@B
  607. 676 __imp_?set_new_handler@@YAP6AXXZP6AXXZ@Z
  608. 669 __imp_?set_terminate@std@@YAP6AXXZP6AXXZ@Z
  609. 66A __imp_?set_unexpected@std@@YAP6AXXZP6AXXZ@Z
  610. 66C __imp_?terminate@std@@YAXXZ
  611. 66D __imp_?unexpected@std@@YAXXZ
  612. 3CE __imp_AFS_CloseAllFileHandles
  613. 3C4 __imp_AFS_CreateDirectoryW
  614. 3C8 __imp_AFS_CreateFileW
  615. 3C9 __imp_AFS_DeleteFileW
  616. 3D1 __imp_AFS_FindFirstChangeNotificationW
  617. 3CB __imp_AFS_FindFirstFileW
  618. 3CF __imp_AFS_GetDiskFreeSpace
  619. 3C6 __imp_AFS_GetFileAttributesW
  620. 3CA __imp_AFS_MoveFileW
  621. 3D0 __imp_AFS_NotifyMountedFS
  622. 3CD __imp_AFS_PrestoChangoFileName
  623. 3CC __imp_AFS_RegisterFileSystemFunction
  624. 3C5 __imp_AFS_RemoveDirectoryW
  625. 3C7 __imp_AFS_SetFileAttributesW
  626. 3C3 __imp_AFS_Unmount
  627. 693 __imp_A_SHAFinal
  628. 691 __imp_A_SHAInit
  629. 692 __imp_A_SHAUpdate
  630. 1B8 __imp_AccessibilitySoundSentryEvent
  631. 153 __imp_ActivateDevice
  632. 154 __imp_ActivateDeviceEx
  633. 16A __imp_ActivateService
  634. 35B __imp_AddEventAccess
  635. 37A __imp_AddTrackedItem
  636. 157 __imp_AdvertiseInterface
  637. 496 __imp_AllKeys
  638. 35F __imp_AllocPhysMem
  639. E5 __imp_AttachDebugger
  640. 265 __imp_AudioUpdateFromRegistry
  641. 40A __imp_BatteryDrvrGetLevels
  642. 40B __imp_BatteryDrvrSupportsChangeNotification
  643. 40C __imp_BatteryGetLifeTimeInfo
  644. 40D __imp_BatteryNotifyOfTimeChange
  645. 389 __imp_BinaryCompress
  646. 38A __imp_BinaryDecompress
  647. 379 __imp_CacheRangeFlush
  648. 378 __imp_CacheSync
  649. 1EA __imp_CeChangeDatabaseLCID
  650. 1EF __imp_CeClearReplChangeBitsEx
  651. 2DB __imp_CeClearUserNotification
  652. 1D1 __imp_CeCreateDatabase
  653. 1D2 __imp_CeCreateDatabaseEx
  654. 1DC __imp_CeCreateDatabaseEx2
  655. 1D7 __imp_CeDeleteDatabase
  656. 1DF __imp_CeDeleteDatabaseEx
  657. 1E1 __imp_CeDeleteRecord
  658. 1E4 __imp_CeEnumDBVolumes
  659. 2E3 __imp_CeEventHasOccurred
  660. 1CF __imp_CeFindFirstDatabase
  661. 1DA __imp_CeFindFirstDatabaseEx
  662. 1D0 __imp_CeFindNextDatabase
  663. 1DB __imp_CeFindNextDatabaseEx
  664. 1E7 __imp_CeFlushDBVol
  665. 1E9 __imp_CeFreeNotification
  666. 2D3 __imp_CeGenRandom
  667. 39E __imp_CeGetCallerTrust
  668. 39D __imp_CeGetCurrentTrust
  669. 1E8 __imp_CeGetDBInformationByHandle
  670. 10A __imp_CeGetFileNotificationInfo
  671. 9D __imp_CeGetRandomSeed
  672. 1ED __imp_CeGetReplChangeBitsEx
  673. 1EB __imp_CeGetReplChangeMask
  674. 1F0 __imp_CeGetReplOtherBitsEx
  675. 313 __imp_CeGetThreadPriority
  676. 315 __imp_CeGetThreadQuantum
  677. 2E2 __imp_CeGetUserNotification
  678. 2E1 __imp_CeGetUserNotificationHandles
  679. 2DF __imp_CeGetUserNotificationPreferences
  680. 2DE __imp_CeHandleAppNotifications
  681. 96 __imp_CeLogData
  682. 98 __imp_CeLogGetZones
  683. 99 __imp_CeLogReSync
  684. 97 __imp_CeLogSetZones
  685. 359 __imp_CeMapArgumentArray
  686. 30 __imp_CeModuleJit
  687. 1E3 __imp_CeMountDBVol
  688. 104 __imp_CeOidGetInfo
  689. 105 __imp_CeOidGetInfoEx
  690. 106 __imp_CeOidGetInfoEx2
  691. 1D5 __imp_CeOpenDatabase
  692. 1D6 __imp_CeOpenDatabaseEx
  693. 1DE __imp_CeOpenDatabaseEx2
  694. 1D8 __imp_CeReadRecordProps
  695. 1E2 __imp_CeReadRecordPropsEx
  696. 177 __imp_CeRegisterFileSystemNotification
  697. 1F2 __imp_CeRegisterReplNotification
  698. 4E4 __imp_CeRemoveFontResource
  699. 15D __imp_CeResyncFilesys
  700. 2DD __imp_CeRunAppAtEvent
  701. 2DC __imp_CeRunAppAtTime
  702. 1D9 __imp_CeSeekDatabase
  703. 1E0 __imp_CeSeekDatabaseEx
  704. 1D3 __imp_CeSetDatabaseInfo
  705. 1D4 __imp_CeSetDatabaseInfoEx
  706. 1DD __imp_CeSetDatabaseInfoEx2
  707. 35A __imp_CeSetExtendedPdata
  708. E7 __imp_CeSetPowerOnEvent
  709. 309 __imp_CeSetProcessVersion
  710. 1EE __imp_CeSetReplChangeBitsEx
  711. 1EC __imp_CeSetReplChangeMask
  712. 1F1 __imp_CeSetReplOtherBitsEx
  713. 312 __imp_CeSetThreadPriority
  714. 314 __imp_CeSetThreadQuantum
  715. 2DA __imp_CeSetUserNotification
  716. 2E0 __imp_CeSetUserNotificationEx
  717. 1E6 __imp_CeUnmountDBVol
  718. 1E5 __imp_CeWriteRecordProps
  719. 2F __imp_CeZeroPointer
  720. 10B __imp_CheckPassword
  721. 184 __imp_CloseAllDeviceHandles
  722. 180 __imp_CloseAllFileHandles
  723. 16D __imp_CloseAllServiceHandles
  724. 115 __imp_CloseMsgQueue
  725. 384 __imp_CloseProcOE
  726. 18 __imp_ComThreadBaseFunc
  727. 51 __imp_CompactAllHeaps
  728. 3B6 __imp_ConnectDebugger
  729. 3B9 __imp_CreateAPIHandle
  730. 35C __imp_CreateAPISet
  731. 528 __imp_CreateBitmapFromPointer
  732. 3A2 __imp_CreateCrit
  733. 185 __imp_CreateDeviceHandle
  734. 111 __imp_CreateMsgQueue
  735. 16E __imp_CreateServiceHandle
  736. 34E __imp_CreateStaticMapping
  737. 2F4 __imp_CreateThread
  738. C5 __imp_CryptAcquireContextW
  739. E1 __imp_CryptContextAddRef
  740. D0 __imp_CryptCreateHash
  741. CF __imp_CryptDecrypt
  742. C8 __imp_CryptDeriveKey
  743. D3 __imp_CryptDestroyHash
  744. C9 __imp_CryptDestroyKey
  745. E3 __imp_CryptDuplicateHash
  746. E2 __imp_CryptDuplicateKey
  747. CE __imp_CryptEncrypt
  748. DF __imp_CryptEnumProviderTypesW
  749. E0 __imp_CryptEnumProvidersW
  750. CC __imp_CryptExportKey
  751. C7 __imp_CryptGenKey
  752. D6 __imp_CryptGenRandom
  753. DE __imp_CryptGetDefaultProviderW
  754. D9 __imp_CryptGetHashParam
  755. CB __imp_CryptGetKeyParam
  756. DB __imp_CryptGetProvParam
  757. D7 __imp_CryptGetUserKey
  758. D2 __imp_CryptHashData
  759. D1 __imp_CryptHashSessionKey
  760. CD __imp_CryptImportKey
  761. 2D1 __imp_CryptProtectData
  762. C6 __imp_CryptReleaseContext
  763. DA __imp_CryptSetHashParam
  764. CA __imp_CryptSetKeyParam
  765. DC __imp_CryptSetProvParam
  766. DD __imp_CryptSetProviderExW
  767. D8 __imp_CryptSetProviderW
  768. D4 __imp_CryptSignHashW
  769. 2D2 __imp_CryptUnprotectData
  770. D5 __imp_CryptVerifySignatureW
  771. 149 __imp_DBCanonicalize
  772. C3 __imp_DDKReg_GetIsrInfo
  773. C4 __imp_DDKReg_GetPciInfo
  774. C2 __imp_DDKReg_GetWindowInfo
  775. 158 __imp_DeactivateDevice
  776. 3BF __imp_DebugNotify
  777. 38B __imp_DecompressBinaryBlock
  778. FF __imp_DeleteAndRenameFile
  779. 37B __imp_DeleteTrackedItem
  780. 179 __imp_DeregisterAFS
  781. 17B __imp_DeregisterAFSName
  782. 150 __imp_DeregisterDevice
  783. 16C __imp_DeregisterService
  784. 164 __imp_DevicePowerNotify
  785. 3DA __imp_DisableCaretSystemWide
  786. 17E __imp_DumpFileSystemHeap
  787. 30C __imp_DumpKCallProfile
  788. 3DB __imp_EnableCaretSystemWide
  789. 553 __imp_EnableEUDC
  790. 486 __imp_EnableHardwareKeyboard
  791. BF __imp_EnumDevices
  792. 50E __imp_EnumDisplayDevices
  793. 666 __imp_EnumDisplayMonitors
  794. BE __imp_EnumPnpIds
  795. 173 __imp_EnumServices
  796. 14D __imp_EnumUILanguagesW
  797. 374 __imp_ExtractResource
  798. 17F __imp_FileSystemPowerFunction
  799. 511 __imp_FillRgn
  800. 381 __imp_FilterTrackedItem
  801. 345 __imp_FlushViewOfFileMaybe
  802. 334 __imp_ForcePageout
  803. 3AC __imp_FreeIntChainHandler
  804. 360 __imp_FreePhysMem
  805. 2C __imp_GetAPIAddress
  806. 1C1 __imp_GetAssociatedMenu
  807. 48F __imp_GetAsyncShiftFlags
  808. 2E __imp_GetCRTFlags
  809. 2D __imp_GetCRTStorageEx
  810. 33F __imp_GetCallStackSnapshot
  811. 398 __imp_GetCallerProcess
  812. 3BE __imp_GetCallerProcessIndex
  813. 3E9 __imp_GetClipboardDataAlloc
  814. B1 __imp_GetCommMask
  815. 29 __imp_GetCurrentFT
  816. 39F __imp_GetCurrentPermissions
  817. 186 __imp_GetDeviceByIndex
  818. C0 __imp_GetDeviceKeys
  819. 168 __imp_GetDevicePower
  820. 2FA __imp_GetEventData
  821. 394 __imp_GetFSHeapInfo
  822. 407 __imp_GetForegroundInfo
  823. 409 __imp_GetForegroundKeyboardLayoutHandle
  824. 408 __imp_GetForegroundKeyboardTarget
  825. 50 __imp_GetHeapSnapshot
  826. 399 __imp_GetIdleTime
  827. 37D __imp_GetKPhys
  828. 488 __imp_GetKeyboardStatus
  829. 405 __imp_GetKeyboardTarget
  830. 4C3 __imp_GetMessageQueueReadyTimeStamp
  831. 4BF __imp_GetMessageSource
  832. 4B7 __imp_GetMessageWNoWait
  833. 30B __imp_GetModuleInformation
  834. 665 __imp_GetMonitorInfo
  835. 481 __imp_GetMouseMovePoints
  836. 114 __imp_GetMsgQueueInfo
  837. 397 __imp_GetOwnerProcess
  838. 10D __imp_GetPasswordActive
  839. 110 __imp_GetPasswordStatus
  840. 1B6 __imp_GetPrivateCallbacks
  841. 393 __imp_GetProcAddrBits
  842. 391 __imp_GetProcFromPtr
  843. 3A8 __imp_GetProcName
  844. 3BD __imp_GetProcessIDFromIndex
  845. 3BC __imp_GetProcessIndexFromID
  846. 32F __imp_GetProcessVersion
  847. 371 __imp_GetRealTime
  848. 377 __imp_GetRomFileBytes
  849. 376 __imp_GetRomFileInfo
  850. 16F __imp_GetServiceByIndex
  851. 174 __imp_GetServiceHandle
  852. 102 __imp_GetStoreInformation
  853. 14A __imp_GetSystemDefaultUILanguage
  854. 17C __imp_GetSystemMemoryDivision
  855. 15E __imp_GetSystemPowerState
  856. 40E __imp_GetSystemPowerStatusEx
  857. 40F __imp_GetSystemPowerStatusEx2
  858. 14B __imp_GetUserDefaultUILanguage
  859. 2D0 __imp_GetUserDirectory
  860. 1B7 __imp_GetWindowTextWDirect
  861. 37E __imp_GiveKPhys
  862. 531 __imp_GradientFill
  863. 43D __imp_ImageList_Copy
  864. 423 __imp_ImageList_CopyDitherImage
  865. 43E __imp_ImageList_Duplicate
  866. 43C __imp_ImageList_SetOverlayImage
  867. 44C __imp_ImmAssociateContext
  868. 476 __imp_ImmAssociateContextEx
  869. 44D __imp_ImmConfigureIMEW
  870. 44A __imp_ImmCreateContext
  871. 44E __imp_ImmCreateIMCC
  872. 44B __imp_ImmDestroyContext
  873. 44F __imp_ImmDestroyIMCC
  874. 443 __imp_ImmDisableIME
  875. 444 __imp_ImmEnableIME
  876. 450 __imp_ImmEnumRegisterWordW
  877. 451 __imp_ImmEscapeW
  878. 452 __imp_ImmGenerateMessage
  879. 454 __imp_ImmGetCandidateListCountW
  880. 453 __imp_ImmGetCandidateListW
  881. 455 __imp_ImmGetCandidateWindow
  882. 456 __imp_ImmGetCompositionFontW
  883. 447 __imp_ImmGetCompositionStringW
  884. 457 __imp_ImmGetCompositionWindow
  885. 440 __imp_ImmGetContext
  886. 458 __imp_ImmGetConversionListW
  887. 441 __imp_ImmGetConversionStatus
  888. 459 __imp_ImmGetDefaultIMEWnd
  889. 45A __imp_ImmGetDescriptionW
  890. 45B __imp_ImmGetGuideLineW
  891. 46E __imp_ImmGetHotKey
  892. 45C __imp_ImmGetIMCCLockCount
  893. 45D __imp_ImmGetIMCCSize
  894. 45E __imp_ImmGetIMCLockCount
  895. 477 __imp_ImmGetIMEFileNameW
  896. 479 __imp_ImmGetImeMenuItemsW
  897. 449 __imp_ImmGetKeyboardLayout
  898. 45F __imp_ImmGetOpenStatus
  899. 460 __imp_ImmGetProperty
  900. 461 __imp_ImmGetRegisterWordStyleW
  901. 471 __imp_ImmGetStatusWindowPos
  902. 478 __imp_ImmGetVirtualKey
  903. 448 __imp_ImmIsIME
  904. 462 __imp_ImmIsUIMessageW
  905. 463 __imp_ImmLockIMC
  906. 464 __imp_ImmLockIMCC
  907. 442 __imp_ImmNotifyIME
  908. 465 __imp_ImmReSizeIMCC
  909. 466 __imp_ImmRegisterWordW
  910. 445 __imp_ImmReleaseContext
  911. 480 __imp_ImmRequestMessageW
  912. 467 __imp_ImmSIPanelState
  913. 469 __imp_ImmSetCandidateWindow
  914. 46A __imp_ImmSetCompositionFontW
  915. 46B __imp_ImmSetCompositionStringW
  916. 46C __imp_ImmSetCompositionWindow
  917. 446 __imp_ImmSetConversionStatus
  918. 46D __imp_ImmSetHotKey
  919. 47E __imp_ImmSetImeWndIMC
  920. 46F __imp_ImmSetOpenStatus
  921. 470 __imp_ImmSetStatusWindowPos
  922. 472 __imp_ImmSimulateHotKey
  923. 473 __imp_ImmUnlockIMC
  924. 474 __imp_ImmUnlockIMCC
  925. 475 __imp_ImmUnregisterWordW
  926. D __imp_InitLocale
  927. 38C __imp_InputDebugCharW
  928. 349 __imp_Int_CloseHandle
  929. 2F8 __imp_Int_CreateEventW
  930. 47 __imp_Int_HeapAlloc
  931. 42 __imp_Int_HeapCreate
  932. 44 __imp_Int_HeapDestroy
  933. 4D __imp_Int_HeapFree
  934. 49 __imp_Int_HeapReAlloc
  935. 4B __imp_Int_HeapSize
  936. 15 __imp_InterlockedCompareExchange
  937. 3B1 __imp_InterruptDisable
  938. 3B0 __imp_InterruptDone
  939. 3AE __imp_InterruptInitialize
  940. 3AF __imp_InterruptMask
  941. 2A __imp_IsAPIReady
  942. 392 __imp_IsBadPtr
  943. E4 __imp_IsEncryptionPermitted
  944. E8 __imp_IsExiting
  945. 39B __imp_IsPrimaryThread
  946. F __imp_IsProcessDying
  947. 339 __imp_IsProcessorFeaturePresent
  948. 183 __imp_IsSystemFile
  949. 375 __imp_KernExtractIcons
  950. 34C __imp_KernelIoControl
  951. 34D __imp_KernelLibIoControl
  952. 489 __imp_KeybdGetDeviceInfo
  953. 48A __imp_KeybdInitStates
  954. 48B __imp_KeybdVKeyToUnicode
  955. 396 __imp_KillAllOtherThreads
  956. 38E __imp_LeaveCritSec
  957. 525 __imp_LineTo
  958. 41E __imp_LoadAnimatedCursor
  959. 3AA __imp_LoadDriver
  960. 151 __imp_LoadFSD
  961. 152 __imp_LoadFSDEx
  962. 3AB __imp_LoadIntChainHandler
  963. 3AD __imp_LoadKernelLibrary
  964. 3E __imp_LocalAllocInProcess
  965. 32 __imp_LocalAllocTrace
  966. 3F __imp_LocalFreeInProcess
  967. 40 __imp_LocalSizeInProcess
  968. 364 __imp_LockPages
  969. 696 __imp_MD5Final
  970. 694 __imp_MD5Init
  971. 695 __imp_MD5Update
  972. 17 __imp_MainThreadBaseFunc
  973. 662 __imp_MonitorFromPoint
  974. 663 __imp_MonitorFromRect
  975. 664 __imp_MonitorFromWindow
  976. 33C __imp_NKDbgPrintfW
  977. 3A7 __imp_NKTerminateThread
  978. 36F __imp_NKvDbgPrintfW
  979. 49F __imp_NLedGetDeviceInfo
  980. 4A0 __imp_NLedSetDevice
  981. 30F __imp_NotifyForceCleanboot
  982. 410 __imp_NotifyWinUserSystem
  983. C1 __imp_OpenDeviceKey
  984. 116 __imp_OpenMsgQueue
  985. 395 __imp_OtherThreadsRunning
  986. 3BB __imp_PPSHRestart
  987. C __imp_PSLNotify
  988. 340 __imp_PageOutModule
  989. 2D5 __imp_PegClearUserNotification
  990. 1C7 __imp_PegCreateDatabase
  991. 1CA __imp_PegDeleteDatabase
  992. 1CC __imp_PegDeleteRecord
  993. 1C5 __imp_PegFindFirstDatabase
  994. 1C6 __imp_PegFindNextDatabase
  995. 2D9 __imp_PegGetUserNotificationPreferences
  996. 2D8 __imp_PegHandleAppNotifications
  997. 103 __imp_PegOidGetInfo
  998. 1C9 __imp_PegOpenDatabase
  999. 1CD __imp_PegReadRecordProps
  1000. 4E9 __imp_PegRemoveFontResource
  1001. 2D7 __imp_PegRunAppAtEvent
  1002. 2D6 __imp_PegRunAppAtTime
  1003. 1CB __imp_PegSeekDatabase
  1004. 1C8 __imp_PegSetDatabaseInfo
  1005. 2D4 __imp_PegSetUserNotification
  1006. 1CE __imp_PegWriteRecordProps
  1007. 2F1 __imp_PerformCallBack4
  1008. 267 __imp_PlaySoundW
  1009. 48D __imp_PostKeybdMessage
  1010. 3A3 __imp_PowerOffSystem
  1011. 169 __imp_PowerPolicyNotify
  1012. 37C __imp_PrintTrackedItem
  1013. 373 __imp_ProcessDetachAllDLLs
  1014. 94 __imp_ProfileCaptureStatus
  1015. 92 __imp_ProfileStart
  1016. 95 __imp_ProfileStartEx
  1017. 93 __imp_ProfileStop
  1018. 370 __imp_ProfileSyscall
  1019. 484 __imp_QASetWindowsJournalHook
  1020. 485 __imp_QAUnhookWindowsJournalHook
  1021. 2F2 __imp_QueryAPISetID
  1022. 338 __imp_QueryInstructionSet
  1023. 91 __imp_Random
  1024. 1FC __imp_RasDeleteEntry
  1025. 207 __imp_RasDevConfigDialogEditW
  1026. 1F3 __imp_RasDial
  1027. 1FE __imp_RasEnumConnections
  1028. 203 __imp_RasEnumDevicesW
  1029. 1F6 __imp_RasEnumEntries
  1030. 1FF __imp_RasGetConnectStatus
  1031. 206 __imp_RasGetDispPhoneNumW
  1032. 20A __imp_RasGetEapConnectionData
  1033. 208 __imp_RasGetEapUserData
  1034. 200 __imp_RasGetEntryDevConfig
  1035. 1F7 __imp_RasGetEntryDialParams
  1036. 1F9 __imp_RasGetEntryProperties
  1037. 205 __imp_RasGetLinkStatistics
  1038. 204 __imp_RasGetProjectionInfoW
  1039. 1F5 __imp_RasHangUp
  1040. 1F4 __imp_RasHangup
  1041. 202 __imp_RasIOControl
  1042. 1FD __imp_RasRenameEntry
  1043. 20B __imp_RasSetEapConnectionData
  1044. 209 __imp_RasSetEapUserData
  1045. 201 __imp_RasSetEntryDevConfig
  1046. 1F8 __imp_RasSetEntryDialParams
  1047. 1FA __imp_RasSetEntryProperties
  1048. 1FB __imp_RasValidateEntryName
  1049. F4 __imp_ReadFile
  1050. 181 __imp_ReadFileWithSeek
  1051. 112 __imp_ReadMsgQueue
  1052. 3C0 __imp_ReadRegistryFromOEM
  1053. 52F __imp_RealizePalette
  1054. 1BE __imp_RectangleAnimation
  1055. 383 __imp_RefreshKernelAlarm
  1056. 2CA __imp_RegCopyFile
  1057. 159 __imp_RegOpenProcessKey
  1058. 2CB __imp_RegRestoreFile
  1059. 2C8 __imp_RegSetValueExW
  1060. 178 __imp_RegisterAFSEx
  1061. 17A __imp_RegisterAFSName
  1062. 3B8 __imp_RegisterAPISet
  1063. 33D __imp_RegisterDbgZones
  1064. 4DB __imp_RegisterDesktop
  1065. 14F __imp_RegisterDevice
  1066. 165 __imp_RegisterPowerRelationship
  1067. 1BD __imp_RegisterSIPanel
  1068. 16B __imp_RegisterService
  1069. 4D9 __imp_RegisterTaskBar
  1070. 4DA __imp_RegisterTaskBarEx
  1071. 380 __imp_RegisterTrackedItem
  1072. E __imp_ReinitLocale
  1073. 166 __imp_ReleasePowerRelationship
  1074. 161 __imp_ReleasePowerRequirement
  1075. 36 __imp_RemoteHeapAlloc
  1076. 38 __imp_RemoteHeapFree
  1077. 37 __imp_RemoteHeapReAlloc
  1078. 39 __imp_RemoteHeapSize
  1079. 3A __imp_RemoteLocalAlloc
  1080. 3D __imp_RemoteLocalFree
  1081. 3B __imp_RemoteLocalReAlloc
  1082. 3C __imp_RemoteLocalSize
  1083. 155 __imp_RequestDeviceNotifications
  1084. 162 __imp_RequestPowerNotifications
  1085. 15A __imp_ResourceCreateList
  1086. 15C __imp_ResourceRelease
  1087. 15B __imp_ResourceRequest
  1088. 2E6 __imp_SHCreateExplorerInstance
  1089. 2E8 __imp_SHCreateShortcut
  1090. 2EA __imp_SHCreateShortcutEx
  1091. 2E9 __imp_SHGetShortcutTarget
  1092. 2EC __imp_SHLoadDIBitmap
  1093. 2EB __imp_SHShowOutOfMemory
  1094. 482 __imp_SendInput
  1095. 171 __imp_ServiceAddPort
  1096. 175 __imp_ServiceClosePort
  1097. 170 __imp_ServiceIoControl
  1098. 172 __imp_ServiceUnbindPorts
  1099. 11B __imp_SetACP
  1100. 1C0 __imp_SetAssociatedMenu
  1101. 522 __imp_SetBrushOrgEx
  1102. 3A1 __imp_SetCleanRebootFlag
  1103. 2CE __imp_SetCurrentUser
  1104. 33E __imp_SetDaylightTime
  1105. 3A4 __imp_SetDbgZone
  1106. 167 __imp_SetDevicePower
  1107. 2FB __imp_SetEventData
  1108. 37F __imp_SetExceptionHandler
  1109. 385 __imp_SetGwesOOMEvent
  1110. 3B4 __imp_SetGwesPowerHandler
  1111. 3A9 __imp_SetHandleOwner
  1112. 3B7 __imp_SetHardwareWatch
  1113. E6 __imp_SetInterruptEvent
  1114. 3B2 __imp_SetKMode
  1115. 382 __imp_SetKernelAlarm
  1116. 404 __imp_SetKeyboardTarget
  1117. 39A __imp_SetLowestScheduledPriority
  1118. 11C __imp_SetOEMCP
  1119. 386 __imp_SetOOMEvent
  1120. 551 __imp_SetObjectOwner
  1121. 10C __imp_SetPassword
  1122. 10E __imp_SetPasswordActive
  1123. 10F __imp_SetPasswordStatus
  1124. 3B3 __imp_SetPowerOffHandler
  1125. 160 __imp_SetPowerRequirement
  1126. 39C __imp_SetProcPermissions
  1127. 372 __imp_SetRealTime
  1128. 135 __imp_SetSystemDefaultLCID
  1129. 17D __imp_SetSystemMemoryDivision
  1130. 15F __imp_SetSystemPowerState
  1131. 3A0 __imp_SetTimeZoneBias
  1132. 2CF __imp_SetUserData
  1133. 137 __imp_SetUserDefaultLCID
  1134. 14C __imp_SetUserDefaultUILanguage
  1135. 3B5 __imp_SetWDevicePowerHandler
  1136. 406 __imp_ShellModalEnd
  1137. 1C4 __imp_ShowStartupWindow
  1138. 176 __imp_SignalStarted
  1139. 65E __imp_SipEnumIM
  1140. 65F __imp_SipGetCurrentIM
  1141. 65C __imp_SipGetInfo
  1142. 65A __imp_SipRegisterNotification
  1143. 660 __imp_SipSetCurrentIM
  1144. 661 __imp_SipSetDefaultRect
  1145. 65D __imp_SipSetInfo
  1146. 65B __imp_SipShowIM
  1147. 659 __imp_SipStatus
  1148. 361 __imp_SleepTillTick
  1149. 156 __imp_StopDeviceNotifications
  1150. 163 __imp_StopPowerNotifications
  1151. 648 __imp_StringCbCatA
  1152. 64A __imp_StringCbCatExA
  1153. 82 __imp_StringCbCatExW
  1154. 64C __imp_StringCbCatNA
  1155. 64E __imp_StringCbCatNExA
  1156. 86 __imp_StringCbCatNExW
  1157. 84 __imp_StringCbCatNW
  1158. 80 __imp_StringCbCatW
  1159. 642 __imp_StringCbCopyA
  1160. 644 __imp_StringCbCopyExA
  1161. 7C __imp_StringCbCopyExW
  1162. 646 __imp_StringCbCopyNA
  1163. 7E __imp_StringCbCopyNW
  1164. 7A __imp_StringCbCopyW
  1165. 658 __imp_StringCbLengthA
  1166. 90 __imp_StringCbLengthW
  1167. 652 __imp_StringCbPrintfA
  1168. 654 __imp_StringCbPrintfExA
  1169. 8C __imp_StringCbPrintfExW
  1170. 8A __imp_StringCbPrintfW
  1171. 650 __imp_StringCbVPrintfA
  1172. 656 __imp_StringCbVPrintfExA
  1173. 8E __imp_StringCbVPrintfExW
  1174. 88 __imp_StringCbVPrintfW
  1175. 647 __imp_StringCchCatA
  1176. 649 __imp_StringCchCatExA
  1177. 81 __imp_StringCchCatExW
  1178. 64B __imp_StringCchCatNA
  1179. 64D __imp_StringCchCatNExA
  1180. 85 __imp_StringCchCatNExW
  1181. 83 __imp_StringCchCatNW
  1182. 7F __imp_StringCchCatW
  1183. 641 __imp_StringCchCopyA
  1184. 643 __imp_StringCchCopyExA
  1185. 7B __imp_StringCchCopyExW
  1186. 645 __imp_StringCchCopyNA
  1187. 7D __imp_StringCchCopyNW
  1188. 79 __imp_StringCchCopyW
  1189. 657 __imp_StringCchLengthA
  1190. 8F __imp_StringCchLengthW
  1191. 651 __imp_StringCchPrintfA
  1192. 653 __imp_StringCchPrintfExA
  1193. 8B __imp_StringCchPrintfExW
  1194. 89 __imp_StringCchPrintfW
  1195. 64F __imp_StringCchVPrintfA
  1196. 655 __imp_StringCchVPrintfExA
  1197. 8D __imp_StringCchVPrintfExW
  1198. 87 __imp_StringCchVPrintfW
  1199. 387 __imp_StringCompress
  1200. 388 __imp_StringDecompress
  1201. 49D __imp_SystemIdleTimerReset
  1202. 5 __imp_SystemMemoryLow
  1203. 4 __imp_SystemStarted
  1204. 30D __imp_THCreateSnapshot
  1205. 30E __imp_THGrow
  1206. 38D __imp_TakeCritSec
  1207. 366 __imp_ThreadAttachAllDLLs
  1208. 16 __imp_ThreadBaseFunc
  1209. 367 __imp_ThreadDetachAllDLLs
  1210. B __imp_ThreadExceptionExit
  1211. 4C7 __imp_TouchCalibrate
  1212. 4F5 __imp_TransparentImage
  1213. 3A6 __imp_TurnOffProfiling
  1214. 3A5 __imp_TurnOnProfiling
  1215. 36C __imp_U_rclose
  1216. 36B __imp_U_rlseek
  1217. 368 __imp_U_ropen
  1218. 369 __imp_U_rread
  1219. 36A __imp_U_rwrite
  1220. 365 __imp_UnlockPages
  1221. 495 __imp_UnregisterFunc1
  1222. 36D __imp_UpdateNLSInfo
  1223. 36E __imp_UpdateNLSInfoEx
  1224. 3BA __imp_VerifyAPIHandle
  1225. 35D __imp_VirtualCopy
  1226. 35E __imp_VirtualSetAttributes
  1227. 3C2 __imp_WriteDebugLED
  1228. 182 __imp_WriteFileWithSeek
  1229. 113 __imp_WriteMsgQueue
  1230. 3C1 __imp_WriteRegistryToOEM
  1231. 67B __imp__CountLeadingOnes
  1232. 67C __imp__CountLeadingOnes64
  1233. 67D __imp__CountLeadingSigns
  1234. 67E __imp__CountLeadingSigns64
  1235. 67F __imp__CountLeadingZeros
  1236. 680 __imp__CountLeadingZeros64
  1237. 681 __imp__CountOneBits
  1238. 682 __imp__CountOneBits64
  1239. 5BB __imp__HUGE
  1240. 61C __imp__InitStdioLib
  1241. 686 __imp__MulHigh
  1242. 687 __imp__MulUnsignedHigh
  1243. 68F __imp__XcptFilter
  1244. 9A __imp___C_specific_handler
  1245. 667 __imp___CxxFrameHandler
  1246. 668 __imp___CxxThrowException
  1247. 600 __imp___addd
  1248. 5FE __imp___adds
  1249. 5FD __imp___cmpd
  1250. 5FC __imp___cmps
  1251. 5FB __imp___divd
  1252. 5FA __imp___divs
  1253. 5F9 __imp___dtoi
  1254. 5F8 __imp___dtoi64
  1255. 5F7 __imp___dtos
  1256. 5F6 __imp___dtou
  1257. 5F5 __imp___dtou64
  1258. 5F4 __imp___eqd
  1259. 5F3 __imp___eqs
  1260. 5F2 __imp___ged
  1261. 5F1 __imp___ges
  1262. 5F0 __imp___gtd
  1263. 5EF __imp___gts
  1264. 5EE __imp___i64tod
  1265. 5ED __imp___i64tos
  1266. 5EC __imp___itod
  1267. 5EB __imp___itos
  1268. 5EA __imp___led
  1269. 5E9 __imp___les
  1270. 5E8 __imp___ltd
  1271. 5E7 __imp___lts
  1272. 5E6 __imp___muld
  1273. 5E5 __imp___muls
  1274. 5E4 __imp___ned
  1275. 5E3 __imp___negd
  1276. 5E2 __imp___negs
  1277. 5E1 __imp___nes
  1278. 5D1 __imp___rt_sdiv
  1279. 5D2 __imp___rt_sdiv10
  1280. 5CD __imp___rt_sdiv64by64
  1281. 5CE __imp___rt_srem64by64
  1282. 5D5 __imp___rt_srsh
  1283. 5D3 __imp___rt_udiv
  1284. 5D4 __imp___rt_udiv10
  1285. 5CF __imp___rt_udiv64by64
  1286. 5D0 __imp___rt_urem64by64
  1287. 5D6 __imp___rt_ursh
  1288. 5E0 __imp___stod
  1289. 5DF __imp___stoi
  1290. 5DE __imp___stoi64
  1291. 5DD __imp___stou
  1292. 5DC __imp___stou64
  1293. 5BE __imp___strgtold12
  1294. 5DB __imp___subd
  1295. 5DA __imp___subs
  1296. 5D9 __imp___u64tod
  1297. 5D8 __imp___u64tos
  1298. 5D7 __imp___utod
  1299. 5FF __imp___utos
  1300. 677 __imp__abs64
  1301. 561 __imp__atodbl
  1302. 562 __imp__atoflt
  1303. 6A __imp__atoi64
  1304. 678 __imp__byteswap_uint64
  1305. 679 __imp__byteswap_ulong
  1306. 67A __imp__byteswap_ushort
  1307. 563 __imp__cabs
  1308. 565 __imp__chgsign
  1309. 566 __imp__clearfp
  1310. 567 __imp__controlfp
  1311. 568 __imp__copysign
  1312. 56D __imp__ecvt
  1313. 621 __imp__fcloseall
  1314. 570 __imp__fcvt
  1315. 626 __imp__fileno
  1316. 571 __imp__finite
  1317. 5C2 __imp__fltused
  1318. 625 __imp__flushall
  1319. 574 __imp__fpclass
  1320. 575 __imp__fpieee_flt
  1321. 576 __imp__fpreset
  1322. 57A __imp__frnd
  1323. 57B __imp__fsqrt
  1324. 57C __imp__gcvt
  1325. 61D __imp__getstdfilex
  1326. 636 __imp__getws
  1327. 57D __imp__hypot
  1328. 120 __imp__isctype
  1329. 57E __imp__isnan
  1330. 683 __imp__isnanf
  1331. 684 __imp__isunordered
  1332. 685 __imp__isunorderedf
  1333. 57F __imp__itoa
  1334. 578 __imp__itow
  1335. 580 __imp__j0
  1336. 581 __imp__j1
  1337. 582 __imp__jn
  1338. 5BC __imp__ld12tod
  1339. 5BD __imp__ld12tof
  1340. 588 __imp__logb
  1341. 58A __imp__lrotl
  1342. 58B __imp__lrotr
  1343. 58C __imp__ltoa
  1344. 58D __imp__ltow
  1345. 602 __imp__mbmemset
  1346. 590 __imp__memccpy
  1347. 593 __imp__memicmp
  1348. 597 __imp__msize
  1349. 598 __imp__nextafter
  1350. 5C1 __imp__purecall
  1351. 637 __imp__putws
  1352. 59D __imp__rotl
  1353. 688 __imp__rotl64
  1354. 59E __imp__rotr
  1355. 689 __imp__rotr64
  1356. 59F __imp__scalb
  1357. 62E __imp__setmode
  1358. 60A __imp__snprintf
  1359. 605 __imp__snwprintf
  1360. 5A4 __imp__statusfp
  1361. 71 __imp__strdup
  1362. 77 __imp__stricmp
  1363. 75 __imp__strlwr
  1364. 78 __imp__strnicmp
  1365. 72 __imp__strnset
  1366. 73 __imp__strrev
  1367. 74 __imp__strset
  1368. 76 __imp__strupr
  1369. 5B0 __imp__swab
  1370. 5B3 __imp__ultoa
  1371. 5B4 __imp__ultow
  1372. 60B __imp__vsnprintf
  1373. 606 __imp__vsnwprintf
  1374. 64 __imp__wcsdup
  1375. 146 __imp__wcsicmp
  1376. 147 __imp__wcslwr
  1377. 145 __imp__wcsnicmp
  1378. 5D __imp__wcsnset
  1379. 60 __imp__wcsrev
  1380. 61 __imp__wcsset
  1381. 148 __imp__wcsupr
  1382. 61E __imp__wfdopen
  1383. 63D __imp__wfopen
  1384. 61F __imp__wfreopen
  1385. 68 __imp__wtol
  1386. 69 __imp__wtoll
  1387. 5B8 __imp__y0
  1388. 5B9 __imp__y1
  1389. 5BA __imp__yn
  1390. 559 __imp_abs
  1391. 28B __imp_acmDriverAdd
  1392. 28C __imp_acmDriverClose
  1393. 28D __imp_acmDriverDetails
  1394. 28E __imp_acmDriverEnum
  1395. 28F __imp_acmDriverID
  1396. 290 __imp_acmDriverMessage
  1397. 291 __imp_acmDriverOpen
  1398. 292 __imp_acmDriverPriority
  1399. 293 __imp_acmDriverRemove
  1400. 2A8 __imp_acmFilterChoose
  1401. 294 __imp_acmFilterDetails
  1402. 295 __imp_acmFilterEnum
  1403. 296 __imp_acmFilterTagDetails
  1404. 297 __imp_acmFilterTagEnum
  1405. 2A7 __imp_acmFormatChoose
  1406. 298 __imp_acmFormatDetails
  1407. 299 __imp_acmFormatEnum
  1408. 29A __imp_acmFormatSuggest
  1409. 29B __imp_acmFormatTagDetails
  1410. 29C __imp_acmFormatTagEnum
  1411. 2A5 __imp_acmGetVersion
  1412. 2A6 __imp_acmMetrics
  1413. 29D __imp_acmStreamClose
  1414. 29E __imp_acmStreamConvert
  1415. 29F __imp_acmStreamMessage
  1416. 2A0 __imp_acmStreamOpen
  1417. 2A1 __imp_acmStreamPrepareHeader
  1418. 2A2 __imp_acmStreamReset
  1419. 2A3 __imp_acmStreamSize
  1420. 2A4 __imp_acmStreamUnprepareHeader
  1421. 55A __imp_acos
  1422. 55B __imp_asin
  1423. 55C __imp_atan
  1424. 55D __imp_atan2
  1425. 560 __imp_atof
  1426. 55E __imp_atoi
  1427. 55F __imp_atol
  1428. 58F __imp_calloc
  1429. 564 __imp_ceil
  1430. 68A __imp_ceilf
  1431. 629 __imp_clearerr
  1432. 569 __imp_cos
  1433. 56A __imp_cosh
  1434. 56B __imp_difftime
  1435. 56C __imp_div
  1436. 56E __imp_exp
  1437. 56F __imp_fabs
  1438. 68B __imp_fabsf
  1439. 620 __imp_fclose
  1440. 627 __imp_feof
  1441. 628 __imp_ferror
  1442. 624 __imp_fflush
  1443. 613 __imp_fgetc
  1444. 62A __imp_fgetpos
  1445. 614 __imp_fgets
  1446. 638 __imp_fgetwc
  1447. 63B __imp_fgetws
  1448. 572 __imp_floor
  1449. 68C __imp_floorf
  1450. 573 __imp_fmod
  1451. 68D __imp_fmodf
  1452. 618 __imp_fopen
  1453. 61A __imp_fprintf
  1454. 615 __imp_fputc
  1455. 616 __imp_fputs
  1456. 639 __imp_fputwc
  1457. 63C __imp_fputws
  1458. 622 __imp_fread
  1459. 577 __imp_free
  1460. 579 __imp_frexp
  1461. 619 __imp_fscanf
  1462. 62C __imp_fseek
  1463. 62B __imp_fsetpos
  1464. 62D __imp_ftell
  1465. 63F __imp_fwprintf
  1466. 623 __imp_fwrite
  1467. 63E __imp_fwscanf
  1468. 60F __imp_getchar
  1469. 611 __imp_gets
  1470. 634 __imp_getwchar
  1471. 11F __imp_iswctype
  1472. 583 __imp_labs
  1473. 584 __imp_ldexp
  1474. 585 __imp_ldiv
  1475. 21F __imp_lineAccept
  1476. 21D __imp_lineAddProvider
  1477. 220 __imp_lineAddToConference
  1478. 221 __imp_lineAnswer
  1479. 222 __imp_lineBlindTransfer
  1480. 20C __imp_lineClose
  1481. 223 __imp_lineCompleteTransfer
  1482. 21C __imp_lineConfigDialogEdit
  1483. 20D __imp_lineDeallocateCall
  1484. 224 __imp_lineDevSpecific
  1485. 225 __imp_lineDial
  1486. 20E __imp_lineDrop
  1487. 226 __imp_lineForward
  1488. 227 __imp_lineGenerateDigits
  1489. 228 __imp_lineGenerateTone
  1490. 229 __imp_lineGetAddressCaps
  1491. 22A __imp_lineGetAddressID
  1492. 22B __imp_lineGetAddressStatus
  1493. 22C __imp_lineGetAppPriority
  1494. 22D __imp_lineGetCallInfo
  1495. 22E __imp_lineGetCallStatus
  1496. 22F __imp_lineGetConfRelatedCalls
  1497. 20F __imp_lineGetDevCaps
  1498. 210 __imp_lineGetDevConfig
  1499. 21A __imp_lineGetID
  1500. 230 __imp_lineGetIcon
  1501. 231 __imp_lineGetLineDevStatus
  1502. 232 __imp_lineGetMessage
  1503. 233 __imp_lineGetNewCalls
  1504. 234 __imp_lineGetNumRings
  1505. 235 __imp_lineGetProviderList
  1506. 236 __imp_lineGetStatusMessages
  1507. 211 __imp_lineGetTranslateCaps
  1508. 237 __imp_lineHandoff
  1509. 238 __imp_lineHold
  1510. 212 __imp_lineInitialize
  1511. 239 __imp_lineInitializeEx
  1512. 213 __imp_lineMakeCall
  1513. 23A __imp_lineMonitorDigits
  1514. 23B __imp_lineMonitorMedia
  1515. 214 __imp_lineNegotiateAPIVersion
  1516. 23C __imp_lineNegotiateExtVersion
  1517. 215 __imp_lineOpen
  1518. 23D __imp_linePickup
  1519. 23E __imp_linePrepareAddToConference
  1520. 23F __imp_lineRedirect
  1521. 240 __imp_lineReleaseUserUserInfo
  1522. 241 __imp_lineRemoveFromConference
  1523. 242 __imp_lineSendUserUserInfo
  1524. 243 __imp_lineSetAppPriority
  1525. 244 __imp_lineSetCallParams
  1526. 245 __imp_lineSetCallPrivilege
  1527. 21E __imp_lineSetCurrentLocation
  1528. 216 __imp_lineSetDevConfig
  1529. 246 __imp_lineSetMediaMode
  1530. 247 __imp_lineSetNumRings
  1531. 217 __imp_lineSetStatusMessages
  1532. 248 __imp_lineSetTerminal
  1533. 249 __imp_lineSetTollList
  1534. 24A __imp_lineSetupConference
  1535. 24B __imp_lineSetupTransfer
  1536. 218 __imp_lineShutdown
  1537. 24C __imp_lineSwapHold
  1538. 219 __imp_lineTranslateAddress
  1539. 21B __imp_lineTranslateDialog
  1540. 24D __imp_lineUnhold
  1541. 586 __imp_log
  1542. 587 __imp_log10
  1543. 589 __imp_longjmp
  1544. 58E __imp_malloc
  1545. 66 __imp_mbstowcs
  1546. 2B __imp_memchr
  1547. 591 __imp_memcmp
  1548. 592 __imp_memcpy
  1549. 594 __imp_memmove
  1550. 595 __imp_memset
  1551. 2B2 __imp_mixerClose
  1552. 2A9 __imp_mixerGetControlDetails
  1553. 2AA __imp_mixerGetDevCaps
  1554. 2AB __imp_mixerGetID
  1555. 2AC __imp_mixerGetLineControls
  1556. 2AD __imp_mixerGetLineInfo
  1557. 2AE __imp_mixerGetNumDevs
  1558. 2AF __imp_mixerMessage
  1559. 2B0 __imp_mixerOpen
  1560. 2B1 __imp_mixerSetControlDetails
  1561. 596 __imp_modf
  1562. 24E __imp_phoneClose
  1563. 24F __imp_phoneConfigDialog
  1564. 250 __imp_phoneDevSpecific
  1565. 251 __imp_phoneGetDevCaps
  1566. 252 __imp_phoneGetGain
  1567. 253 __imp_phoneGetHookSwitch
  1568. 255 __imp_phoneGetID
  1569. 254 __imp_phoneGetIcon
  1570. 256 __imp_phoneGetMessage
  1571. 257 __imp_phoneGetRing
  1572. 258 __imp_phoneGetStatus
  1573. 259 __imp_phoneGetStatusMessages
  1574. 25A __imp_phoneGetVolume
  1575. 25B __imp_phoneInitializeEx
  1576. 25C __imp_phoneNegotiateAPIVersion
  1577. 25D __imp_phoneNegotiateExtVersion
  1578. 25E __imp_phoneOpen
  1579. 25F __imp_phoneSetGain
  1580. 260 __imp_phoneSetHookSwitch
  1581. 261 __imp_phoneSetRing
  1582. 262 __imp_phoneSetStatusMessages
  1583. 263 __imp_phoneSetVolume
  1584. 264 __imp_phoneShutdown
  1585. 599 __imp_pow
  1586. 60D __imp_printf
  1587. 610 __imp_putchar
  1588. 612 __imp_puts
  1589. 635 __imp_putwchar
  1590. 59A __imp_qsort
  1591. 59B __imp_rand
  1592. 59C __imp_realloc
  1593. 60C __imp_scanf
  1594. 601 __imp_setjmp
  1595. 62F __imp_setvbuf
  1596. 5A0 __imp_sin
  1597. 5A1 __imp_sinh
  1598. 266 __imp_sndPlaySoundW
  1599. 608 __imp_sprintf
  1600. 5A2 __imp_sqrt
  1601. 68E __imp_sqrtf
  1602. 5A3 __imp_srand
  1603. 607 __imp_sscanf
  1604. 5A5 __imp_strcat
  1605. 5A6 __imp_strchr
  1606. 5A7 __imp_strcmp
  1607. 5A8 __imp_strcpy
  1608. 5A9 __imp_strcspn
  1609. 5AA __imp_strlen
  1610. 5AB __imp_strncat
  1611. 5AC __imp_strncmp
  1612. 5AD __imp_strncpy
  1613. 6E __imp_strpbrk
  1614. 6F __imp_strrchr
  1615. 70 __imp_strspn
  1616. 5AE __imp_strstr
  1617. 6B __imp_strtod
  1618. 5AF __imp_strtok
  1619. 6C __imp_strtol
  1620. 6D __imp_strtoul
  1621. 603 __imp_swprintf
  1622. 630 __imp_swscanf
  1623. 5B1 __imp_tan
  1624. 5B2 __imp_tanh
  1625. 5BF __imp_tolower
  1626. 5C0 __imp_toupper
  1627. 121 __imp_towlower
  1628. 122 __imp_towupper
  1629. 617 __imp_ungetc
  1630. 63A __imp_ungetwc
  1631. 61B __imp_vfprintf
  1632. 640 __imp_vfwprintf
  1633. 60E __imp_vprintf
  1634. 609 __imp_vsprintf
  1635. 604 __imp_vswprintf
  1636. 633 __imp_vwprintf
  1637. 283 __imp_waveInAddBuffer
  1638. 280 __imp_waveInClose
  1639. 27E __imp_waveInGetDevCaps
  1640. 27F __imp_waveInGetErrorText
  1641. 288 __imp_waveInGetID
  1642. 27D __imp_waveInGetNumDevs
  1643. 287 __imp_waveInGetPosition
  1644. 289 __imp_waveInMessage
  1645. 28A __imp_waveInOpen
  1646. 281 __imp_waveInPrepareHeader
  1647. 286 __imp_waveInReset
  1648. 284 __imp_waveInStart
  1649. 285 __imp_waveInStop
  1650. 282 __imp_waveInUnprepareHeader
  1651. 274 __imp_waveOutBreakLoop
  1652. 26D __imp_waveOutClose
  1653. 269 __imp_waveOutGetDevCaps
  1654. 26C __imp_waveOutGetErrorText
  1655. 27A __imp_waveOutGetID
  1656. 268 __imp_waveOutGetNumDevs
  1657. 276 __imp_waveOutGetPitch
  1658. 278 __imp_waveOutGetPlaybackRate
  1659. 275 __imp_waveOutGetPosition
  1660. 26A __imp_waveOutGetVolume
  1661. 27B __imp_waveOutMessage
  1662. 27C __imp_waveOutOpen
  1663. 271 __imp_waveOutPause
  1664. 26E __imp_waveOutPrepareHeader
  1665. 273 __imp_waveOutReset
  1666. 272 __imp_waveOutRestart
  1667. 277 __imp_waveOutSetPitch
  1668. 279 __imp_waveOutSetPlaybackRate
  1669. 26B __imp_waveOutSetVolume
  1670. 26F __imp_waveOutUnprepareHeader
  1671. 270 __imp_waveOutWrite
  1672. 54 __imp_wcscat
  1673. 55 __imp_wcschr
  1674. 56 __imp_wcscmp
  1675. 57 __imp_wcscpy
  1676. 58 __imp_wcscspn
  1677. 59 __imp_wcslen
  1678. 5A __imp_wcsncat
  1679. 5B __imp_wcsncmp
  1680. 5C __imp_wcsncpy
  1681. 5E __imp_wcspbrk
  1682. 5F __imp_wcsrchr
  1683. 62 __imp_wcsspn
  1684. 63 __imp_wcsstr
  1685. 5B5 __imp_wcstod
  1686. 67 __imp_wcstok
  1687. 5B6 __imp_wcstol
  1688. 65 __imp_wcstombs
  1689. 5B7 __imp_wcstoul
  1690. 632 __imp_wprintf
  1691. 631 __imp_wscanf
  1692. 5EC __itod
  1693. 5EB __itos
  1694. 5EA __led
  1695. 5E9 __les
  1696. 5E8 __ltd
  1697. 5E7 __lts
  1698. 5E6 __muld
  1699. 5E5 __muls
  1700. 5E4 __ned
  1701. 5E3 __negd
  1702. 5E2 __negs
  1703. 5E1 __nes
  1704. 5D1 __rt_sdiv
  1705. 5D2 __rt_sdiv10
  1706. 5CD __rt_sdiv64by64
  1707. 5CE __rt_srem64by64
  1708. 5D5 __rt_srsh
  1709. 5D3 __rt_udiv
  1710. 5D4 __rt_udiv10
  1711. 5CF __rt_udiv64by64
  1712. 5D0 __rt_urem64by64
  1713. 5D6 __rt_ursh
  1714. 5E0 __stod
  1715. 5DF __stoi
  1716. 5DE __stoi64
  1717. 5DD __stou
  1718. 5DC __stou64
  1719. 5BE __strgtold12
  1720. 5DB __subd
  1721. 5DA __subs
  1722. 5D9 __u64tod
  1723. 5D8 __u64tos
  1724. 5D7 __utod
  1725. 5FF __utos
  1726. 677 _abs64
  1727. 561 _atodbl
  1728. 562 _atoflt
  1729. 6A _atoi64
  1730. 678 _byteswap_uint64
  1731. 679 _byteswap_ulong
  1732. 67A _byteswap_ushort
  1733. 563 _cabs
  1734. 565 _chgsign
  1735. 566 _clearfp
  1736. 567 _controlfp
  1737. 568 _copysign
  1738. 56D _ecvt
  1739. 621 _fcloseall
  1740. 570 _fcvt
  1741. 626 _fileno
  1742. 571 _finite
  1743. 5C2 _fltused
  1744. 625 _flushall
  1745. 574 _fpclass
  1746. 575 _fpieee_flt
  1747. 576 _fpreset
  1748. 57A _frnd
  1749. 57B _fsqrt
  1750. 57C _gcvt
  1751. 61D _getstdfilex
  1752. 636 _getws
  1753. 57D _hypot
  1754. 120 _isctype
  1755. 57E _isnan
  1756. 683 _isnanf
  1757. 684 _isunordered
  1758. 685 _isunorderedf
  1759. 57F _itoa
  1760. 578 _itow
  1761. 580 _j0
  1762. 581 _j1
  1763. 582 _jn
  1764. 5BC _ld12tod
  1765. 5BD _ld12tof
  1766. 588 _logb
  1767. 58A _lrotl
  1768. 58B _lrotr
  1769. 58C _ltoa
  1770. 58D _ltow
  1771. 602 _mbmemset
  1772. 597 _msize
  1773. 598 _nextafter
  1774. 5C1 _purecall
  1775. 637 _putws
  1776. 59D _rotl
  1777. 688 _rotl64
  1778. 59E _rotr
  1779. 689 _rotr64
  1780. 59F _scalb
  1781. 62E _setmode
  1782. 60A _snprintf
  1783. 605 _snwprintf
  1784. 5A4 _statusfp
  1785. 5B3 _ultoa
  1786. 5B4 _ultow
  1787. 60B _vsnprintf
  1788. 606 _vsnwprintf
  1789. 61E _wfdopen
  1790. 63D _wfopen
  1791. 61F _wfreopen
  1792. 68 _wtol
  1793. 69 _wtoll
  1794. 5B8 _y0
  1795. 5B9 _y1
  1796. 5BA _yn
  1797. 559 abs
  1798. 55A acos
  1799. 55B asin
  1800. 55C atan
  1801. 55D atan2
  1802. 560 atof
  1803. 55E atoi
  1804. 55F atol
  1805. 564 ceil
  1806. 68A ceilf
  1807. 629 clearerr
  1808. 569 cos
  1809. 56A cosh
  1810. 56B difftime
  1811. 56C div
  1812. 56E exp
  1813. 56F fabs
  1814. 68B fabsf
  1815. 620 fclose
  1816. 627 feof
  1817. 628 ferror
  1818. 624 fflush
  1819. 613 fgetc
  1820. 62A fgetpos
  1821. 614 fgets
  1822. 638 fgetwc
  1823. 63B fgetws
  1824. 572 floor
  1825. 68C floorf
  1826. 573 fmod
  1827. 68D fmodf
  1828. 618 fopen
  1829. 61A fprintf
  1830. 615 fputc
  1831. 616 fputs
  1832. 639 fputwc
  1833. 63C fputws
  1834. 622 fread
  1835. 579 frexp
  1836. 619 fscanf
  1837. 62C fseek
  1838. 62B fsetpos
  1839. 62D ftell
  1840. 63F fwprintf
  1841. 623 fwrite
  1842. 63E fwscanf
  1843. 60F getchar
  1844. 611 gets
  1845. 634 getwchar
  1846. 11F iswctype
  1847. 583 labs
  1848. 584 ldexp
  1849. 585 ldiv
  1850. 589 longjmp
  1851. 596 modf
  1852. 599 pow
  1853. 60D printf
  1854. 610 putchar
  1855. 612 puts
  1856. 635 putwchar
  1857. 59A qsort
  1858. 59B rand
  1859. 60C scanf
  1860. 601 setjmp
  1861. 62F setvbuf
  1862. 5A0 sin
  1863. 5A1 sinh
  1864. 608 sprintf
  1865. 5A2 sqrt
  1866. 68E sqrtf
  1867. 5A3 srand
  1868. 607 sscanf
  1869. 5A5 strcat
  1870. 5A6 strchr
  1871. 5A7 strcmp
  1872. 5A8 strcpy
  1873. 5A9 strcspn
  1874. 5AA strlen
  1875. 5AB strncat
  1876. 5AC strncmp
  1877. 5AD strncpy
  1878. 6E strpbrk
  1879. 6F strrchr
  1880. 70 strspn
  1881. 5AE strstr
  1882. 6B strtod
  1883. 5AF strtok
  1884. 6C strtol
  1885. 6D strtoul
  1886. 603 swprintf
  1887. 630 swscanf
  1888. 5B1 tan
  1889. 5B2 tanh
  1890. 5BF tolower
  1891. 5C0 toupper
  1892. 121 towlower
  1893. 122 towupper
  1894. 617 ungetc
  1895. 63A ungetwc
  1896. 61B vfprintf
  1897. 640 vfwprintf
  1898. 60E vprintf
  1899. 609 vsprintf
  1900. 604 vswprintf
  1901. 633 vwprintf
  1902. 632 wprintf
  1903. 631 wscanf
  1904. }
  1905. {$ifdef read_interface}
  1906. //*****************************************************************************
  1907. // consts
  1908. //*****************************************************************************
  1909. const
  1910. // SHGetSpecialFolderPath consts
  1911. CSIDL_PROGRAMS = $0002;
  1912. CSIDL_CONTROLS = $0003;
  1913. CSIDL_PRINTERS = $0004;
  1914. CSIDL_PERSONAL = $0005;
  1915. CSIDL_FAVORITES = $0006;
  1916. CSIDL_STARTUP = $0007;
  1917. CSIDL_RECENT = $0008;
  1918. CSIDL_SENDTO = $0009;
  1919. CSIDL_BITBUCKET = $000a;
  1920. CSIDL_STARTMENU = $000b;
  1921. CSIDL_DESKTOPDIRECTORY = $0010;
  1922. CSIDL_DRIVES = $0011;
  1923. CSIDL_NETWORK = $0012;
  1924. CSIDL_NETHOOD = $0013;
  1925. CSIDL_FONTS = $0014;
  1926. CSIDL_TEMPLATES = $0015;
  1927. CSIDL_APPDATA = $001a;
  1928. CSIDL_WINDOWS = $0024;
  1929. CSIDL_PROGRAM_FILES = $0026;
  1930. //*****************************************************************************
  1931. // types
  1932. //*****************************************************************************
  1933. //*****************************************************************************
  1934. // functions
  1935. //*****************************************************************************
  1936. function AbortDoc(_para1:HDC):longint; external KernelDLL name 'AbortDoc';
  1937. function ActivateDevice(lpszDevKey:LPCWSTR; dwClientInfo:DWORD):HANDLE; external KernelDLL name 'ActivateDevice'; // index 153
  1938. function ActivateDeviceEx(lpszDevKey:LPCWSTR; lpRegEnts:LPCVOID; cRegEnts:DWORD; lpvParam:LPVOID):HANDLE; external KernelDLL name 'ActivateDeviceEx'; // index 154
  1939. function ActivateKeyboardLayout(hkl:HKL; Flags:UINT):HKL; external KernelDLL name 'ActivateKeyboardLayout';
  1940. function AddFontResource(_para1:LPCWSTR):longint; external KernelDLL name 'AddFontResourceW';
  1941. function AddFontResourceW(_para1:LPCWSTR):longint; external KernelDLL name 'AddFontResourceW';
  1942. function AdjustWindowRectEx(lpRect:LPRECT; dwStyle:DWORD; bMenu:WINBOOL; dwExStyle:DWORD):WINBOOL; external KernelDLL name 'AdjustWindowRectEx';
  1943. function AdvertiseInterface(devclass:LPGUID; name:LPCWSTR; fAdd:BOOL):BOOL; external KernelDLL name 'AdvertiseInterface'; // index 157
  1944. function AppendMenu(hMenu:HMENU; uFlags:UINT; uIDNewItem:UINT; lpNewItem:LPCWSTR):WINBOOL; external KernelDLL name 'AppendMenuW';
  1945. function AppendMenuW(hMenu:HMENU; uFlags:UINT; uIDNewItem:UINT; lpNewItem:LPCWSTR):WINBOOL; external KernelDLL name 'AppendMenuW';
  1946. function BeginDeferWindowPos(nNumWindows:longint):HDWP; external KernelDLL name 'BeginDeferWindowPos';
  1947. function BeginPaint(hWnd:HWND; lpPaint:LPPAINTSTRUCT):HDC; external KernelDLL name 'BeginPaint';
  1948. function BitBlt(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint;_para6:HDC; _para7:longint; _para8:longint; _para9:DWORD):WINBOOL; external KernelDLL name 'BitBlt';
  1949. function BringWindowToTop(hWnd:HWND):WINBOOL; external KernelDLL name 'BringWindowToTop';
  1950. // Allocates an array in memory with elements initialized to 0.
  1951. function calloc(num:SIZE_T; _size:SIZE_T):pointer; external KernelDLL name 'calloc'; // index 58F
  1952. function CallNextHookEx(hhk:HHOOK; nCode:longint; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'CallNextHookEx';
  1953. function CallWindowProc(lpPrevWndFunc:WNDPROC; hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'CallWindowProcW';
  1954. function CallWindowProcW(lpPrevWndFunc:WNDPROC; hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'CallWindowProcW';
  1955. function ChangeDisplaySettingsEx( lpszDeviceName:LPCTSTR; lpDevMode:LPDEVMODE; hwnd:HWND; dwflags:DWORD; lParam:LPVOID):LONG; external KernelDLL name 'ChangeDisplaySettingsEx';
  1956. function CharLower(lpsz:LPWSTR):LPWSTR; external KernelDLL name 'CharLowerW';
  1957. function CharLowerW(lpsz:LPWSTR):LPWSTR; external KernelDLL name 'CharLowerW';
  1958. function CharLowerBuff(lpsz:LPWSTR; cchLength:DWORD):DWORD; external KernelDLL name 'CharLowerBuffW';
  1959. function CharLowerBuffW(lpsz:LPWSTR; cchLength:DWORD):DWORD; external KernelDLL name 'CharLowerBuffW';
  1960. function CharNext(lpsz:LPCWSTR):LPWSTR; external KernelDLL name 'CharNextW';
  1961. function CharNextW(lpsz:LPCWSTR):LPWSTR; external KernelDLL name 'CharNextW';
  1962. function CharPrev(lpszStart:LPCWSTR; lpszCurrent:LPCWSTR):LPWSTR; external KernelDLL name 'CharPrevW';
  1963. function CharPrevW(lpszStart:LPCWSTR; lpszCurrent:LPCWSTR):LPWSTR; external KernelDLL name 'CharPrevW';
  1964. function CharUpper(lpsz:LPWSTR):LPWSTR; external KernelDLL name 'CharUpperW';
  1965. function CharUpperW(lpsz:LPWSTR):LPWSTR; external KernelDLL name 'CharUpperW';
  1966. function CharUpperBuff(lpsz:LPWSTR; cchLength:DWORD):DWORD; external KernelDLL name 'CharUpperBuffW';
  1967. function CharUpperBuffW(lpsz:LPWSTR; cchLength:DWORD):DWORD; external KernelDLL name 'CharUpperBuffW';
  1968. function CheckDlgButton(hDlg:HWND; nIDButton:longint; uCheck:UINT):WINBOOL;
  1969. function CheckMenuItem(hMenu:HMENU; uIDCheckItem:UINT; uCheck:UINT):DWORD; external KernelDLL name 'CheckMenuItem';
  1970. function CheckMenuRadioItem(_para1:HMENU; _para2:UINT; _para3:UINT; _para4:UINT; _para5:UINT):WINBOOL; external KernelDLL name 'CheckMenuRadioItem';
  1971. function CheckPassword(lpszPassword:LPWSTR):BOOL; external KernelDLL name 'CheckPassword'; // index 10B
  1972. function CheckRadioButton(hDlg:HWND; nIDFirstButton:longint; nIDLastButton:longint; nIDCheckButton:longint):WINBOOL; external KernelDLL name 'CheckRadioButton';
  1973. function ChildWindowFromPoint(hWndParent:HWND; Point:POINT):HWND; external KernelDLL name 'ChildWindowFromPoint';
  1974. function ClearCommBreak(hFile:HANDLE):WINBOOL; external KernelDLL name 'ClearCommBreak';
  1975. function ClearCommError(hFile:HANDLE; lpErrors:LPDWORD; lpStat:LPCOMSTAT):WINBOOL; external KernelDLL name 'ClearCommError';
  1976. function ClientToScreen(hWnd:HWND; lpPoint:LPPOINT):WINBOOL; external KernelDLL name 'ClientToScreen';
  1977. function ClipCursor(lpRect:LPRECT):WINBOOL; external KernelDLL name 'ClipCursor';
  1978. function CloseClipboard:WINBOOL; external KernelDLL name 'CloseClipboard';
  1979. function CloseEnhMetaFile(_para1:HDC):HENHMETAFILE; external KernelDLL name 'CloseEnhMetaFile';
  1980. function CloseHandle(hObject:HANDLE):WINBOOL; external KernelDLL name 'CloseHandle';
  1981. function CombineRgn(_para1:HRGN; _para2:HRGN; _para3:HRGN; _para4:longint):longint; external KernelDLL name 'CombineRgn';
  1982. function CompareFileTime(lpFileTime1:LPFILETIME; lpFileTime2:LPFILETIME):LONG; external KernelDLL name 'CompareFileTime';
  1983. function CompareString(Locale:LCID; dwCmpFlags:DWORD; lpString1:LPCWSTR; cchCount1:longint; lpString2:LPCWSTR;cchCount2:longint):longint; external KernelDLL name 'CompareStringW';
  1984. function CompareStringW(Locale:LCID; dwCmpFlags:DWORD; lpString1:LPCWSTR; cchCount1:longint; lpString2:LPCWSTR;cchCount2:longint):longint; external KernelDLL name 'CompareStringW';
  1985. function ContinueDebugEvent(dwProcessId:DWORD; dwThreadId:DWORD; dwContinueStatus:DWORD):WINBOOL; external KernelDLL name 'ContinueDebugEvent';
  1986. function ConvertDefaultLocale(Locale:LCID):LCID; external KernelDLL name 'ConvertDefaultLocale';
  1987. procedure CopyMemory(Destination:PVOID; Source:pointer; Length:DWORD);
  1988. function CopyFile(lpExistingFileName:LPCWSTR; lpNewFileName:LPCWSTR; bFailIfExists:WINBOOL):WINBOOL; external KernelDLL name 'CopyFileW';
  1989. function CopyFileW(lpExistingFileName:LPCWSTR; lpNewFileName:LPCWSTR; bFailIfExists:WINBOOL):WINBOOL; external KernelDLL name 'CopyFileW';
  1990. function CopyRect(lprcDst:LPRECT; const lprcSrc:RECT):WINBOOL; external KernelDLL name 'CopyRect';
  1991. function CountClipboardFormats:longint; external KernelDLL name 'CountClipboardFormats';
  1992. function CreateAcceleratorTable(_para1:LPACCEL; _para2:longint):HACCEL; external KernelDLL name 'CreateAcceleratorTableW';
  1993. function CreateAcceleratorTableW(_para1:LPACCEL; _para2:longint):HACCEL; external KernelDLL name 'CreateAcceleratorTableW';
  1994. function CreateBitmap(_para1:longint; _para2:longint; _para3:UINT; _para4:UINT; _para5:pointer):HBITMAP; external KernelDLL name 'CreateBitmap';
  1995. function CreateCaret(hWnd:HWND; hBitmap:HBITMAP; nWidth:longint; nHeight:longint):WINBOOL; external KernelDLL name 'CreateCaret';
  1996. function CreateCompatibleBitmap(_para1:HDC; _para2:longint; _para3:longint):HBITMAP; external KernelDLL name 'CreateCompatibleBitmap';
  1997. function CreateCompatibleDC(_para1:HDC):HDC; external KernelDLL name 'CreateCompatibleDC';
  1998. function CreateDC(_para1:LPCWSTR; _para2:LPCWSTR; _para3:LPCWSTR; _para4:pDEVMODE):HDC; external KernelDLL name 'CreateDCW';
  1999. function CreateDCW(_para1:LPCWSTR; _para2:LPCWSTR; _para3:LPCWSTR; _para4:pDEVMODE):HDC; external KernelDLL name 'CreateDCW';
  2000. function CreateDialogIndirect(hInstance:HINST; lpTemplate:LPCDLGTEMPLATE; hWndParent:HWND; lpDialogFunc:DLGPROC):HWND;
  2001. function CreateDialogIndirectW(hInstance:HINST; lpTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC):HWND;
  2002. function CreateDialogIndirectParam(hInstance:HINST; lpTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC; dwInitParam:LPARAM):HWND; external KernelDLL name 'CreateDialogIndirectParamW';
  2003. function CreateDialogIndirectParamW(hInstance:HINST; lpTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC; dwInitParam:LPARAM):HWND; external KernelDLL name 'CreateDialogIndirectParamW';
  2004. function CreateDialog(hInstance:HINST; lpName:LPCWSTR; hWndParent:HWND; lpDialogFunc:DLGPROC):HWND;
  2005. function CreateDialogParam(hInstance:HINST; lpTemplateName:LPCWSTR; hWndParent:HWND; lpDialogFunc:DLGPROC; dwInitParam:LPARAM):HWND;
  2006. function CreateDIBPatternBrushPt(_para1:pointer; _para2:UINT):HBRUSH; external KernelDLL name 'CreateDIBPatternBrushPt';
  2007. function CreateDIBSection(_para1:HDC; var _para2:BITMAPINFO; _para3:UINT; var _para4:pointer; _para5:HWND;_para6:DWORD):HBITMAP; external KernelDLL name 'CreateDIBSection';
  2008. function CreateDirectory(lpPathName:LPCWSTR; lpSecurityAttributes:LPSECURITY_ATTRIBUTES):WINBOOL; external KernelDLL name 'CreateDirectoryW';
  2009. function CreateDirectoryW(lpPathName:LPCWSTR; lpSecurityAttributes:LPSECURITY_ATTRIBUTES):WINBOOL; external KernelDLL name 'CreateDirectoryW';
  2010. function CreateEnhMetaFile(_para1:HDC; _para2:LPCWSTR; _para3:LPRECT; _para4:LPCWSTR):HDC; external KernelDLL name 'CreateEnhMetaFileW';
  2011. function CreateEnhMetaFileW(_para1:HDC; _para2:LPCWSTR; _para3:LPRECT; _para4:LPCWSTR):HDC; external KernelDLL name 'CreateEnhMetaFileW';
  2012. function CreateEvent(lpEventAttributes:LPSECURITY_ATTRIBUTES; bManualReset:WINBOOL; bInitialState:WINBOOL; lpName:LPCWSTR):HANDLE; external KernelDLL name 'CreateEventW';
  2013. function CreateEventW(lpEventAttributes:LPSECURITY_ATTRIBUTES; bManualReset:WINBOOL; bInitialState:WINBOOL; lpName:LPCWSTR):HANDLE; external KernelDLL name 'CreateEventW';
  2014. function CreateFile(lpFileName:LPCWSTR; dwDesiredAccess:DWORD; dwShareMode:DWORD; lpSecurityAttributes:LPSECURITY_ATTRIBUTES; dwCreationDisposition:DWORD;dwFlagsAndAttributes:DWORD; hTemplateFile:HANDLE):HANDLE; external KernelDLL name 'CreateFileW';
  2015. function CreateFileW(lpFileName:LPCWSTR; dwDesiredAccess:DWORD; dwShareMode:DWORD; lpSecurityAttributes:LPSECURITY_ATTRIBUTES; dwCreationDisposition:DWORD;dwFlagsAndAttributes:DWORD; hTemplateFile:HANDLE):HANDLE; external KernelDLL name 'CreateFileW';
  2016. function CreateFileForMapping(lpFileName:LPCWSTR; dwDesiredAccess:DWORD; dwShareMode:DWORD; lpSecurityAttributes:LPSECURITY_ATTRIBUTES; dwCreationDisposition:DWORD;dwFlagsAndAttributes:DWORD; hTemplateFile:HANDLE):HANDLE; external KernelDLL name 'CreateFileForMappingW';
  2017. function CreateFileForMappingW(lpFileName:LPCWSTR; dwDesiredAccess:DWORD; dwShareMode:DWORD; lpSecurityAttributes:LPSECURITY_ATTRIBUTES; dwCreationDisposition:DWORD;dwFlagsAndAttributes:DWORD; hTemplateFile:HANDLE):HANDLE; external KernelDLL name 'CreateFileForMappingW';
  2018. function CreateFileMapping(hFile:HANDLE; lpFileMappingAttributes:LPSECURITY_ATTRIBUTES; flProtect:DWORD; dwMaximumSizeHigh:DWORD; dwMaximumSizeLow:DWORD;lpName:LPCWSTR):HANDLE; external KernelDLL name 'CreateFileMappingW';
  2019. function CreateFileMappingW(hFile:HANDLE; lpFileMappingAttributes:LPSECURITY_ATTRIBUTES; flProtect:DWORD; dwMaximumSizeHigh:DWORD; dwMaximumSizeLow:DWORD;lpName:LPCWSTR):HANDLE; external KernelDLL name 'CreateFileMappingW';
  2020. function CreateFontIndirect(_para1:PLOGFONTW):HFONT; external KernelDLL name 'CreateFontIndirectW';
  2021. function CreateFontIndirectW(_para1:PLOGFONTW):HFONT; external KernelDLL name 'CreateFontIndirectW';
  2022. function CreateIconIndirect(piconinfo:PICONINFO):HICON; external KernelDLL name 'CreateIconIndirect';
  2023. function CreateLocaleView(bFirst: WINBOOL ): LPBYTE; external KernelDLL name 'CreateLocaleView';
  2024. function CreateMenu:HMENU; external KernelDLL name 'CreateMenu';
  2025. function CreateMutex(lpMutexAttributes:LPSECURITY_ATTRIBUTES; bInitialOwner:WINBOOL; lpName:LPCWSTR):HANDLE; external KernelDLL name 'CreateMutexW';
  2026. function CreateMutexW(lpMutexAttributes:LPSECURITY_ATTRIBUTES; bInitialOwner:WINBOOL; lpName:LPCWSTR):HANDLE; external KernelDLL name 'CreateMutexW';
  2027. function CreateProcess(pszImageName:LPCWSTR; pszCmdLine:LPCWSTR; psaProcess:LPSECURITY_ATTRIBUTES; psaThread:LPSECURITY_ATTRIBUTES; bInheritHandles:WINBOOL;fdwCreate:DWORD; lpEnvironment:LPVOID;
  2028. pszCurDir:LPCWSTR; psiStartInfo:LPSTARTUPINFO; pProcInfo:LPPROCESS_INFORMATION):WINBOOL; external KernelDLL name 'CreateProcessW';
  2029. function CreateProcessW(pszImageName:LPCWSTR; pszCmdLine:LPCWSTR; psaProcess:LPSECURITY_ATTRIBUTES; psaThread:LPSECURITY_ATTRIBUTES; bInheritHandles:WINBOOL;fdwCreate:DWORD; lpEnvironment:LPVOID;
  2030. pszCurDir:LPCWSTR; psiStartInfo:LPSTARTUPINFO; pProcInfo:LPPROCESS_INFORMATION):WINBOOL; external KernelDLL name 'CreateProcessW';
  2031. function CreatePopupMenu:HMENU; external KernelDLL name 'CreatePopupMenu';
  2032. function CreatePalette(var _para1:LOGPALETTE):HPALETTE; external KernelDLL name 'CreatePalette';
  2033. function CreatePatternBrush(_para1:HBITMAP):HBRUSH; external KernelDLL name 'CreatePatternBrush';
  2034. function CreatePen(_para1:longint; _para2:longint; _para3:COLORREF):HPEN; external KernelDLL name 'CreatePen';
  2035. function CreatePenIndirect(var _para1:LOGPEN):HPEN; external KernelDLL name 'CreatePenIndirect';
  2036. function CreateRectRgn(_para1:longint; _para2:longint; _para3:longint; _para4:longint):HRGN; external KernelDLL name 'CreateRectRgn';
  2037. function CreateRectRgnIndirect(const _para1:RECT):HRGN; external KernelDLL name 'CreateRectRgnIndirect';
  2038. function CreateSemaphore(lpSemaphoreAttributes:LPSECURITY_ATTRIBUTES; lInitialCount:LONG; lMaximumCount:LONG; lpName:LPCWSTR):HANDLE; external KernelDLL name 'CreateSemaphoreW';
  2039. function CreateSemaphoreW(lpSemaphoreAttributes:LPSECURITY_ATTRIBUTES; lInitialCount:LONG; lMaximumCount:LONG; lpName:LPCWSTR):HANDLE; external KernelDLL name 'CreateSemaphoreW';
  2040. function CreateSolidBrush(_para1:COLORREF):HBRUSH; external KernelDLL name 'CreateSolidBrush';
  2041. function CreateThread(lpThreadAttributes: Pointer; dwStackSize: DWORD; lpStartAddress: pointer; lpParameter: Pointer; dwCreationFlags: DWORD; var lpThreadId: DWORD): THandle; external KernelDLL name 'CreateThread';
  2042. function CreateWindow(lpClassName:LPCWSTR; lpWindowName:LPCWSTR; dwStyle:DWORD; X:Longint;Y:Longint; nWidth:Longint; nHeight:Longint; hWndParent:HWND; hMenu:HMENU;hInstance:HINST; lpParam:LPVOID):HWND;
  2043. function CreateWindowEx(dwExStyle:DWORD; lpClassName:LPCWSTR; lpWindowName:LPCWSTR; dwStyle:DWORD; X:longint;Y:longint; nWidth:longint; nHeight:longint; hWndParent:HWND; hMenu:HMENU;hInstance:HINST; lpParam:LPVOID):HWND;
  2044. external KernelDLL name 'CreateWindowExW';
  2045. function CreateWindowExW(dwExStyle:DWORD; lpClassName:LPCWSTR; lpWindowName:LPCWSTR; dwStyle:DWORD; X:longint;Y:longint; nWidth:longint; nHeight:longint; hWndParent:HWND; hMenu:HMENU;hInstance:HINST; lpParam:LPVOID):HWND;
  2046. external KernelDLL name 'CreateWindowExW';
  2047. function DeactivateDevice(hDevice:HANDLE):BOOL; external KernelDLL name 'DeactivateDevice'; // index 158
  2048. function DebugActiveProcess(dwProcessId:DWORD):WINBOOL; external KernelDLL name 'DebugActiveProcess';
  2049. function DefDlgProc(hDlg:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'DefDlgProcW';
  2050. function DefDlgProcW(hDlg:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'DefDlgProcW';
  2051. function DeferWindowPos(hWinPosInfo:HDWP; hWnd:HWND; hWndInsertAfter:HWND; x:longint; y:longint;cx:longint; cy:longint; uFlags:UINT):HDWP; external KernelDLL name 'DeferWindowPos';
  2052. function DefWindowProc(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'DefWindowProcW';
  2053. function DefWindowProcW(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'DefWindowProcW';
  2054. procedure DeleteCriticalSection(lpCriticalSection:LPCRITICAL_SECTION); external KernelDLL name 'DeleteCriticalSection';
  2055. function DeleteDC(_para1:HDC):WINBOOL; external KernelDLL name 'DeleteDC';
  2056. function DeleteEnhMetaFile(_para1:HENHMETAFILE):WINBOOL; external KernelDLL name 'DeleteEnhMetaFile';
  2057. function DeleteFile(lpFileName:LPCWSTR):WINBOOL; external KernelDLL name 'DeleteFileW';
  2058. function DeleteFileW(lpFileName:LPCWSTR):WINBOOL; external KernelDLL name 'DeleteFileW';
  2059. function DeleteMenu(hMenu:HMENU; uPosition:UINT; uFlags:UINT):WINBOOL; external KernelDLL name 'DeleteMenu';
  2060. function DeleteObject(_para1:HGDIOBJ):WINBOOL; external KernelDLL name 'DeleteObject';
  2061. function DeregisterDevice(hDevice:HANDLE):BOOL; external KernelDLL name 'DeregisterDevice'; // index 150
  2062. function DestroyAcceleratorTable(hAccel:HACCEL):WINBOOL; external KernelDLL name 'DestroyAcceleratorTable';
  2063. function DestroyCaret:WINBOOL; external KernelDLL name 'DestroyCaret';
  2064. function DestroyIcon(hIcon:HICON):WINBOOL; external KernelDLL name 'DestroyIcon';
  2065. function DestroyMenu(hMenu:HMENU):WINBOOL; external KernelDLL name 'DestroyMenu';
  2066. function DestroyWindow(hWnd:HWND):WINBOOL; external KernelDLL name 'DestroyWindow';
  2067. function DeviceIoControl(hDevice:HANDLE; dwIoControlCode:DWORD; lpInBuffer:LPVOID; nInBufferSize:DWORD; lpOutBuffer:LPVOID;nOutBufferSize:DWORD; lpBytesReturned:LPDWORD; lpOverlapped:LPOVERLAPPED):WINBOOL; external KernelDLL name 'DeviceIoControl';
  2068. function DialogBox(hInstance:HINST; lpTemplate:LPCWSTR; hWndParent:HWND; lpDialogFunc:DLGPROC):longint;
  2069. function DialogBoxIndirect(hInstance:HINST; lpTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC):longint;
  2070. function DialogBoxIndirectW(hInstance:HINST; lpTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC):longint;
  2071. function DialogBoxIndirectParam(hInstance:HINST; hDialogTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC; dwInitParam:LPARAM):longint; external KernelDLL name 'DialogBoxIndirectParamW';
  2072. function DialogBoxIndirectParamW(hInstance:HINST; hDialogTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC; dwInitParam:LPARAM):longint; external KernelDLL name 'DialogBoxIndirectParamW';
  2073. function DialogBoxParam(hInstance:HINST; lpTemplateName:LPCWSTR; hWndParent:HWND; lpDialogFunc:DLGPROC; dwInitParam:LPARAM):longint;
  2074. function DisableThreadLibraryCalls(hLibModule:HMODULE):WINBOOL; external KernelDLL name 'DisableThreadLibraryCalls';
  2075. function DispatchMessage(lpMsg:LPMSG):LONG; external KernelDLL name 'DispatchMessageW';
  2076. function DispatchMessageW(lpMsg:LPMSG):LONG; external KernelDLL name 'DispatchMessageW';
  2077. function DrawEdge(hdc:HDC; qrc:LPRECT; edge:UINT; grfFlags:UINT):WINBOOL; external KernelDLL name 'DrawEdge';
  2078. function DrawFocusRect(hDC:HDC; const lprc:RECT):WINBOOL; external KernelDLL name 'DrawFocusRect';
  2079. function DrawFrameControl(_para1:HDC; _para2:LPRECT; _para3:UINT; _para4:UINT):WINBOOL; external KernelDLL name 'DrawFrameControl';
  2080. function DrawIcon(hDC:HDC; X:longint; Y:longint; hIcon:HICON):WINBOOL;
  2081. function DrawIconEx(hdc:HDC; xLeft:longint; yTop:longint; hIcon:HICON; cxWidth:longint;cyWidth:longint; istepIfAniCur:UINT; hbrFlickerFreeDraw:HBRUSH; diFlags:UINT):WINBOOL; external KernelDLL name 'DrawIconEx';
  2082. function DrawMenuBar(hWnd:HWND):WINBOOL; external KernelDLL name 'DrawMenuBar';
  2083. function DrawText(hDC:HDC; lpString:LPCWSTR; nCount:longint; lpRect:LPRECT; uFormat:UINT):longint; external KernelDLL name 'DrawTextW';
  2084. function DrawTextW(hDC:HDC; lpString:LPCWSTR; nCount:longint; lpRect:LPRECT; uFormat:UINT):longint; external KernelDLL name 'DrawTextW';
  2085. function DuplicateHandle(hSourceProcessHandle:HANDLE; hSourceHandle:HANDLE; hTargetProcessHandle:HANDLE; lpTargetHandle:LPHANDLE; dwDesiredAccess:DWORD;bInheritHandle:WINBOOL; dwOptions:DWORD):WINBOOL; external KernelDLL name 'DuplicateHandle';
  2086. function Ellipse(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint):WINBOOL; external KernelDLL name 'Ellipse';
  2087. function EqualRgn(_para1:HRGN; _para2:HRGN):WINBOOL; external KernelDLL name 'EqualRgn';
  2088. function EmptyClipboard:WINBOOL; external KernelDLL name 'EmptyClipboard';
  2089. function EnableHardwareKeyboard(bEnable:BOOL):BOOL; external KernelDLL name 'EnableHardwareKeyboard'; // index 486
  2090. function EnableMenuItem(hMenu:HMENU; uIDEnableItem:UINT; uEnable:UINT):WINBOOL; external KernelDLL name 'EnableMenuItem';
  2091. function EnableWindow(hWnd:HWND; bEnable:WINBOOL):WINBOOL; external KernelDLL name 'EnableWindow';
  2092. function EnumCalendarInfo(lpCalInfoEnumProc:CALINFO_ENUMPROC; Locale:LCID; Calendar:CALID; CalType:CALTYPE):WINBOOL; external KernelDLL name 'EnumCalendarInfoW';
  2093. function EnumCalendarInfoW(lpCalInfoEnumProc:CALINFO_ENUMPROC; Locale:LCID; Calendar:CALID; CalType:CALTYPE):WINBOOL; external KernelDLL name 'EnumCalendarInfoW';
  2094. function EnumDateFormats(lpDateFmtEnumProc:DATEFMT_ENUMPROC; Locale:LCID; dwFlags:DWORD):WINBOOL; external KernelDLL name 'EnumDateFormatsW';
  2095. function EnumDateFormatsW(lpDateFmtEnumProc:DATEFMT_ENUMPROC; Locale:LCID; dwFlags:DWORD):WINBOOL; external KernelDLL name 'EnumDateFormatsW';
  2096. function EnumDisplaySettings(lpszDeviceName:LPCWSTR; iModeNum:DWORD; lpDevMode:LPDEVMODEW):WINBOOL; external KernelDLL name 'EnumDisplaySettings';
  2097. function EnumFonts(_para1:HDC; _para2:LPCWSTR; _para3:ENUMFONTSPROC; _para4:LPARAM):longint; external KernelDLL name 'EnumFontsW';
  2098. function EnumFontsW(_para1:HDC; _para2:LPCWSTR; _para3:ENUMFONTSPROC; _para4:LPARAM):longint; external KernelDLL name 'EnumFontsW';
  2099. function EnumFontFamilies(_para1:HDC; _para2:LPCWSTR; _para3:FONTENUMPROC; _para4:LPARAM):longint; external KernelDLL name 'EnumFontFamiliesW';
  2100. function EnumFontFamiliesW(_para1:HDC; _para2:LPCWSTR; _para3:FONTENUMPROC; _para4:LPARAM):longint; external KernelDLL name 'EnumFontFamiliesW';
  2101. function EnumPropsEx(hWnd:HWND; lpEnumFunc:PROPENUMPROCEX; lParam:LPARAM):longint; external KernelDLL name 'EnumPropsEx';
  2102. function EnumSystemCodePages(lpCodePageEnumProc:CODEPAGE_ENUMPROCW; dwFlags:DWORD):WINBOOL; external KernelDLL name 'EnumSystemCodePagesW';
  2103. function EnumSystemCodePagesW(lpCodePageEnumProc:CODEPAGE_ENUMPROCW; dwFlags:DWORD):WINBOOL; external KernelDLL name 'EnumSystemCodePagesW';
  2104. function EnumSystemLocales(lpLocaleEnumProc:LOCALE_ENUMPROC; dwFlags:DWORD):WINBOOL; external KernelDLL name 'EnumSystemLocalesW';
  2105. function EnumSystemLocalesW(lpLocaleEnumProc:LOCALE_ENUMPROC; dwFlags:DWORD):WINBOOL; external KernelDLL name 'EnumSystemLocalesW';
  2106. function EnumTimeFormats(lpTimeFmtEnumProc:TIMEFMT_ENUMPROC; Locale:LCID; dwFlags:DWORD):WINBOOL; external KernelDLL name 'EnumTimeFormatsW';
  2107. function EnumTimeFormatsW(lpTimeFmtEnumProc:TIMEFMT_ENUMPROC; Locale:LCID; dwFlags:DWORD):WINBOOL; external KernelDLL name 'EnumTimeFormatsW';
  2108. function EndDeferWindowPos(hWinPosInfo:HDWP):WINBOOL; external KernelDLL name 'EndDeferWindowPos';
  2109. function EndDialog(hDlg:HWND; nResult:longint):WINBOOL; external KernelDLL name 'EndDialog';
  2110. function EndDoc(_para1:HDC):longint; external KernelDLL name 'EndDoc';
  2111. function EndPage(_para1:HDC):longint; external KernelDLL name 'EndPage';
  2112. function EndPaint(hWnd:HWND; lpPaint:LPPAINTSTRUCT):WINBOOL; external KernelDLL name 'EndPaint';
  2113. procedure EnterCriticalSection(lpCriticalSection:LPCRITICAL_SECTION); external KernelDLL name 'EnterCriticalSection';
  2114. function EnumClipboardFormats(format:UINT):UINT; external KernelDLL name 'EnumClipboardFormats';
  2115. function EnumWindows(lpEnumFunc:ENUMWINDOWSPROC; lParam:LPARAM):WINBOOL; external KernelDLL name 'EnumWindows';
  2116. function EqualRect(const lprc1:RECT; const lprc2:RECT):WINBOOL; external KernelDLL name 'EqualRect';
  2117. function EscapeCommFunction(hFile:HANDLE; dwFunc:DWORD):WINBOOL; external KernelDLL name 'EscapeCommFunction';
  2118. function EventModify(hEvent:HANDLE; func:DWORD ):WINBOOL; external KernelDLL name 'EventModify';
  2119. function ExcludeClipRect(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint):longint; external KernelDLL name 'ExcludeClipRect';
  2120. procedure ExitProcess(uExitCode:UINT);
  2121. procedure ExitThread(dwExitCode:DWORD); external KernelDLL name 'ExitThread';
  2122. function ExtCreateRegion(var _para1:XFORM; _para2:DWORD; var _para3:RGNDATA):HRGN; external KernelDLL name 'ExtCreateRegion';
  2123. function ExtEscape(_para1:HDC; _para2:longint; _para3:longint; _para4:LPCSTR; _para5:longint;_para6:LPSTR):longint; external KernelDLL name 'ExtEscape';
  2124. function ExtTextOut(_para1:HDC; _para2:longint; _para3:longint; _para4:UINT; _para5:LPRECT;_para6:LPCWSTR; _para7:UINT; _para8:LPINT):WINBOOL; external KernelDLL name 'ExtTextOutW';
  2125. function ExtTextOutW(_para1:HDC; _para2:longint; _para3:longint; _para4:UINT; _para5:LPRECT;_para6:LPCWSTR; _para7:UINT; _para8:LPINT):WINBOOL; external KernelDLL name 'ExtTextOutW';
  2126. function ExtractIconEx(lpszFile:LPCTSTR; nIconIndex:longint; phiconLarge: LPHICON; phiconSmall:LPHICON; nIcons:UINT):UINT; external KernelDLL name 'ExtractIconExW';
  2127. function ExtractIconExW(lpszFile:LPCTSTR; nIconIndex:longint; phiconLarge: LPHICON; phiconSmall:LPHICON; nIcons:UINT):UINT; external KernelDLL name 'ExtractIconExW';
  2128. function FileTimeToLocalFileTime(lpFileTime:LPFILETIME; lpLocalFileTime:LPFILETIME):WINBOOL; external KernelDLL name 'FileTimeToLocalFileTime';
  2129. function FileTimeToSystemTime(lpFileTime:LPFILETIME; lpSystemTime:LPSYSTEMTIME):WINBOOL; external KernelDLL name 'FileTimeToSystemTime';
  2130. procedure FillMemory(Destination:PVOID; Length:DWORD; Fill:BYTE);
  2131. function FillRect(hDC:HDC; const lprc:RECT; hbr:HBRUSH):longint; external KernelDLL name 'FillRect';
  2132. function FillRgn(DC: HDC; p2: HRGN; p3: HBRUSH): BOOL; external KernelDLL name 'FillRgn';
  2133. function FindClose(hFindFile:HANDLE):WINBOOL; external KernelDLL name 'FindClose';
  2134. function FindCloseChangeNotification(hChangeHandle:HANDLE):WINBOOL; external KernelDLL name 'FindCloseChangeNotification';
  2135. function FindFirstChangeNotification(lpPathName:LPCWSTR; bWatchSubtree:WINBOOL; dwNotifyFilter:DWORD):HANDLE; external KernelDLL name 'FindFirstChangeNotificationW';
  2136. function FindFirstChangeNotificationW(lpPathName:LPCWSTR; bWatchSubtree:WINBOOL; dwNotifyFilter:DWORD):HANDLE; external KernelDLL name 'FindFirstChangeNotificationW';
  2137. function FindFirstFile(lpFileName:LPCWSTR; lpFindFileData:LPWIN32_FIND_DATAW):HANDLE; external KernelDLL name 'FindFirstFileW';
  2138. function FindFirstFileW(lpFileName:LPCWSTR; lpFindFileData:LPWIN32_FIND_DATAW):HANDLE; external KernelDLL name 'FindFirstFileW';
  2139. function FindFirstFileEx(lpFileName:LPCWSTR; lpInfoLevelId:FINDEX_INFO_LEVELS; lpFindFileData:LPVOID; fSearchOp:FINDEX_SEARCH_OPS; lpSearchFilter:LPVOID; dwAdditionalFlags:DWORD):HANDLE; external KernelDLL name 'FindFirstFileExW';
  2140. function FindFirstFileExW(lpFileName:LPCWSTR; lpInfoLevelId:FINDEX_INFO_LEVELS; lpFindFileData:LPVOID; fSearchOp:FINDEX_SEARCH_OPS; lpSearchFilter:LPVOID; dwAdditionalFlags:DWORD):HANDLE; external KernelDLL name 'FindFirstFileExW';
  2141. function FindNextChangeNotification(hChangeHandle:HANDLE):WINBOOL; external KernelDLL name 'FindNextChangeNotification';
  2142. function FindNextFile(hFindFile:HANDLE; lpFindFileData:LPWIN32_FIND_DATAW):WINBOOL; external KernelDLL name 'FindNextFileW';
  2143. function FindNextFileW(hFindFile:HANDLE; lpFindFileData:LPWIN32_FIND_DATAW):WINBOOL; external KernelDLL name 'FindNextFileW';
  2144. function FindResource(hModule:HMODULE; lpName:LPCWSTR; lpType:LPCWSTR):HRSRC; external KernelDLL name 'FindResourceW';
  2145. function FindResourceW(hModule:HMODULE; lpName:LPCWSTR; lpType:LPCWSTR):HRSRC; external KernelDLL name 'FindResourceW';
  2146. function FindWindow(lpClassName:LPCWSTR; lpWindowName:LPCWSTR):HWND; external KernelDLL name 'FindWindowW';
  2147. function FindWindowW(lpClassName:LPCWSTR; lpWindowName:LPCWSTR):HWND; external KernelDLL name 'FindWindowW';
  2148. function FlushFileBuffers(hFile:HANDLE):WINBOOL; external KernelDLL name 'FlushFileBuffers';
  2149. function FlushInstructionCache(hProcess:HANDLE; lpBaseAddress:LPCVOID; dwSize:DWORD):WINBOOL; external KernelDLL name 'FlushInstructionCache';
  2150. function FlushViewOfFile(lpBaseAddress:LPCVOID; dwNumberOfBytesToFlush:DWORD):WINBOOL; external KernelDLL name 'FlushViewOfFile';
  2151. function FoldString(dwMapFlags:DWORD; lpSrcStr:LPCWSTR; cchSrc:longint; lpDestStr:LPWSTR; cchDest:longint):longint; external KernelDLL name 'FoldStringW';
  2152. function FoldStringW(dwMapFlags:DWORD; lpSrcStr:LPCWSTR; cchSrc:longint; lpDestStr:LPWSTR; cchDest:longint):longint; external KernelDLL name 'FoldStringW';
  2153. function FormatMessage(dwFlags:DWORD; lpSource:LPCVOID; dwMessageId:DWORD; dwLanguageId:DWORD; lpBuffer:LPWSTR;nSize:DWORD; Arguments:va_list):DWORD; external KernelDLL name 'FormatMessageW';
  2154. function FormatMessageW(dwFlags:DWORD; lpSource:LPCVOID; dwMessageId:DWORD; dwLanguageId:DWORD; lpBuffer:LPWSTR;nSize:DWORD; Arguments:va_list):DWORD; external KernelDLL name 'FormatMessageW';
  2155. procedure free(memblock:pointer); external KernelDLL name 'free'; // index 577
  2156. function FreeLibrary(hLibModule:HMODULE):WINBOOL; external KernelDLL name 'FreeLibrary';
  2157. procedure FreeLibraryAndExitThread(hLibModule:HMODULE; dwExitCode:DWORD); external KernelDLL name 'FreeLibraryAndExitThread';
  2158. function GetActiveWindow:HWND; external KernelDLL name 'GetActiveWindow';
  2159. function GetACP:UINT; external KernelDLL name 'GetACP';
  2160. function GetAsyncKeyState(vKey:longint):SHORT; external KernelDLL name 'GetAsyncKeyState';
  2161. function GetBkColor(_para1:HDC):COLORREF; external KernelDLL name 'GetBkColor';
  2162. function GetBkMode(_para1:HDC):longint; external KernelDLL name 'GetBkMode';
  2163. function GetCapture:HWND; external KernelDLL name 'GetCapture';
  2164. function GetCaretBlinkTime:UINT; external KernelDLL name 'GetCaretBlinkTime';
  2165. function GetCaretPos(lpPoint:LPPOINT):WINBOOL; external KernelDLL name 'GetCaretPos';
  2166. function GetCharABCWidths(_para1:HDC; _para2:UINT; _para3:UINT; _para4:LPABC):WINBOOL; external KernelDLL name 'GetCharABCWidths';
  2167. function GetCharWidth32(_para1:HDC; _para2:UINT; _para3:UINT; _para4:LPINT):WINBOOL; external KernelDLL name 'GetCharWidth32';
  2168. function GetClassName(hWnd:HWND; lpClassName:LPWSTR; nMaxCount:longint):longint; external KernelDLL name 'GetClassNameW';
  2169. function GetClassNameW(hWnd:HWND; lpClassName:LPWSTR; nMaxCount:longint):longint; external KernelDLL name 'GetClassNameW';
  2170. function GetClassInfo(hInstance:HINST; lpClassName:LPCWSTR; lpWndClass:LPWNDCLASS):WINBOOL; external KernelDLL name 'GetClassInfoW';
  2171. function GetClassInfoW(hInstance:HINST; lpClassName:LPCWSTR; lpWndClass:LPWNDCLASS):WINBOOL; external KernelDLL name 'GetClassInfoW';
  2172. function GetClassLong(hWnd:HWND; nIndex:longint):DWORD; external KernelDLL name 'GetClassLong';
  2173. function GetClassLongW(hWnd:HWND; nIndex:longint):DWORD; external KernelDLL name 'GetClassLongW';
  2174. function GetClientRect(hWnd:HWND; lpRect:LPRECT):WINBOOL; external KernelDLL name 'GetClientRect';
  2175. function GetClipboardFormatName(format:UINT; lpszFormatName:LPWSTR; cchMaxCount:longint):longint; external KernelDLL name 'GetClipboardFormatNameW';
  2176. function GetClipboardFormatNameW(format:UINT; lpszFormatName:LPWSTR; cchMaxCount:longint):longint; external KernelDLL name 'GetClipboardFormatNameW';
  2177. function GetClipboardOwner:HWND; external KernelDLL name 'GetClipboardOwner';
  2178. function GetClipboardData(uFormat:UINT):HWND; external KernelDLL name 'GetClipboardData';
  2179. function GetClipBox(_para1:HDC; _para2:LPRECT):longint; external KernelDLL name 'GetClipBox';
  2180. function GetClipCursor(lpRect:LPRECT):WINBOOL; external KernelDLL name 'GetClipCursor';
  2181. function GetClipRgn(_para1:HDC; _para2:HRGN):longint; external KernelDLL name 'GetClipRgn';
  2182. function GetCommandLine : LPWSTR; external KernelDLL name 'GetCommandLineW';
  2183. function GetCommandLineW : LPWSTR; external KernelDLL name 'GetCommandLineW';
  2184. function GetCommMask(hFile:HANDLE; lpEvtMask:LPDWORD):BOOL; external KernelDLL name 'GetCommMask'; // index B1
  2185. function GetCommProperties(hFile:HANDLE; lpCommProp:LPCOMMPROP):WINBOOL; external KernelDLL name 'GetCommProperties';
  2186. function GetCommModemStatus(hFile:HANDLE; lpModemStat:PDWORD):WINBOOL; external KernelDLL name 'GetCommModemStatus';
  2187. function GetCommState(hFile:HANDLE; lpDCB:PDCB):WINBOOL; external KernelDLL name 'GetCommState';
  2188. function GetCommTimeouts(hFile:HANDLE; lpCommTimeouts:PCOMMTIMEOUTS):WINBOOL; external KernelDLL name 'GetCommTimeouts';
  2189. function GetCPInfo(_para1:UINT; _para2:LPCPINFO):WINBOOL; external KernelDLL name 'GetCPInfo';
  2190. function GetCurrencyFormat(Locale:LCID; dwFlags:DWORD; lpValue:LPCWSTR; lpFormat:PCURRENCYFMT; lpCurrencyStr:LPWSTR;cchCurrency:longint):longint; external KernelDLL name 'GetCurrencyFormatW';
  2191. function GetCurrencyFormatW(Locale:LCID; dwFlags:DWORD; lpValue:LPCWSTR; lpFormat:PCURRENCYFMT; lpCurrencyStr:LPWSTR;cchCurrency:longint):longint; external KernelDLL name 'GetCurrencyFormatW';
  2192. function GetCursor:HCURSOR; external KernelDLL name 'GetCursor';
  2193. function GetCursorPos(lpPoint:LPPOINT):WINBOOL; external KernelDLL name 'GetCursorPos';
  2194. function GetCurrentObject(_para1:HDC; _para2:UINT):HGDIOBJ; external KernelDLL name 'GetCurrentObject';
  2195. function GetCurrentPositionEx(_para1:HDC; _para2:LPPOINT):WINBOOL; external KernelDLL name 'GetCurrentPositionEx';
  2196. function GetCurrentProcess:HANDLE;
  2197. function GetCurrentProcessId:DWORD;
  2198. function GetCurrentThread:HANDLE;
  2199. function GetCurrentThreadId:DWORD;
  2200. function GetDateFormat(Locale:LCID; dwFlags:DWORD; lpDate:LPSYSTEMTIME; lpFormat:LPCWSTR; lpDateStr:LPWSTR;cchDate:longint):longint; external KernelDLL name 'GetDateFormatW';
  2201. function GetDateFormatW(Locale:LCID; dwFlags:DWORD; lpDate:LPSYSTEMTIME; lpFormat:LPCWSTR; lpDateStr:LPWSTR;cchDate:longint):longint; external KernelDLL name 'GetDateFormatW';
  2202. function GetDC(hWnd:HWND):HDC; external KernelDLL name 'GetDC';
  2203. function GetDCEx(hWnd:HWND; hrgnClip:HRGN; flags:DWORD):HDC; external KernelDLL name 'GetDCEx';
  2204. function GetDesktopWindow:HWND; external KernelDLL name 'GetDesktopWindow';
  2205. function GetDeviceCaps(_para1:HDC; _para2:longint):longint; external KernelDLL name 'GetDeviceCaps';
  2206. function GetDialogBaseUnits:longint; external KernelDLL name 'GetDialogBaseUnits';
  2207. function GetDIBColorTable(_para1:HDC; _para2:UINT; _para3:UINT; var _para4:RGBQUAD):UINT; external KernelDLL name 'GetDIBColorTable';
  2208. function GetDiskFreeSpaceEx(lpDirectoryName:LPCWSTR; lpFreeBytesAvailableToCaller:PULARGE_INTEGER; lpTotalNumberOfBytes:PULARGE_INTEGER; lpTotalNumberOfFreeBytes:PULARGE_INTEGER):WINBOOL; external KernelDLL name 'GetDiskFreeSpaceExW';
  2209. function GetDiskFreeSpaceExW(lpDirectoryName:LPCWSTR; lpFreeBytesAvailableToCaller:PULARGE_INTEGER; lpTotalNumberOfBytes:PULARGE_INTEGER; lpTotalNumberOfFreeBytes:PULARGE_INTEGER):WINBOOL; external KernelDLL name 'GetDiskFreeSpaceExW';
  2210. function GetDlgCtrlID(hWnd:HWND):longint; external KernelDLL name 'GetDlgCtrlID';
  2211. function GetDlgItem(hDlg:HWND; nIDDlgItem:longint):HWND; external KernelDLL name 'GetDlgItem';
  2212. function GetDlgItemInt(hDlg:HWND; nIDDlgItem:longint; var lpTranslated:WINBOOL; bSigned:WINBOOL):UINT; external KernelDLL name 'GetDlgItemInt';
  2213. function GetDlgItemText(hDlg:HWND; nIDDlgItem:longint; lpString:LPWSTR; nMaxCount:longint):UINT; external KernelDLL name 'GetDlgItemTextW';
  2214. function GetDlgItemTextW(hDlg:HWND; nIDDlgItem:longint; lpString:LPWSTR; nMaxCount:longint):UINT; external KernelDLL name 'GetDlgItemTextW';
  2215. function GetDoubleClickTime:UINT; external KernelDLL name 'GetDoubleClickTime';
  2216. function GetExitCodeProcess(hProcess:HANDLE; lpExitCode:LPDWORD):WINBOOL; external KernelDLL name 'GetExitCodeProcess';
  2217. function GetExitCodeThread(hThread:HANDLE; lpExitCode:LPDWORD):WINBOOL; external KernelDLL name 'GetExitCodeThread';
  2218. function GetFocus:HWND; external KernelDLL name 'GetFocus';
  2219. function GetForegroundWindow:HWND; external KernelDLL name 'GetForegroundWindow';
  2220. function GetFileAttributes(lpFileName:LPCWSTR):DWORD; external KernelDLL name 'GetFileAttributesW';
  2221. function GetFileAttributesW(lpFileName:LPCWSTR):DWORD; external KernelDLL name 'GetFileAttributesW';
  2222. function GetFileAttributesEx(lpFileName:LPCWSTR; fInfoLevelId:GET_FILEEX_INFO_LEVELS; lpFileInformation:LPVOID):WINBOOL; external KernelDLL name 'GetFileAttributesExW'; //+winbase
  2223. function GetFileAttributesExW(lpFileName:LPCWSTR; fInfoLevelId:GET_FILEEX_INFO_LEVELS; lpFileInformation:LPVOID):WINBOOL; external KernelDLL name 'GetFileAttributesExW'; //+winbase
  2224. function GetFileInformationByHandle(hFile:HANDLE; lpFileInformation:LPBY_HANDLE_FILE_INFORMATION):WINBOOL; external KernelDLL name 'GetFileInformationByHandle';
  2225. function GetFileSize(hFile:HANDLE; lpFileSizeHigh:LPDWORD):DWORD; external KernelDLL name 'GetFileSize';
  2226. function GetFileTime(hFile:HANDLE; lpCreationTime:LPFILETIME; lpLastAccessTime:LPFILETIME; lpLastWriteTime:LPFILETIME):WINBOOL; external KernelDLL name 'GetFileTime';
  2227. function GetFileVersionInfoSize(lptstrFilename:LPWSTR; lpdwHandle:LPDWORD):DWORD; external KernelDLL name 'GetFileVersionInfoSizeW';
  2228. function GetFileVersionInfoSize(lptstrFilename:LPWSTR; var dwHandle: DWORD):DWORD; external KernelDLL name 'GetFileVersionInfoSizeW';
  2229. function GetFileVersionInfoSizeW(lptstrFilename:LPWSTR; lpdwHandle:LPDWORD):DWORD; external KernelDLL name 'GetFileVersionInfoSizeW';
  2230. function GetFileVersionInfoSizeW(lptstrFilename:LPWSTR; var dwHandle:DWORD):DWORD; external KernelDLL name 'GetFileVersionInfoSizeW';
  2231. function GetFileVersionInfo(lptstrFilename:LPWSTR; dwHandle:DWORD; dwLen:DWORD; lpData:LPVOID):WINBOOL; external KernelDLL name 'GetFileVersionInfoW';
  2232. function GetFileVersionInfoW(lptstrFilename:LPWSTR; dwHandle:DWORD; dwLen:DWORD; lpData:LPVOID):WINBOOL; external KernelDLL name 'GetFileVersionInfoW';
  2233. function GetIdleTime:DWORD; external KernelDLL name 'GetIdleTime'; // index 399
  2234. function GetKeyboardLayout(dwLayout:DWORD):HKL; external KernelDLL name 'GetKeyboardLayout';
  2235. function GetKeyboardLayoutList(nBuff:longint; var lpList:HKL):UINT; external KernelDLL name 'GetKeyboardLayoutList';
  2236. function GetKeyboardLayoutName(pwszKLID:LPWSTR):WINBOOL; external KernelDLL name 'GetKeyboardLayoutNameW';
  2237. function GetKeyboardLayoutNameW(pwszKLID:LPWSTR):WINBOOL; external KernelDLL name 'GetKeyboardLayoutNameW';
  2238. function GetKeyboardStatus:DWORD; external KernelDLL name 'GetKeyboardStatus'; // index 488
  2239. function GetKeyboardType(nTypeFlag:longint):longint; external KernelDLL name 'GetKeyboardType';
  2240. function GetKeyState(nVirtKey:longint):SHORT; external KernelDLL name 'GetKeyState';
  2241. function GetLastError:DWORD; external KernelDLL name 'GetLastError';
  2242. function GetLocaleInfo(Locale:LCID; LCType:LCTYPE; lpLCData:LPWSTR; cchData:longint):longint; external KernelDLL name 'GetLocaleInfoW';
  2243. function GetLocaleInfoW(Locale:LCID; LCType:LCTYPE; lpLCData:LPWSTR; cchData:longint):longint; external KernelDLL name 'GetLocaleInfoW';
  2244. procedure GetLocalTime(lpSystemTime:LPSYSTEMTIME); external KernelDLL name 'GetLocalTime';
  2245. function GetMenuItemInfo(_para1:HMENU; _para2:UINT; _para3:WINBOOL; _para4:LPMENUITEMINFO):WINBOOL; external KernelDLL name 'GetMenuItemInfoW';
  2246. function GetMenuItemInfoW(_para1:HMENU; _para2:UINT; _para3:WINBOOL; _para4:LPMENUITEMINFO):WINBOOL; external KernelDLL name 'GetMenuItemInfoW';
  2247. function GetMessage(lpMsg:LPMSG; hWnd:HWND; wMsgFilterMin:UINT; wMsgFilterMax:UINT):WINBOOL; external KernelDLL name 'GetMessageW';
  2248. function GetMessageW(lpMsg:LPMSG; hWnd:HWND; wMsgFilterMin:UINT; wMsgFilterMax:UINT):WINBOOL; external KernelDLL name 'GetMessageW';
  2249. function GetMessagePos:DWORD; external KernelDLL name 'GetMessagePos';
  2250. function GetMessageQueueReadyTimeStamp(hWnd:HWND):DWORD; external KernelDLL name 'GetMessageQueueReadyTimeStamp'; // index 4C3
  2251. function GetMessageSource:UINT; external KernelDLL name 'GetMessageSource';// index 4BF
  2252. function GetModuleFileName(hModule:HMODULE; lpFilename:LPWSTR; nSize:DWORD):DWORD; external KernelDLL name 'GetModuleFileNameW';
  2253. function GetModuleFileNameW(hModule:HMODULE; lpFilename:LPWSTR; nSize:DWORD):DWORD; external KernelDLL name 'GetModuleFileNameW';
  2254. function GetModuleHandle(lpModuleName:LPCWSTR):HMODULE; external KernelDLL name 'GetModuleHandleW';
  2255. function GetModuleHandleW(lpModuleName:LPCWSTR):HMODULE; external KernelDLL name 'GetModuleHandleW';
  2256. function GetMouseMovePoints(pptBuf:PPOINT; nBufPoints:UINT; pnPointsRetrieved:PUINT):BOOL; external KernelDLL name 'GetMouseMovePoints'; // index 481
  2257. function GetNearestColor(_para1:HDC; _para2:COLORREF):COLORREF; external KernelDLL name 'GetNearestColor';
  2258. function GetNearestPaletteIndex(_para1:HPALETTE; _para2:COLORREF):UINT; external KernelDLL name 'GetNearestPaletteIndex';
  2259. function GetNextDlgGroupItem(hDlg:HWND; hCtl:HWND; bPrevious:WINBOOL):HWND; external KernelDLL name 'GetNextDlgGroupItem';
  2260. function GetNextDlgTabItem(hDlg:HWND; hCtl:HWND; bPrevious:WINBOOL):HWND; external KernelDLL name 'GetNextDlgTabItem';
  2261. function GetNumberFormat(Locale:LCID; dwFlags:DWORD; lpValue:LPCWSTR; lpFormat:PNUMBERFMT; lpNumberStr:LPWSTR;cchNumber:longint):longint; external KernelDLL name 'GetNumberFormatW';
  2262. function GetNumberFormatW(Locale:LCID; dwFlags:DWORD; lpValue:LPCWSTR; lpFormat:PNUMBERFMT; lpNumberStr:LPWSTR;cchNumber:longint):longint; external KernelDLL name 'GetNumberFormatW';
  2263. function GetObject(_para1:HGDIOBJ; _para2:longint; _para3:LPVOID):longint; external KernelDLL name 'GetObjectW';
  2264. function GetObjectW(_para1:HGDIOBJ; _para2:longint; _para3:LPVOID):longint; external KernelDLL name 'GetObjectW';
  2265. function GetObjectType(h:HGDIOBJ):DWORD; external KernelDLL name 'GetObjectType';
  2266. function GetOEMCP:UINT; external KernelDLL name 'GetOEMCP';
  2267. function GetOpenClipboardWindow:HWND; external KernelDLL name 'GetOpenClipboardWindow';
  2268. function GetOpenFileName(_para1:LPOPENFILENAMEW):WINBOOL; external KernelDLL name 'GetOpenFileNameW';
  2269. function GetOpenFileNameW(_para1:LPOPENFILENAMEW):WINBOOL; external KernelDLL name 'GetOpenFileNameW';
  2270. function GetPaletteEntries(_para1:HPALETTE; _para2:UINT; _para3:UINT; _para4:LPPALETTEENTRY):UINT; external KernelDLL name 'GetPaletteEntries';
  2271. function GetParent(hWnd:HWND):HWND; external KernelDLL name 'GetParent';
  2272. function GetPasswordActive:BOOL; external KernelDLL name 'GetPasswordActive'; // index 10D
  2273. function GetPriorityClipboardFormat(var paFormatPriorityList:UINT; cFormats:longint):longint; external KernelDLL name 'GetPriorityClipboardFormat';
  2274. function GetPixel(_para1:HDC; _para2:longint; _para3:longint):COLORREF; external KernelDLL name 'GetPixel';
  2275. function GetProcAddressA(hModule:HINST; lpProcName:LPCSTR):FARPROC; external KernelDLL name 'GetProcAddressA';
  2276. function GetProcAddress(hModule:HINST; lpProcName:LPCWSTR):FARPROC; external KernelDLL name 'GetProcAddressW';
  2277. function GetProcAddressW(hModule:HINST; lpProcName:LPCWSTR):FARPROC; external KernelDLL name 'GetProcAddressW';
  2278. function GetProcessHeap:HANDLE; external KernelDLL name 'GetProcessHeap';
  2279. function GetProcessVersion(ProcessId:DWORD):DWORD; external KernelDLL name 'GetProcessVersion'; // index 32F
  2280. function GetDllVersion(hMod:HMODULE):DWORD;
  2281. function GetProp(hWnd:HWND; lpString:LPCWSTR):HANDLE; external KernelDLL name 'GetProp';
  2282. function GetQueueStatus(flags:UINT):DWORD; external KernelDLL name 'GetQueueStatus';
  2283. function GetRegionData(_para1:HRGN; _para2:DWORD; _para3:LPRGNDATA):DWORD; external KernelDLL name 'GetRegionData';
  2284. function GetRgnBox(_para1:HRGN; _para2:LPRECT):longint; external KernelDLL name 'GetRgnBox';
  2285. function GetSaveFileName(_para1:LPOPENFILENAMEW):WINBOOL; external KernelDLL name 'GetSaveFileNameW';
  2286. function GetSaveFileNameW(_para1:LPOPENFILENAMEW):WINBOOL; external KernelDLL name 'GetSaveFileNameW';
  2287. function GetScrollInfo(_para1:HWND; _para2:longint; _para3:LPSCROLLINFO):WINBOOL; external KernelDLL name 'GetScrollInfo';
  2288. function GetScrollPos(hWnd: HWND; nBar: LongInt): LongInt;
  2289. function GetScrollRange(hWnd: HWND; nBar: Integer; var lpMinPos, lpMaxPos: LongInt): BOOL;
  2290. function SHGetSpecialFolderPath(hwndOwner: HWND; lpszPath: LPTSTR; nFolder: LongInt; fCreate: BOOL): BOOL;
  2291. external KernelDLL name 'SHGetSpecialFolderPath';
  2292. function GetStockObject(_para1:longint):HGDIOBJ; external KernelDLL name 'GetStockObject';
  2293. function GetStringTypeEx(Locale:LCID; dwInfoType:DWORD; lpSrcStr:LPCWSTR; cchSrc:longint; lpCharType:LPWORD):WINBOOL; external KernelDLL name 'GetStringTypeExW';
  2294. function GetStringTypeExW(Locale:LCID; dwInfoType:DWORD; lpSrcStr:LPCWSTR; cchSrc:longint; lpCharType:LPWORD):WINBOOL; external KernelDLL name 'GetStringTypeExW';
  2295. function GetSubMenu(hMenu:HMENU; nPos:longint):HMENU; external KernelDLL name 'GetSubMenu';
  2296. function GetSysColor(nIndex:longint):DWORD; external KernelDLL name 'GetSysColor';
  2297. function GetSysColorBrush(nIndex:longint):HBRUSH; external KernelDLL name 'GetSysColorBrush';
  2298. function GetSystemDefaultLangID:LANGID; external KernelDLL name 'GetSystemDefaultLangID';
  2299. function GetSystemDefaultLCID:LCID; external KernelDLL name 'GetSystemDefaultLCID';
  2300. function GetSystemDefaultUILanguage:LANGID; external KernelDLL name 'GetSystemDefaultUILanguage'; // index 14A
  2301. procedure GetSystemInfo(lpSystemInfo:LPSYSTEM_INFO); external KernelDLL name 'GetSystemInfo';
  2302. function GetSystemMemoryDivision(lpdwStorePages:LPDWORD; lpdwRamPages:LPDWORD; lpdwPageSize:LPDWORD):BOOL; external KernelDLL name 'GetSystemMemoryDivision'; // index 17C
  2303. function GetSystemMetrics(nIndex:longint):longint; external KernelDLL name 'GetSystemMetrics';
  2304. procedure GetSystemTime(lpSystemTime:LPSYSTEMTIME); external KernelDLL name 'GetSystemTime';
  2305. function GetSystemPaletteEntries(_para1:HDC; _para2:UINT; _para3:UINT; _para4:LPPALETTEENTRY):UINT; external KernelDLL name 'GetSystemPaletteEntries';
  2306. function GetTempFileName(lpPathName:LPCWSTR; lpPrefixString:LPCWSTR; uUnique:UINT; lpTempFileName:LPWSTR):UINT; external KernelDLL name 'GetTempFileNameW';
  2307. function GetTempFileNameW(lpPathName:LPCWSTR; lpPrefixString:LPCWSTR; uUnique:UINT; lpTempFileName:LPWSTR):UINT; external KernelDLL name 'GetTempFileNameW';
  2308. function GetTempPath(nBufferLength:DWORD; lpBuffer:LPWSTR):DWORD; external KernelDLL name 'GetTempPathW';
  2309. function GetTempPathW(nBufferLength:DWORD; lpBuffer:LPWSTR):DWORD; external KernelDLL name 'GetTempPathW';
  2310. function GetTextAlign(_para1:HDC):UINT; external KernelDLL name 'GetTextAlign';
  2311. function GetTextColor(_para1:HDC):COLORREF; external KernelDLL name 'GetTextColor';
  2312. function GetTextExtentPoint(_para1:HDC; _para2:LPCWSTR; _para3:longint; _para4:LPSIZE):WINBOOL;
  2313. function GetTextExtentPoint32(_para1:HDC; _para2:LPCWSTR; _para3:longint; _para4:LPSIZE):WINBOOL;
  2314. function GetTextExtentExPoint(_para1:HDC; _para2:LPCWSTR; _para3:longint; _para4:longint; _para5:LPINT;_para6:LPINT; _para7:LPSIZE):WINBOOL; external KernelDLL name 'GetTextExtentExPointW';
  2315. function GetTextExtentExPointW(_para1:HDC; _para2:LPCWSTR; _para3:longint; _para4:longint; _para5:LPINT;_para6:LPINT; _para7:LPSIZE):WINBOOL; external KernelDLL name 'GetTextExtentExPointW';
  2316. function GetTextFace(_para1:HDC; _para2:longint; _para3:LPWSTR):longint; external KernelDLL name 'GetTextFaceW';
  2317. function GetTextFaceW(_para1:HDC; _para2:longint; _para3:LPWSTR):longint; external KernelDLL name 'GetTextFaceW';
  2318. function GetTextMetrics(_para1:HDC; _para2:LPTEXTMETRICW):WINBOOL; external KernelDLL name 'GetTextMetricsW';
  2319. function GetTextMetricsW(_para1:HDC; _para2:LPTEXTMETRICW):WINBOOL; external KernelDLL name 'GetTextMetricsW';
  2320. function GetThreadContext(hThread:HANDLE; lpContext:LPCONTEXT):WINBOOL; external KernelDLL name 'GetThreadContext';
  2321. function GetThreadPriority(hThread:HANDLE):longint; external KernelDLL name 'GetThreadPriority';
  2322. function GetThreadTimes(hThread:HANDLE; lpCreationTime:LPFILETIME; lpExitTime:LPFILETIME; lpKernelTime:LPFILETIME; lpUserTime:LPFILETIME):WINBOOL; external KernelDLL name 'GetThreadTimes';
  2323. function GetTickCount:DWORD; external KernelDLL name 'GetTickCount';
  2324. function GetTimeFormat(Locale:LCID; dwFlags:DWORD; lpTime:LPSYSTEMTIME; lpFormat:LPCWSTR; lpTimeStr:LPWSTR;cchTime:longint):longint; external KernelDLL name 'GetTimeFormatW';
  2325. function GetTimeFormatW(Locale:LCID; dwFlags:DWORD; lpTime:LPSYSTEMTIME; lpFormat:LPCWSTR; lpTimeStr:LPWSTR;cchTime:longint):longint; external KernelDLL name 'GetTimeFormatW';
  2326. function GetTimeZoneInformation(lpTimeZoneInformation:LPTIME_ZONE_INFORMATION):DWORD; external KernelDLL name 'GetTimeZoneInformation';
  2327. function GetUpdateRect(hWnd:HWND; lpRect:LPRECT; bErase:WINBOOL):WINBOOL; external KernelDLL name 'GetUpdateRect';
  2328. function GetUpdateRgn(hWnd:HWND; hRgn:HRGN; bErase:WINBOOL):longint; external KernelDLL name 'GetUpdateRgn';
  2329. function GetUserDefaultLangID:LANGID; external KernelDLL name 'GetUserDefaultLangID';
  2330. function GetUserDefaultLCID:LCID; external KernelDLL name 'GetUserDefaultLCID';
  2331. function GetUserDefaultUILanguage:LANGID; external KernelDLL name 'GetUserDefaultUILanguage'; // index 14B
  2332. function GetUserNameEx(NameFormat:EXTENDED_NAME_FORMAT; lpNameBuffer:LPWSTR; nSize:PULONG):WINBOOL; external KernelDLL name 'GetUserNameExW';
  2333. function GetUserNameExW(NameFormat:EXTENDED_NAME_FORMAT; lpNameBuffer:LPWSTR; nSize:PULONG):WINBOOL; external KernelDLL name 'GetUserNameExW';
  2334. function GetVersionEx(VersionInformation:LPOSVERSIONINFOW):WINBOOL; external KernelDLL name 'GetVersionExW';
  2335. function GetVersionExW(VersionInformation:LPOSVERSIONINFOW):WINBOOL; external KernelDLL name 'GetVersionExW';
  2336. function GetWindow(hWnd:HWND; uCmd:UINT):HWND; external KernelDLL name 'GetWindow';
  2337. function GetWindowDC(hWnd:HWND):HDC; external KernelDLL name 'GetWindowDC';
  2338. function GetWindowRgn(hWnd:HWND; hRgn:HRGN):longint; external KernelDLL name 'GetWindowRgn';
  2339. function GetWindowRect(hWnd:HWND; lpRect:LPRECT):WINBOOL; external KernelDLL name 'GetWindowRect';
  2340. function GetWindowText(hWnd:HWND; lpString:LPWSTR; nMaxCount:longint):longint; external KernelDLL name 'GetWindowTextW';
  2341. function GetWindowTextW(hWnd:HWND; lpString:LPWSTR; nMaxCount:longint):longint; external KernelDLL name 'GetWindowTextW';
  2342. function GetWindowTextLength(hWnd:HWND):longint; external KernelDLL name 'GetWindowTextLengthW';
  2343. function GetWindowTextLengthW(hWnd:HWND):longint; external KernelDLL name 'GetWindowTextLengthW';
  2344. function GetWindowThreadProcessId(hWnd:HWND; lpdwProcessId:LPDWORD):DWORD; external KernelDLL name 'GetWindowThreadProcessId';
  2345. function GetWindowLong(hWnd:HWND; nIndex:longint):LONG; external KernelDLL name 'GetWindowLongW';
  2346. function GetWindowLongW(hWnd:HWND; nIndex:longint):LONG; external KernelDLL name 'GetWindowLongW';
  2347. function GetStdioPathW(id: DWORD ; pwszBuf:LPWSTR ; lpdwLen:LPDWORD):WINBOOL; external KernelDLL name 'GetStdioPathW';
  2348. function GlobalAddAtom(lpString:LPCWSTR):ATOM; external KernelDLL name 'GlobalAddAtomW';
  2349. function GlobalAddAtomW(lpString:LPCWSTR):ATOM; external KernelDLL name 'GlobalAddAtomW';
  2350. function GlobalAllocPtr(flags,cb:DWord):Pointer;
  2351. function GlobalAlloc(uFlags:UINT; dwBytes:DWORD):HGLOBAL;
  2352. function GlobalDeleteAtom(nAtom:ATOM):ATOM; external KernelDLL name 'GlobalDeleteAtom';
  2353. function GlobalDiscard(hglbMem:HGLOBAL):HGLOBAL;
  2354. function GlobalFindAtom(lpString:LPCWSTR):ATOM; external KernelDLL name 'GlobalFindAtomW';
  2355. function GlobalFindAtomW(lpString:LPCWSTR):ATOM; external KernelDLL name 'GlobalFindAtomW';
  2356. function GlobalFree(hMem:HGLOBAL):HGLOBAL;
  2357. function GlobalFreePtr(lp:Pointer):Pointer;
  2358. function GlobalHandle(pMem:LPCVOID):HGLOBAL;
  2359. function GlobalLockPtr(lp:pointer):Pointer;
  2360. function GlobalLock(hMem:HGLOBAL):LPVOID;
  2361. function GlobalReAlloc(hMem:HGLOBAL; dwBytes:DWORD; uFlags:UINT):HGLOBAL;
  2362. function GlobalSize(hMem:HGLOBAL):DWORD;
  2363. function GlobalUnlock(hMem:HGLOBAL):WINBOOL;
  2364. procedure GlobalMemoryStatus(lpBuffer:LPMEMORYSTATUS); external KernelDLL name 'GlobalMemoryStatus';
  2365. function GlobalPtrHandle(lp:pointer):Pointer;
  2366. function GlobalUnlockPtr(lp:pointer):Pointer;
  2367. function GwesPowerDown: WINBOOL; external KernelDLL name 'GwesPowerDown';
  2368. procedure GwesPowerOffSystem; external KernelDLL name 'GwesPowerOffSystem';
  2369. procedure GwesPowerUp(bool: WINBOOL); external KernelDLL name 'GwesPowerUp';
  2370. function Header_DeleteItem(hwndHD:HWND;index : longint) : WINBOOL;
  2371. function Header_GetItem(hwndHD:HWND;index:longint;var hdi : HD_ITEM) : WINBOOL;
  2372. function Header_GetItemCount(hwndHD : HWND) : longint;
  2373. function Header_InsertItem(hwndHD:HWND;index : longint;var hdi : HD_ITEM) : longint;
  2374. function Header_Layout(hwndHD:HWND;var layout : HD_LAYOUT) : WINBOOL;
  2375. function Header_SetItem(hwndHD:HWND;index : longint;var hdi : HD_ITEM) : WINBOOL;
  2376. function HeapAlloc(hHeap:HANDLE; dwFlags:DWORD; dwBytes:DWORD):LPVOID; external KernelDLL name 'HeapAlloc';
  2377. function HeapAllocTrace(hHeap:HANDLE; dwFlags:DWORD; dwBytes:DWORD; dwLineNum:DWORD; szFileName:PCHAR):LPVOID; external KernelDLL name 'HeapAllocTrace'; //+winbase
  2378. function HeapCreate(flOptions:DWORD; dwInitialSize:DWORD; dwMaximumSize:DWORD):HANDLE; external KernelDLL name 'HeapCreate';
  2379. function HeapDestroy(hHeap:HANDLE):WINBOOL; external KernelDLL name 'HeapDestroy';
  2380. function HeapFree(hHeap:HANDLE; dwFlags:DWORD; lpMem:LPVOID):WINBOOL; external KernelDLL name 'HeapFree';
  2381. function HeapReAlloc(hHeap:HANDLE; dwFlags:DWORD; lpMem:LPVOID; dwBytes:DWORD):LPVOID; external KernelDLL name 'HeapReAlloc';
  2382. function HeapSize(hHeap:HANDLE; dwFlags:DWORD; lpMem:LPCVOID):DWORD; external KernelDLL name 'HeapSize';
  2383. function HeapValidate(hHeap:HANDLE; dwFlags:DWORD; lpMem:LPCVOID):WINBOOL; external KernelDLL name 'HeapValidate';
  2384. function HideCaret(hWnd:HWND):WINBOOL; external KernelDLL name 'HideCaret';
  2385. function ImageList_Add(himl:HIMAGELIST; hbmImage:HBITMAP; hbmMask:HBITMAP):longint; external KernelDLL name 'ImageList_Add';
  2386. function ImageList_AddIcon(himl:HIMAGELIST; hicon:HICON):longint;
  2387. function ImageList_AddMasked(himl:HIMAGELIST; hbmImage:HBITMAP; crMask:COLORREF):longint; external KernelDLL name 'ImageList_AddMasked';
  2388. function ImageList_BeginDrag(himlTrack:HIMAGELIST; iTrack:longint; dxHotspot:longint; dyHotspot:longint):WINBOOL; external KernelDLL name 'ImageList_BeginDrag';
  2389. function ImageList_Create(cx:longint; cy:longint; flags:UINT; cInitial:longint; cGrow:longint):HIMAGELIST; external KernelDLL name 'ImageList_Create';
  2390. function ImageList_Destroy(himl:HIMAGELIST):WINBOOL; external KernelDLL name 'ImageList_Destroy';
  2391. function ImageList_DragEnter(hwndLock:HWND; x:longint; y:longint):WINBOOL; external KernelDLL name 'ImageList_DragEnter';
  2392. function ImageList_DragLeave(hwndLock:HWND):WINBOOL; external KernelDLL name 'ImageList_DragLeave';
  2393. function ImageList_DragMove(x:longint; y:longint):WINBOOL; external KernelDLL name 'ImageList_DragMove';
  2394. function ImageList_DragShowNolock(fShow:WINBOOL):WINBOOL; external KernelDLL name 'ImageList_DragShowNolock';
  2395. function ImageList_Draw(himl:HIMAGELIST; i:longint; hdcDst:HDC; x:longint; y:longint;fStyle:UINT):WINBOOL; external KernelDLL name 'ImageList_Draw';
  2396. function ImageList_DrawEx(himl:HIMAGELIST; i:longint; hdcDst:HDC; x:longint; y:longint;dx:longint; dy:longint; rgbBk:COLORREF; rgbFg:COLORREF; fStyle:UINT):WINBOOL; external KernelDLL name 'ImageList_DrawEx';
  2397. function ImageList_DrawIndirect(pimldp:PIMAGELISTDRAWPARAMS):WINBOOL; external KernelDLL name 'ImageList_DrawIndirect'; //+commctrl
  2398. procedure ImageList_EndDrag; external KernelDLL name 'ImageList_EndDrag';
  2399. function ImageList_ExtractIcon(Instance: THandle; ImageList: HIMAGELIST; Image: LongInt): HIcon;
  2400. function ImageList_GetBkColor(himl:HIMAGELIST):COLORREF; external KernelDLL name 'ImageList_GetBkColor';
  2401. function ImageList_GetDragImage(ppt:LPPOINT; pptHotspot:LPPOINT):HIMAGELIST; external KernelDLL name 'ImageList_GetDragImage';
  2402. function ImageList_GetIcon(himl:HIMAGELIST; i:longint; flags:UINT):HICON; external KernelDLL name 'ImageList_GetIcon';
  2403. function ImageList_GetIconSize(himl:HIMAGELIST; var cx:longint; var cy:longint):WINBOOL; external KernelDLL name 'ImageList_GetIconSize';
  2404. function ImageList_GetImageCount(himl:HIMAGELIST):longint; external KernelDLL name 'ImageList_GetImageCount';
  2405. function ImageList_GetImageInfo(himl:HIMAGELIST; i:longint; var pImageInfo:IMAGEINFO):WINBOOL; external KernelDLL name 'ImageList_GetImageInfo';
  2406. function ImageList_LoadBitmap(Instance: THandle; Bmp: LPCTSTR; CX, Grow: LongInt; Mask: TColorRef): HImageList;
  2407. function ImageList_LoadImage(hi:HINST; lpbmp:LPCTSTR; cx:longint; cGrow:longint; crMask:COLORREF;uType:UINT; uFlags:UINT):HIMAGELIST; external KernelDLL name 'ImageList_LoadImage';
  2408. function ImageList_Merge(himl1:HIMAGELIST; i1:longint; himl2:HIMAGELIST; i2:longint; dx:longint;dy:longint):HIMAGELIST; external KernelDLL name 'ImageList_Merge';
  2409. function ImageList_Replace(himl:HIMAGELIST; i:longint; hbmImage:HBITMAP; hbmMask:HBITMAP):WINBOOL; external KernelDLL name 'ImageList_Replace';
  2410. function ImageList_ReplaceIcon(himl:HIMAGELIST; i:longint; hicon:HICON):longint; external KernelDLL name 'ImageList_ReplaceIcon';
  2411. function ImageList_Remove(himl:HIMAGELIST; i:longint):WINBOOL; external KernelDLL name 'ImageList_Remove';
  2412. function ImageList_SetBkColor(himl:HIMAGELIST; clrBk:COLORREF):COLORREF; external KernelDLL name 'ImageList_SetBkColor';
  2413. function ImageList_SetDragCursorImage(himlDrag:HIMAGELIST; iDrag:longint; dxHotspot:longint; dyHotspot:longint):WINBOOL; external KernelDLL name 'ImageList_SetDragCursorImage';
  2414. function ImageList_SetIconSize(himl:HIMAGELIST; cx:longint; cy:longint):WINBOOL; external KernelDLL name 'ImageList_SetIconSize';
  2415. function ImageList_SetImageCount(himl: HIMAGELIST; uNewCount: UINT): longint; external KernelDLL name 'ImageList_SetImageCount';
  2416. function ImageList_SetOverlayImage(himl:HIMAGELIST; iImage:longint; iOverlay:longint):WINBOOL; external KernelDLL name 'ImageList_SetOverlayImage';
  2417. function InflateRect(lprc:LPRECT; dx:longint; dy:longint):WINBOOL; external KernelDLL name 'InflateRect';
  2418. procedure InitializeCriticalSection(lpCriticalSection:LPCRITICAL_SECTION); external KernelDLL name 'InitializeCriticalSection';
  2419. function InSendMessage:WINBOOL; external KernelDLL name 'InSendMessage';
  2420. function InsertMenu(hMenu:HMENU; uPosition:UINT; uFlags:UINT; uIDNewItem:UINT; lpNewItem:LPCWSTR):WINBOOL; external KernelDLL name 'InsertMenuW';
  2421. function InsertMenuW(hMenu:HMENU; uPosition:UINT; uFlags:UINT; uIDNewItem:UINT; lpNewItem:LPCWSTR):WINBOOL; external KernelDLL name 'InsertMenuW';
  2422. //faster functions declared in rtl, commented to avoid mixed api/rtl calls depending on units uses
  2423. //function InterlockedIncrement(lpAddend:LPLONG):LONG; external KernelDLL name 'InterlockedIncrement';
  2424. //function InterlockedDecrement(lpAddend:LPLONG):LONG; external KernelDLL name 'InterlockedDecrement';
  2425. //function InterlockedCompareExchange( var Destination:LPLONG; Exchange:LONG; Comperand:LONG):LONG; external KernelDLL name 'InterlockedCompareExchange';
  2426. //function InterlockedExchange(Target:LPLONG; Value:LONG):LONG; external KernelDLL name 'InterlockedExchange';
  2427. //function InterlockedExchange(var Target: Longint; Value:Longint):Longint; external KernelDLL name 'InterlockedExchange';
  2428. //function InterlockedExchangeAdd( Addend:LPLONG; Value:LONG):LONG; external KernelDLL name 'InterlockedExchangeAdd';
  2429. //function InterlockedTestExchange( Target:LPLONG; oldValue:LONG; newValue:LONG):LONG; external KernelDLL name 'InterlockedTestExchange';
  2430. function IntersectClipRect(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint):longint; external KernelDLL name 'IntersectClipRect';
  2431. function IntersectRect(lprcDst:LPRECT; const lprcSrc1:RECT; const lprcSrc2:RECT):WINBOOL; external KernelDLL name 'IntersectRect';
  2432. function InvalidateRect(hWnd:HWND; const lpRect:RECT; bErase:WINBOOL):WINBOOL; external KernelDLL name 'InvalidateRect';
  2433. function InvalidateRect(hWnd:HWND;lpRect:LPRECT; bErase:WINBOOL):WINBOOL; external KernelDLL name 'InvalidateRect';
  2434. function InvalidateRgn(hWnd:HWND; hRgn:HRGN; bErase:WINBOOL):WINBOOL; external KernelDLL name 'InvalidateRgn';
  2435. function InvertRect(hDC:HDC; const lprc:RECT):WINBOOL; external KernelDLL name 'InvertRect';
  2436. function IsBadReadPtr(lp:LPVOID; ucb:UINT):WINBOOL; external Kerneldll name 'IsBadReadPtr';
  2437. function IsBadWritePtr(lp:LPVOID; ucb:UINT):WINBOOL; external Kerneldll name 'IsBadWritePtr';
  2438. function IsBadCodePtr(lpfn:FARPROC):WINBOOL; external Kerneldll name 'IsBadCodePtr';
  2439. function IsChild(hWndParent:HWND; hWnd:HWND):WINBOOL; external KernelDLL name 'IsChild';
  2440. function IsClipboardFormatAvailable(format:UINT):WINBOOL; external KernelDLL name 'IsClipboardFormatAvailable';
  2441. function IsDBCSLeadByte(TestChar:BYTE):WINBOOL; external KernelDLL name 'IsDBCSLeadByte';
  2442. function IsDBCSLeadByteEx(CodePage:UINT; TestChar:BYTE):WINBOOL; external KernelDLL name 'IsDBCSLeadByteEx';
  2443. function IsDialogMessage(hDlg:HWND; lpMsg:LPMSG):WINBOOL; external KernelDLL name 'IsDialogMessageW';
  2444. function IsDialogMessageW(hDlg:HWND; lpMsg:LPMSG):WINBOOL; external KernelDLL name 'IsDialogMessageW';
  2445. function IsProcessorFeaturePresent(dwProcessorFeature:DWORD):BOOL; external KernelDLL name 'IsProcessorFeaturePresent'; // index 339
  2446. function IsRectEmpty(const lprc:RECT):WINBOOL; external KernelDLL name 'IsRectEmpty';
  2447. function IsValidCodePage(CodePage:UINT):WINBOOL; external KernelDLL name 'IsValidCodePage';
  2448. function IsValidLocale(Locale:LCID; dwFlags:DWORD):WINBOOL; external KernelDLL name 'IsValidLocale';
  2449. function IsWindow(hWnd:HWND):WINBOOL; external KernelDLL name 'IsWindow';
  2450. function IsWindowEnabled(hWnd:HWND):WINBOOL; external KernelDLL name 'IsWindowEnabled';
  2451. function IsWindowVisible(hWnd:HWND):WINBOOL; external KernelDLL name 'IsWindowVisible';
  2452. procedure keybd_event(bVk:BYTE; bScan:BYTE; dwFlags:DWORD; dwExtraInfo:DWORD); external KernelDLL name 'keybd_event';
  2453. function KillTimer(hWnd:HWND; uIDEvent:UINT):WINBOOL; external KernelDLL name 'KillTimer';
  2454. function LCMapString(Locale:LCID; dwMapFlags:DWORD; lpSrcStr:LPCWSTR; cchSrc:longint; lpDestStr:LPWSTR;cchDest:longint):longint; external KernelDLL name 'LCMapStringW';
  2455. function LCMapStringW(Locale:LCID; dwMapFlags:DWORD; lpSrcStr:LPCWSTR; cchSrc:longint; lpDestStr:LPWSTR;cchDest:longint):longint; external KernelDLL name 'LCMapStringW';
  2456. procedure LeaveCriticalSection(lpCriticalSection:LPCRITICAL_SECTION); external KernelDLL name 'LeaveCriticalSection';
  2457. function LineTo(_para1:HDC; _para2:longint; _para3:longint):WINBOOL; external KernelDLL name 'LineTo';
  2458. function ListView_Arrange(hwndLV:HWND;code : UINT) : LRESULT;
  2459. function ListView_CreateDragImage(hwnd:HWND;i : longint;lpptUpLeft : LPPOINT) : LRESULT;
  2460. function ListView_DeleteAllItems(hwnd : HWND) : LRESULT;
  2461. function ListView_DeleteColumn(hwnd:HWND;iCol : longint) : LRESULT;
  2462. function ListView_DeleteItem(hwnd:HWND;iItem : longint) : LRESULT;
  2463. function ListView_EditLabel(hwndLV:HWND;i : longint) : LRESULT;
  2464. function ListView_EnsureVisible(hwndLV:HWND;i,fPartialOK : longint) : LRESULT;
  2465. function ListView_FindItem(hwnd:HWND;iStart : longint;var lvfi : LV_FINDINFO) : longint;
  2466. function ListView_GetBkColor(hwnd : HWND) : LRESULT;
  2467. function ListView_GetCallbackMask(hwnd : HWND) : LRESULT;
  2468. function ListView_GetColumn(hwnd:HWND;iCol : longint;var col : LV_COLUMN) : LRESULT;
  2469. function ListView_GetColumnWidth(hwnd:HWND;iCol : longint) : LRESULT;
  2470. function ListView_GetCountPerPage(hwndLV : HWND) : LRESULT;
  2471. function ListView_GetEditControl(hwndLV : HWND) : LRESULT;
  2472. function ListView_GetImageList(hwnd:HWND;iImageList : wINT) : LRESULT;
  2473. function ListView_GetISearchString(hwndLV:HWND;lpsz : LPTSTR) : LRESULT;
  2474. function ListView_GetItem(hwnd:HWND;var item : LV_ITEM) : LRESULT;
  2475. function ListView_GetItemCount(hwnd : HWND) : LRESULT;
  2476. function ListView_GetItemPosition(hwndLV:HWND;i : longint;var pt : POINT) : longint;
  2477. function ListView_GetItemSpacing(hwndLV:HWND;fSmall : longint) : LRESULT;
  2478. function ListView_GetItemState(hwndLV:HWND;i,mask : longint) : LRESULT;
  2479. function ListView_GetNextItem(hwnd:HWND; iStart, flags : longint) : LRESULT;
  2480. function ListView_GetOrigin(hwndLV:HWND;var pt : POINT) : LRESULT;
  2481. function ListView_GetSelectedCount(hwndLV : HWND) : LRESULT;
  2482. function ListView_GetStringWidth(hwndLV:HWND;psz : LPCTSTR) : LRESULT;
  2483. function ListView_GetTextBkColor(hwnd : HWND) : LRESULT;
  2484. function ListView_GetTextColor(hwnd : HWND) : LRESULT;
  2485. function ListView_GetTopIndex(hwndLV : HWND) : LRESULT;
  2486. function ListView_GetViewRect(hwnd:HWND;var rc : RECT) : LRESULT;
  2487. function ListView_HitTest(hwndLV:HWND;var info : LV_HITTESTINFO) : LRESULT;
  2488. function ListView_InsertColumn(hwnd:HWND;iCol : longint;var col : LV_COLUMN) : LRESULT;
  2489. function ListView_InsertItem(hwnd:HWND;var item : LV_ITEM) : LRESULT;
  2490. function ListView_RedrawItems(hwndLV:HWND;iFirst,iLast : longint) : LRESULT;
  2491. function ListView_Scroll(hwndLV:HWND;dx,dy : longint) : LRESULT;
  2492. function ListView_SetBkColor(hwnd:HWND;clrBk : COLORREF) : LRESULT;
  2493. function ListView_SetCallbackMask(hwnd:HWND;mask : UINT) : LRESULT;
  2494. function ListView_SetColumn(hwnd:HWND;iCol : longint; var col : LV_COLUMN) : LRESULT;
  2495. function ListView_SetColumnWidth(hwnd:HWND;iCol,cx : longint) : LRESULT;
  2496. function ListView_SetImageList(hwnd:HWND;himl : longint;iImageList : HIMAGELIST) : LRESULT;
  2497. function ListView_SetItem(hwnd:HWND;var item : LV_ITEM) : LRESULT;
  2498. function ListView_SetItemCount(hwndLV:HWND;cItems : longint) : LRESULT;
  2499. function ListView_SetItemPosition(hwndLV:HWND;i,x,y : longint) : LRESULT;
  2500. function ListView_SetItemPosition32(hwndLV:HWND;i,x,y : longint) : LRESULT;
  2501. function ListView_SetItemState(hwndLV:HWND; i, data, mask:longint) : LRESULT;
  2502. function ListView_SetItemText(hwndLV:HWND; i, iSubItem_:longint;pszText_ : LPTSTR) : LRESULT;
  2503. function ListView_SetTextBkColor(hwnd:HWND;clrTextBk : COLORREF) : LRESULT;
  2504. function ListView_SetTextColor(hwnd:HWND;clrText : COLORREF) : LRESULT;
  2505. function ListView_SortItems(hwndLV:HWND;_pfnCompare:PFNLVCOMPARE;_lPrm : LPARAM) : LRESULT;
  2506. function ListView_Update(hwndLV:HWND;i : longint) : LRESULT;
  2507. function LoadAccelerators(hInstance:HINST; lpTableName:LPCWSTR):HACCEL; external KernelDLL name 'LoadAcceleratorsW';
  2508. function LoadAcceleratorsW(hInstance:HINST; lpTableName:LPCWSTR):HACCEL; external KernelDLL name 'LoadAcceleratorsW';
  2509. function LoadAnimatedCursor(hInstance:HINST; ResourceId:DWORD; cFrames:longint; FrameTimeInterval:longint):HCURSOR; external KernelDLL name 'LoadAnimatedCursor'; // index 41E
  2510. function LoadBitmap(hInstance:HINST; lpBitmapName:LPCWSTR):HBITMAP; external KernelDLL name 'LoadBitmapW';
  2511. function LoadBitmapW(hInstance:HINST; lpBitmapName:LPCWSTR):HBITMAP; external KernelDLL name 'LoadBitmapW';
  2512. function LoadCursor(hInstance:HINST; lpCursorName:LPCWSTR):HCURSOR; external KernelDLL name 'LoadCursorW';
  2513. function LoadCursorW(hInstance:HINST; lpCursorName:LPCWSTR):HCURSOR; external KernelDLL name 'LoadCursorW';
  2514. function LoadIcon(hInstance:HINST; lpIconName:LPCWSTR):HICON; external KernelDLL name 'LoadIconW';
  2515. function LoadIconW(hInstance:HINST; lpIconName:LPCWSTR):HICON; external KernelDLL name 'LoadIconW';
  2516. function LoadImage(_para1:HINST; _para2:LPCWSTR; _para3:UINT; _para4:longint; _para5:longint;_para6:UINT):HANDLE; external KernelDLL name 'LoadImageW';
  2517. function LoadImageW(_para1:HINST; _para2:LPCWSTR; _para3:UINT; _para4:longint; _para5:longint;_para6:UINT):HANDLE; external KernelDLL name 'LoadImageW';
  2518. function LoadKeyboardLayout(pwszKLID:LPCWSTR; Flags:UINT):HKL; external KernelDLL name 'LoadKeyboardLayoutW';
  2519. function LoadKeyboardLayoutW(pwszKLID:LPCWSTR; Flags:UINT):HKL; external KernelDLL name 'LoadKeyboardLayoutW';
  2520. function LoadLibrary(lpLibFileName:LPCWSTR):HINST; external KernelDLL name 'LoadLibraryW';
  2521. function LoadLibraryW(lpLibFileName:LPCWSTR):HINST; external KernelDLL name 'LoadLibraryW';
  2522. function LoadLibraryEx(lpLibFileName:LPCWSTR; hFile:HANDLE; dwFlags:DWORD):HINST; external KernelDLL name 'LoadLibraryExW';
  2523. function LoadLibraryExW(lpLibFileName:LPCWSTR; hFile:HANDLE; dwFlags:DWORD):HINST; external KernelDLL name 'LoadLibraryExW';
  2524. function LoadMenu(hInstance:HINST; lpMenuName:LPCWSTR):HMENU; external KernelDLL name 'LoadMenuW';
  2525. function LoadMenuW(hInstance:HINST; lpMenuName:LPCWSTR):HMENU; external KernelDLL name 'LoadMenuW';
  2526. function LoadResource(hModule:HINST; hResInfo:HRSRC):HGLOBAL; external KernelDLL name 'LoadResource';
  2527. function LoadString(hInstance:HINST; uID:UINT; lpBuffer:LPWSTR; nBufferMax:longint):longint; external KernelDLL name 'LoadStringW';
  2528. function LoadStringW(hInstance:HINST; uID:UINT; lpBuffer:LPWSTR; nBufferMax:longint):longint; external KernelDLL name 'LoadStringW';
  2529. function LocalAlloc(uFlags:UINT; uBytes:UINT):HLOCAL; external KernelDLL name 'LocalAlloc';
  2530. function LocalDiscard(hlocMem:HLOCAL):HLOCAL;
  2531. function LocalFileTimeToFileTime(lpLocalFileTime:LPFILETIME; lpFileTime:LPFILETIME):WINBOOL; external KernelDLL name 'LocalFileTimeToFileTime';
  2532. function LocalFree(hMem:HLOCAL):HLOCAL; external KernelDLL name 'LocalFree';
  2533. function LocalHandle(pMem:LPCVOID):HLOCAL;
  2534. function LocalLock(hMem:HLOCAL):LPVOID;
  2535. function LocalReAlloc(hMem:HLOCAL; uBytes:UINT; uFlags:UINT):HLOCAL; external KernelDLL name 'LocalReAlloc';
  2536. function LocalSize(hMem:HLOCAL):UINT; external KernelDLL name 'LocalSize';
  2537. function LocalUnlock(hMem:HLOCAL):WINBOOL;
  2538. function log(x:double):double; external KernelDLL name 'log'; // index 586
  2539. function log10(x:double):double; external KernelDLL name 'log10'; // index 587
  2540. function lstrcmp(lpString1:LPCWSTR; lpString2:LPCWSTR):longint; external KernelDLL name 'lstrcmpW';
  2541. function lstrcmpW(lpString1:LPCWSTR; lpString2:LPCWSTR):longint; external KernelDLL name 'lstrcmpW';
  2542. function lstrcmpi(lpString1:LPCWSTR; lpString2:LPCWSTR):longint; external KernelDLL name 'lstrcmpiW';
  2543. function lstrcmpiW(lpString1:LPCWSTR; lpString2:LPCWSTR):longint; external KernelDLL name 'lstrcmpiW';
  2544. function malloc(size:SIZE_T):LPVOID; external KernelDLL name 'malloc'; // index 58E
  2545. function MapCallerPtr(ptr: LPVOID; dwLen: DWORD):LPVOID; external KernelDLL name 'MapCallerPtr';
  2546. function MapDialogRect(hDlg:HWND; lpRect:LPRECT):WINBOOL; external KernelDLL name 'MapDialogRect';
  2547. function MapPtrToProcess(lpv: LPVOID; hProc: HANDLE ): LPVOID; external KernelDLL name 'MapPtrToProcess';
  2548. function MapPtrToProcWithSize(lpv: LPVOID; dwLen: DWORD; hProc: HANDLE ): LPVOID; external KernelDLL name 'MapPtrToProcWithSize';
  2549. function MapPtrUnsecure(lpv: LPVOID; hProc: HANDLE ): LPVOID; external KernelDLL name 'MapPtrUnsecure';
  2550. function MapViewOfFile(hFileMappingObject:HANDLE; dwDesiredAccess:DWORD; dwFileOffsetHigh:DWORD; dwFileOffsetLow:DWORD; dwNumberOfBytesToMap:DWORD):LPVOID;external KernelDLL name 'MapViewOfFile';
  2551. function MapVirtualKey(uCode:UINT; uMapType:UINT):UINT; external KernelDLL name 'MapVirtualKeyW';
  2552. function MapVirtualKeyW(uCode:UINT; uMapType:UINT):UINT; external KernelDLL name 'MapVirtualKeyW';
  2553. function MapWindowPoints(hWndFrom:HWND; hWndTo:HWND; lpPoints:LPPOINT; cPoints:UINT):longint; external KernelDLL name 'MapWindowPoints';
  2554. function MaskBlt(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint;_para6:HDC; _para7:longint; _para8:longint; _para9:HBITMAP; _para10:longint;_para11:longint; _para12:DWORD):WINBOOL; external KernelDLL name 'MaskBlt';
  2555. function mbstowcs(wcstr:LPWSTR; mbstr:LPCSTR; count:SIZE_T):SIZE_T; external KernelDll name 'mbstowcs'; // index 66
  2556. function memchr(buf:pointer; c:integer; count:SIZE_T):pointer; external KernelDll name 'memchr'; // index 2B
  2557. function memcmp(buf1:LPCWSTR; buf2:LPCWSTR; count:SIZE_T):integer; external KernelDll name 'memcmp'; // index 591
  2558. function memcpy(dest:pointer; src:pointer; count:SIZE_T):pointer; external KernelDll name 'memcpy';
  2559. function memmove(dest:pointer; src:pointer; count:SIZE_T):pointer; external KernelDll name 'memmove';
  2560. function memset(dest:LPWSTR; c:WideChar; count:SIZE_T):LPWSTR; external KernelDll name 'memset'; // index 595
  2561. function MessageBeep(uType:UINT):WINBOOL; external KernelDLL name 'MessageBeep';
  2562. function MessageBox(hWnd:HWND; lpText:LPCWSTR; lpCaption:LPCWSTR; uType:UINT):longint; external KernelDLL name 'MessageBoxW'; //~winuser, result declared as int
  2563. function MessageBoxW(hWnd:HWND; lpText:LPCWSTR; lpCaption:LPCWSTR; uType:UINT):longint; external KernelDLL name 'MessageBoxW'; //~winuser, result declared as int
  2564. function MonitorFromPoint(pt:POINT; dwFlags:DWORD):HMONITOR; external KernelDLL name 'MonitorFromPoint'; // index 662
  2565. function MonitorFromRect(lprc:LPRECT; dwFlags:DWORD):HMONITOR; external KernelDLL name 'MonitorFromRect'; // index 663
  2566. function MonitorFromWindow(hWin:HWND; dwFlags:DWORD):HMONITOR; external KernelDLL name 'MonitorFromWindow'; // index 664
  2567. procedure mouse_event(dwFlags:DWORD; dx:DWORD; dy:DWORD; cButtons:DWORD; dwExtraInfo:DWORD); external KernelDLL name 'mouse_event';
  2568. function MoveToEx(_para1:HDC; _para2:longint; _para3:longint; _para4:LPPOINT):WINBOOL; external KernelDLL name 'MoveToEx';
  2569. procedure MoveMemory(Destination:PVOID; Source:pointer; Length:DWORD);
  2570. function MoveFile(lpExistingFileName:LPCWSTR; lpNewFileName:LPCWSTR):WINBOOL; external KernelDLL name 'MoveFileW';
  2571. function MoveFileW(lpExistingFileName:LPCWSTR; lpNewFileName:LPCWSTR):WINBOOL; external KernelDLL name 'MoveFileW';
  2572. function MoveWindow(hWnd:HWND; X:longint; Y:longint; nWidth:longint; nHeight:longint;bRepaint:WINBOOL):WINBOOL; external KernelDLL name 'MoveWindow';
  2573. function MsgWaitForMultipleObjects(nCount:DWORD; pHandles:LPHANDLE; fWaitAll:WINBOOL; dwMilliseconds:DWORD; dwWakeMask:DWORD):DWORD;
  2574. function MsgWaitForMultipleObjectsEx(nCount:DWORD; pHandles:LPHANDLE ; dwMilliseconds:DWORD; dwWakeMask:DWORD; dwFlags:DWORD):DWORD; external KernelDLL name 'MsgWaitForMultipleObjectsEx'; //+winuser
  2575. function MultiByteToWideChar(CodePage:UINT; dwFlags:DWORD; lpMultiByteStr:LPCSTR; cchMultiByte:longint; lpWideCharStr:LPWSTR;cchWideChar:longint):longint; external KernelDLL name 'MultiByteToWideChar';
  2576. function OffsetRect(lprc:LPRECT; dx:longint; dy:longint):WINBOOL; external KernelDLL name 'OffsetRect';
  2577. function OffsetRgn(_para1:HRGN; _para2:longint; _para3:longint):longint; external KernelDLL name 'OffsetRgn';
  2578. function OpenClipboard(hWndNewOwner:HWND):WINBOOL; external KernelDLL name 'OpenClipboard';
  2579. function OpenEvent(dwDesiredAccess:DWORD; bInheritHandle:WINBOOL; lpName:LPCWSTR):HANDLE; external KernelDLL name 'OpenEventW';
  2580. function OpenEventW(dwDesiredAccess:DWORD; bInheritHandle:WINBOOL; lpName:LPCWSTR):HANDLE; external KernelDLL name 'OpenEventW';
  2581. function OpenProcess(dwDesiredAccess:DWORD; bInheritHandle:WINBOOL; dwProcessId:DWORD):HANDLE; external KernelDLL name 'OpenProcess';
  2582. procedure OutputDebugString(lpOutputString:LPCWSTR); external KernelDLL name 'OutputDebugStringW';
  2583. procedure OutputDebugStringW(lpOutputString:LPCWSTR); external KernelDLL name 'OutputDebugStringW';
  2584. function PatBlt(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint;_para6:DWORD):WINBOOL; external KernelDLL name 'PatBlt';
  2585. function PeekMessage(lpMsg:LPMSG; hWnd:HWND; wMsgFilterMin:UINT; wMsgFilterMax:UINT; wRemoveMsg:UINT):WINBOOL; external KernelDLL name 'PeekMessageW';
  2586. function PeekMessageW(lpMsg:LPMSG; hWnd:HWND; wMsgFilterMin:UINT; wMsgFilterMax:UINT; wRemoveMsg:UINT):WINBOOL; external KernelDLL name 'PeekMessageW';
  2587. function PostKeybdMessage(hWin:HWND; VKey:UINT; KeyStateFlags:UINT{KEY_STATE_FLAGS};
  2588. cCharacters:UINT; pShiftStateBuffer:PUINT; pCharacterBuffer:PUINT):BOOL; external KernelDLL name 'PostKeybdMessage'; // index 48D
  2589. function PostMessage(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):WINBOOL; external KernelDLL name 'PostMessageW';
  2590. function PostMessageW(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):WINBOOL; external KernelDLL name 'PostMessageW';
  2591. procedure PostQuitMessage(nExitCode:longint); external KernelDLL name 'PostQuitMessage';
  2592. function PostThreadMessage(idThread:DWORD; Msg:UINT; wParam:WPARAM; lParam:LPARAM):WINBOOL; external KernelDLL name 'PostThreadMessageW';
  2593. function PostThreadMessageW(idThread:DWORD; Msg:UINT; wParam:WPARAM; lParam:LPARAM):WINBOOL; external KernelDLL name 'PostThreadMessageW';
  2594. function PlayEnhMetaFile(_para1:HDC; _para2:HENHMETAFILE; const _para3:RECT):WINBOOL; external KernelDLL name 'PlayEnhMetaFile';
  2595. function Polygon(_para1:HDC; _para2:LPPOINT; _para3:longint):WINBOOL; external KernelDLL name 'Polygon';
  2596. function Polyline(_para1:HDC; _para2:LPPOINT; _para3:longint):WINBOOL; external KernelDLL name 'Polyline';
  2597. function PropSheet_AddPage(hPropSheetDlg : HWND;hpage : HPROPSHEETPAGE) : LRESULT;
  2598. function PropSheet_Apply(hPropSheetDlg : HWND) : LRESULT;
  2599. function PropSheet_CancelToClose(hPropSheetDlg : HWND) : LRESULT;
  2600. function PropSheet_Changed(hPropSheetDlg,hwndPage : HWND) : LRESULT;
  2601. function PropSheet_GetCurrentPageHwnd(hDlg : HWND) : LRESULT;
  2602. function PropSheet_GetTabControl(hPropSheetDlg : HWND) : LRESULT;
  2603. function PropSheet_IsDialogMessage(hDlg : HWND;pMsg : longint) : LRESULT;
  2604. function PropSheet_PressButton(hPropSheetDlg : HWND;iButton : longint) : LRESULT;
  2605. function PropSheet_QuerySiblings(hPropSheetDlg : HWND;param1,param2 : longint) : LRESULT;
  2606. function PropSheet_RebootSystem(hPropSheetDlg : HWND) : LRESULT;
  2607. function PropSheet_RemovePage(hPropSheetDlg : HWND;hpage : HPROPSHEETPAGE; index : longint) : LRESULT;
  2608. function PropSheet_RestartWindows(hPropSheetDlg : HWND) : LRESULT;
  2609. function PropSheet_SetCurSel(hPropSheetDlg : HWND;hpage : HPROPSHEETPAGE; index : longint) : LRESULT;
  2610. function PropSheet_SetCurSelByID(hPropSheetDlg : HWND; id : longint) : LRESULT;
  2611. function PropSheet_SetFinishText(hPropSheetDlg:HWND;lpszText : LPTSTR) : LRESULT;
  2612. function PropSheet_SetTitle(hPropSheetDlg:HWND;dwStyle:DWORD;lpszText : LPCTSTR) : LRESULT;
  2613. function PropSheet_SetWizButtons(hPropSheetDlg:HWND;dwFlags : DWORD) : LRESULT;
  2614. function PropSheet_UnChanged(hPropSheetDlg:HWND;hwndPage : HWND) : LRESULT;
  2615. function PtInRect(lprc:LPRECT; pt:POINT):WINBOOL; external KernelDLL name 'PtInRect';
  2616. function PtInRegion(_para1:HRGN; _para2:longint; _para3:longint):WINBOOL; external KernelDLL name 'PtInRegion';
  2617. function PulseEvent(hEvent:HANDLE):WINBOOL;
  2618. function PurgeComm(hFile:HANDLE; dwFlags:DWORD):WINBOOL; external KernelDLL name 'PurgeComm';
  2619. function QueryInstructionSet(dwInstructionSet:DWORD; lpdwCurrentInstructionSet:LPDWORD):BOOL; external KernelDLL name 'QueryInstructionSet'; // index 338
  2620. function QueryPerformanceCounter(lpPerformanceCount:PLARGE_INTEGER):WINBOOL; external Kerneldll name 'QueryPerformanceCounter';
  2621. function QueryPerformanceFrequency(lpFrequency:PLARGE_INTEGER):WINBOOL; external Kerneldll name 'QueryPerformanceFrequency';
  2622. procedure RaiseException(dwExceptionCode:DWORD; dwExceptionFlags:DWORD; nNumberOfArguments:DWORD; lpArguments:LPDWORD); external KernelDLL name 'RaiseException';
  2623. function ReadFile(hFile:HANDLE; lpBuffer:LPVOID; nNumberOfBytesToRead:DWORD; lpNumberOfBytesRead:LPDWORD; lpOverlapped:LPOVERLAPPED):BOOL; external KernelDLL name 'ReadFile'; // index F4
  2624. function ReadProcessMemory(hProcess:HANDLE; lpBaseAddress:LPCVOID; lpBuffer:LPVOID; nSize:DWORD; lpNumberOfBytesRead:LPDWORD):WINBOOL; external KernelDLL name 'ReadProcessMemory';
  2625. function RealizePalette(_para1:HDC):UINT; external KernelDLL name 'RealizePalette'; // index 52F
  2626. function realloc(memblock:pointer; _size:SIZE_T):pointer; external KernelDLL name 'realloc'; // index 59C
  2627. function RectInRegion(_para1:HRGN; const _para2:RECT):WINBOOL; external KernelDLL name 'RectInRegion';
  2628. function RectVisible(_para1:HDC; const _para2:RECT):WINBOOL; external KernelDLL name 'RectVisible';
  2629. function Rectangle(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint):WINBOOL; external KernelDLL name 'Rectangle';
  2630. function RedrawWindow(hWnd:HWND; const lprcUpdate:RECT; hrgnUpdate:HRGN; flags:UINT):WINBOOL; external KernelDLL name 'RedrawWindow';
  2631. function RedrawWindow(hWnd:HWND; lprcUpdate:LPRECT; hrgnUpdate:HRGN; flags:UINT):WINBOOL; external KernelDLL name 'RedrawWindow';
  2632. function RegisterHotKey(hWnd:HWND; anID:longint; fsModifiers:UINT; vk:UINT):WINBOOL; external KernelDLL name 'RegisterHotKey';
  2633. function RegCloseKey(hKey:HKEY):LONG; external KernelDLL name 'RegCloseKey';
  2634. function RegCreateKeyEx(hKey:HKEY; lpSubKey:LPCWSTR; Reserved:DWORD; lpClass:LPWSTR; dwOptions:DWORD;samDesired:REGSAM; lpSecurityAttributes:LPSECURITY_ATTRIBUTES; phkResult:PHKEY; lpdwDisposition:LPDWORD):LONG;
  2635. external KernelDLL name 'RegCreateKeyExW';
  2636. function RegCreateKeyExW(hKey:HKEY; lpSubKey:LPCWSTR; Reserved:DWORD; lpClass:LPWSTR; dwOptions:DWORD;samDesired:REGSAM; lpSecurityAttributes:LPSECURITY_ATTRIBUTES; phkResult:PHKEY; lpdwDisposition:LPDWORD):LONG;
  2637. external KernelDLL name 'RegCreateKeyExW';
  2638. function RegDeleteKey(hKey:HKEY; lpSubKey:LPCWSTR):LONG; external KernelDLL name 'RegDeleteKeyW';
  2639. function RegDeleteKeyW(hKey:HKEY; lpSubKey:LPCWSTR):LONG; external KernelDLL name 'RegDeleteKeyW';
  2640. function RegDeleteValue(hKey:HKEY; lpValueName:LPCWSTR):LONG; external KernelDLL name 'RegDeleteValueW';
  2641. function RegDeleteValueW(hKey:HKEY; lpValueName:LPCWSTR):LONG; external KernelDLL name 'RegDeleteValueW';
  2642. function RegEnumKeyEx(hKey:HKEY; dwIndex:DWORD; lpName:LPWSTR; lpcbName:LPDWORD; lpReserved:LPDWORD;lpClass:LPWSTR; lpcbClass:LPDWORD; lpftLastWriteTime:PFILETIME):LONG; external KernelDLL name 'RegEnumKeyExW';
  2643. function RegEnumKeyExW(hKey:HKEY; dwIndex:DWORD; lpName:LPWSTR; lpcbName:LPDWORD; lpReserved:LPDWORD;lpClass:LPWSTR; lpcbClass:LPDWORD; lpftLastWriteTime:PFILETIME):LONG; external KernelDLL name 'RegEnumKeyExW';
  2644. function RegEnumValue(hKey:HKEY; dwIndex:DWORD; lpValueName:LPWSTR; lpcbValueName:LPDWORD; lpReserved:LPDWORD;lpType:LPDWORD; lpData:pointer; lpcbData:LPDWORD):LONG; external KernelDLL name 'RegEnumValueW';
  2645. function RegEnumValueW(hKey:HKEY; dwIndex:DWORD; lpValueName:LPWSTR; lpcbValueName:LPDWORD; lpReserved:LPDWORD;lpType:LPDWORD; lpData:pointer; lpcbData:LPDWORD):LONG; external KernelDLL name 'RegEnumValueW';
  2646. function RegFlushKey(hKey:HKEY):LONG; external KernelDLL name 'RegFlushKey';
  2647. function RegisterClass(lpWndClass:LPWNDCLASS):ATOM; external KernelDLL name 'RegisterClassW';
  2648. function RegisterClassW(lpWndClass:LPWNDCLASS):ATOM; external KernelDLL name 'RegisterClassW';
  2649. function RegisterClipboardFormat(lpszFormat:LPCWSTR):UINT; external KernelDLL name 'RegisterClipboardFormatW';
  2650. function RegisterClipboardFormatW(lpszFormat:LPCWSTR):UINT; external KernelDLL name 'RegisterClipboardFormatW';
  2651. function RegisterDevice(lpszType:LPCWSTR; dwIndex:DWORD; lpszLib:LPCWSTR; dwInfo:DWORD):HANDLE; external KernelDLL name 'RegisterDevice'; // index 14F
  2652. function RegisterTaskBar(hwndTaskbar:HWND):BOOL; external KernelDLL name 'RegisterTaskBar'; // index 4D9
  2653. function RegisterTaskBarEx(hwndTaskbar:HWND; bTaskBarOnTop:BOOL):BOOL; external KernelDLL name 'RegisterTaskBarEx'; // index 4DA
  2654. function RegisterWindowMessage(lpString:LPCWSTR):UINT; external KernelDLL name 'RegisterWindowMessageW';
  2655. function RegisterWindowMessageW(lpString:LPCWSTR):UINT; external KernelDLL name 'RegisterWindowMessageW';
  2656. function RegOpenKeyEx(hKey:HKEY; lpSubKey:LPCWSTR; ulOptions:DWORD; samDesired:REGSAM; phkResult:PHKEY):LONG; external KernelDLL name 'RegOpenKeyExW';
  2657. function RegOpenKeyExW(hKey:HKEY; lpSubKey:LPCWSTR; ulOptions:DWORD; samDesired:REGSAM; phkResult:PHKEY):LONG; external KernelDLL name 'RegOpenKeyExW';
  2658. function RegQueryInfoKey(hKey:HKEY; lpClass:LPWSTR; lpcbClass:LPDWORD; lpReserved:LPDWORD; lpcSubKeys:LPDWORD;lpcbMaxSubKeyLen:LPDWORD; lpcbMaxClassLen:LPDWORD; lpcValues:LPDWORD; lpcbMaxValueNameLen:LPDWORD;
  2659. lpcbMaxValueLen:LPDWORD;lpcbSecurityDescriptor:LPDWORD; lpftLastWriteTime:PFILETIME):LONG; external KernelDLL name 'RegQueryInfoKeyW';
  2660. function RegQueryInfoKeyW(hKey:HKEY; lpClass:LPWSTR; lpcbClass:LPDWORD; lpReserved:LPDWORD; lpcSubKeys:LPDWORD;lpcbMaxSubKeyLen:LPDWORD; lpcbMaxClassLen:LPDWORD; lpcValues:LPDWORD; lpcbMaxValueNameLen:LPDWORD;
  2661. lpcbMaxValueLen:LPDWORD;lpcbSecurityDescriptor:LPDWORD; lpftLastWriteTime:PFILETIME):LONG; external KernelDLL name 'RegQueryInfoKeyW';
  2662. function RegQueryValueEx(hKey:HKEY; lpValueName:LPCWSTR; lpReserved:LPDWORD; lpType:LPDWORD; lpData:pointer;lpcbData:LPDWORD):LONG; external KernelDLL name 'RegQueryValueExW';
  2663. function RegQueryValueExW(hKey:HKEY; lpValueName:LPCWSTR; lpReserved:LPDWORD; lpType:LPDWORD; lpData:pointer;lpcbData:LPDWORD):LONG; external KernelDLL name 'RegQueryValueExW';
  2664. function RegSetValueEx(hKey:HKEY; lpValueName:LPCWSTR; Reserved:DWORD; dwType:DWORD; lpData:pointer;cbData:DWORD):LONG; external KernelDLL name 'RegSetValueExW';
  2665. function RegSetValueExW(hKey:HKEY; lpValueName:LPCWSTR; Reserved:DWORD; dwType:DWORD; lpData:pointer;cbData:DWORD):LONG; external KernelDLL name 'RegSetValueExW';
  2666. function RegReplaceKey(hKey:HKEY; lpSubKey:LPCTSTR; lpNewFile:LPCTSTR; lpOldFile:LPCTSTR):LONG; external KernelDLL name 'RegReplaceKey';
  2667. function RegSaveKey(hKey:HKEY; lpFile:LPCTSTR; lpSecurityAttributes:LPSECURITY_ATTRIBUTES):LONG; external KernelDLL name 'RegSaveKey';
  2668. function ReleaseCapture:WINBOOL; external KernelDLL name 'ReleaseCapture';
  2669. function ReleaseDC(hWnd:HWND; hDC:HDC):longint; external KernelDLL name 'ReleaseDC';
  2670. function ReleaseMutex(hMutex:HANDLE):WINBOOL; external KernelDLL name 'ReleaseMutex';
  2671. function ReleaseSemaphore(hSemaphore:HANDLE; lReleaseCount:LONG; lpPreviousCount:LPLONG):WINBOOL; external KernelDLL name 'ReleaseSemaphore';
  2672. function RemoveDirectory(lpPathName:LPCWSTR):WINBOOL; external KernelDLL name 'RemoveDirectoryW';
  2673. function RemoveDirectoryW(lpPathName:LPCWSTR):WINBOOL; external KernelDLL name 'RemoveDirectoryW';
  2674. function RemoveFontResource(_para1:LPCWSTR):WINBOOL; external KernelDLL name 'RemoveFontResourceW';
  2675. function RemoveFontResourceW(_para1:LPCWSTR):WINBOOL; external KernelDLL name 'RemoveFontResourceW';
  2676. function RemoveMenu(hMenu:HMENU; uPosition:UINT; uFlags:UINT):WINBOOL; external KernelDLL name 'RemoveMenu';
  2677. function RemoveProp(hWnd:HWND; lpString:LPCWSTR):HANDLE; external KernelDLL name 'RemoveProp';
  2678. function RequestDeviceNotifications(devclass:LPGUID; hMsgQ:HANDLE; fAll:BOOL):HANDLE; external KernelDLL name 'RequestDeviceNotifications'; // index 155
  2679. function ResetEvent(hEvent:HANDLE):WINBOOL;
  2680. function RestoreDC(_para1:HDC; _para2:longint):WINBOOL; external KernelDLL name 'RestoreDC';
  2681. function ResumeThread(hThread:HANDLE):DWORD; external KernelDLL name 'ResumeThread';
  2682. function RoundRect(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint;_para6:longint; _para7:longint):WINBOOL; external KernelDLL name 'RoundRect';
  2683. function SaveDC(_para1:HDC):longint; external KernelDLL name 'SaveDC';
  2684. function ScreenToClient(hWnd:HWND; lpPoint:LPPOINT):WINBOOL; external KernelDLL name 'ScreenToClient';
  2685. function ScrollDC(hDC:HDC; dx:longint; dy:longint; const lprcScroll:RECT; const lprcClip:RECT;hrgnUpdate:HRGN; lprcUpdate:LPRECT):WINBOOL; external KernelDLL name 'ScrollDC';
  2686. function ScrollWindowEx(hWnd:HWND; dx:longint; dy:longint; const prcScroll:RECT; const prcClip:RECT;hrgnUpdate:HRGN; prcUpdate:LPRECT; flags:UINT):longint; external KernelDLL name 'ScrollWindowEx';
  2687. function SelectClipRgn(_para1:HDC; _para2:HRGN):longint; external KernelDLL name 'SelectClipRgn';
  2688. function SelectObject(_para1:HDC; _para2:HGDIOBJ):HGDIOBJ; external KernelDLL name 'SelectObject';
  2689. function SelectPalette(_para1:HDC; _para2:HPALETTE; _para3:WINBOOL):HPALETTE; external KernelDLL name 'SelectPalette';
  2690. function SendDlgItemMessage(hDlg:HWND; nIDDlgItem:longint; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LONG; external KernelDLL name 'SendDlgItemMessageW';
  2691. function SendDlgItemMessageW(hDlg:HWND; nIDDlgItem:longint; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LONG; external KernelDLL name 'SendDlgItemMessageW';
  2692. function SendInput(nInputs:UINT; pInputs:LPINPUT; cbSize:longint):UINT; external KernelDLL name 'SendInput'; // index 482
  2693. function SendMessage(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'SendMessageW';
  2694. function SendMessageW(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT; external KernelDLL name 'SendMessageW';
  2695. function SendMessageTimeout(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM; fuFlags:UINT;uTimeout:UINT; lpdwResult:LPDWORD):LRESULT; external KernelDLL name 'SendMessageTimeout';
  2696. function SendNotifyMessage(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):WINBOOL; external KernelDLL name 'SendNotifyMessageW';
  2697. function SendNotifyMessageW(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):WINBOOL; external KernelDLL name 'SendNotifyMessageW';
  2698. function SetAbortProc(_para1:HDC; _para2:TABORTPROC):longint; external KernelDLL name 'SetAbortProc';
  2699. function SetActiveWindow(hWnd:HWND):HWND; external KernelDLL name 'SetActiveWindow';
  2700. function SetBitmapBits(_para1:HBITMAP; _para2:DWORD; _para3:pointer):LONG; external KernelDLL name 'SetBitmapBits';
  2701. function SetBkColor(_para1:HDC; _para2:COLORREF):COLORREF; external KernelDLL name 'SetBkColor';
  2702. function SetBkMode(_para1:HDC; _para2:longint):longint; external KernelDLL name 'SetBkMode';
  2703. function SetBrushOrgEx(_para1:HDC; _para2:longint; _para3:longint; _para4:LPPOINT):WINBOOL; external KernelDLL name 'SetBrushOrgEx';
  2704. function SetCapture(hWnd:HWND):HWND; external KernelDLL name 'SetCapture';
  2705. function SetCaretBlinkTime(uMSeconds:UINT):WINBOOL; external KernelDLL name 'SetCaretBlinkTime';
  2706. function SetCaretPos(X:longint; Y:longint):WINBOOL; external KernelDLL name 'SetCaretPos';
  2707. function SetClassLong(hWnd:HWND; nIndex:longint; dwNewLong:LONG):DWORD; external KernelDLL name 'SetClassLong';
  2708. function SetClassLongW(hWnd:HWND; nIndex:longint; dwNewLong:LONG):DWORD; external KernelDLL name 'SetClassLongW';
  2709. function SetClipboardData(uFormat:UINT; hMem:HWND):HANDLE; external KernelDLL name 'SetClipboardData';
  2710. function SetCommBreak(hFile:HANDLE):WINBOOL; external KernelDLL name 'SetCommBreak';
  2711. function SetCommMask(hFile:HANDLE; dwEvtMask:DWORD):WINBOOL; external KernelDLL name 'SetCommMask';
  2712. function SetCommState(hFile:HANDLE; lpDCB:LPDCB):WINBOOL; external KernelDLL name 'SetCommState';
  2713. function SetCommTimeouts(hFile:HANDLE; lpCommTimeouts:LPCOMMTIMEOUTS):WINBOOL; external KernelDLL name 'SetCommTimeouts';
  2714. function SetCursor(hCursor:HCURSOR):HCURSOR; external KernelDLL name 'SetCursor';
  2715. function SetCursorPos(X:longint; Y:longint):WINBOOL; external KernelDLL name 'SetCursorPos';
  2716. procedure SetDaylightTime(dst:DWORD); external KernelDLL name 'SetDaylightTime'; // index 33E
  2717. function SetDIBColorTable(_para1:HDC; _para2:UINT; _para3:UINT; var _para4:RGBQUAD):UINT; external KernelDLL name 'SetDIBColorTable';
  2718. function SetDIBitsToDevice(_para1:HDC; _para2:longint; _para3:longint; _para4:DWORD; _para5:DWORD;_para6:longint; _para7:longint; _para8:UINT; _para9:UINT; _para10:pointer;var _para11:BITMAPINFO; _para12:UINT):longint;
  2719. external KernelDLL name 'SetDIBitsToDevice';
  2720. function SetDlgItemInt(hDlg:HWND; nIDDlgItem:longint; uValue:UINT; bSigned:WINBOOL):WINBOOL; external KernelDLL name 'SetDlgItemInt';
  2721. function SetDlgItemText(hDlg:HWND; nIDDlgItem:longint; lpString:LPCWSTR):WINBOOL; external KernelDLL name 'SetDlgItemTextW';
  2722. function SetDlgItemTextW(hDlg:HWND; nIDDlgItem:longint; lpString:LPCWSTR):WINBOOL; external KernelDLL name 'SetDlgItemTextW';
  2723. function SetEndOfFile(hFile:HANDLE):WINBOOL; external KernelDLL name 'SetEndOfFile';
  2724. function SetEvent(hEvent:HANDLE):WINBOOL;
  2725. function SetFileAttributes(lpFileName:LPCWSTR; dwFileAttributes:DWORD):WINBOOL; external KernelDLL name 'SetFileAttributesW';
  2726. function SetFileAttributesW(lpFileName:LPCWSTR; dwFileAttributes:DWORD):WINBOOL; external KernelDLL name 'SetFileAttributesW';
  2727. function SetFilePointer(hFile:HANDLE; lDistanceToMove:LONG; lpDistanceToMoveHigh:PLONG; dwMoveMethod:DWORD):DWORD; external KernelDLL name 'SetFilePointer';
  2728. function SetFileTime(hFile:HANDLE; lpCreationTime:LPFILETIME; lpLastAccessTime:LPFILETIME; lpLastWriteTime:LPFILETIME):WINBOOL; external KernelDLL name 'SetFileTime';
  2729. function SetFocus(hWnd:HWND):HWND; external KernelDLL name 'SetFocus';
  2730. function SetForegroundWindow(hWnd:HWND):WINBOOL; external KernelDLL name 'SetForegroundWindow';
  2731. procedure SetLastError(dwErrCode:DWORD); external KernelDLL name 'SetLastError';
  2732. function SetLocaleInfo(Locale:LCID; LCType:LCTYPE; lpLCData:LPCWSTR):WINBOOL; external KernelDLL name 'SetLocaleInfoW';
  2733. function SetLocaleInfoW(Locale:LCID; LCType:LCTYPE; lpLCData:LPCWSTR):WINBOOL; external KernelDLL name 'SetLocaleInfoW';
  2734. function SetLocalTime(lpSystemTime:LPSYSTEMTIME):WINBOOL; external KernelDLL name 'SetLocalTime';
  2735. function SetMenuItemInfo(_para1:HMENU; _para2:UINT; _para3:WINBOOL; _para4:LPCMENUITEMINFO):WINBOOL; external KernelDLL name 'SetMenuItemInfoW';
  2736. function SetMenuItemInfoW(_para1:HMENU; _para2:UINT; _para3:WINBOOL; _para4:LPCMENUITEMINFO):WINBOOL; external KernelDLL name 'SetMenuItemInfoW';
  2737. function SetPaletteEntries(_para1:HPALETTE; _para2:UINT; _para3:UINT; var _para4:PALETTEENTRY):UINT; external KernelDLL name 'SetPaletteEntries';
  2738. function SetParent(hWndChild:HWND; hWndNewParent:HWND):HWND; external KernelDLL name 'SetParent';
  2739. function SetPassword(lpszOldPassword:LPWSTR; lpszNewPassword:LPWSTR):BOOL; external KernelDLL name 'SetPassword'; // index 10C
  2740. function SetPasswordActive(bActive:BOOL; lpszPassword:LPWSTR):BOOL; external KernelDLL name 'SetPasswordActive'; // index 10E
  2741. function SetPixel(_para1:HDC; _para2:longint; _para3:longint; _para4:COLORREF):COLORREF; external KernelDLL name 'SetPixel';
  2742. function SetProp(hWnd:HWND; lpString:LPCWSTR; hData:HANDLE):WINBOOL; external KernelDLL name 'SetProp';
  2743. function SetRect(lprc:LPRECT; xLeft:longint; yTop:longint; xRight:longint; yBottom:longint):WINBOOL; external KernelDLL name 'SetRect';
  2744. function SetRectEmpty(lprc:LPRECT):WINBOOL; external KernelDLL name 'SetRectEmpty';
  2745. function SetRectRgn(_para1:HRGN; _para2:longint; _para3:longint; _para4:longint; _para5:longint):WINBOOL; external KernelDLL name 'SetRectRgn';
  2746. function SetROP2(_para1:HDC; _para2:longint):longint; external KernelDLL name 'SetROP2';
  2747. function SetScrollInfo(_para1:HWND; _para2:longint; _para3:LPCSCROLLINFO; _para4:WINBOOL):longint; external KernelDLL name 'SetScrollInfo';
  2748. function SetScrollPos(hWnd:HWND; nBar:longint; nPos:longint; bRedraw:WINBOOL):longint; external KernelDLL name 'SetScrollPos';
  2749. function SetScrollRange(hWnd:HWND; nBar:longint; nMinPos:longint; nMaxPos:longint; bRedraw:WINBOOL):WINBOOL; external KernelDLL name 'SetScrollRange';
  2750. function SetStdioPathW(id: DWORD; pwszPath: LPWSTR ):WINBOOL; external KernelDLL name 'SetStdioPathW';
  2751. function SetSysColors(cElements:longint; var lpaElements:wINT; var lpaRgbValues:COLORREF):WINBOOL; external KernelDLL name 'SetSysColors';
  2752. function SetSystemTime(lpSystemTime:LPSYSTEMTIME):WINBOOL; external KernelDLL name 'SetSystemTime';
  2753. function SetTextAlign(_para1:HDC; _para2:UINT):UINT; external KernelDLL name 'SetTextAlign';
  2754. function SetTextColor(_para1:HDC; _para2:COLORREF):COLORREF; external KernelDLL name 'SetTextColor';
  2755. function SetTimer(hWnd:HWND; nIDEvent:UINT; uElapse:UINT; lpTimerFunc:TIMERPROC):UINT; external KernelDLL name 'SetTimer';
  2756. function SetThreadPriority(hThread:HANDLE; nPriority:longint):WINBOOL; external KernelDLL name 'SetThreadPriority';
  2757. function SetTimeZoneInformation(lpTimeZoneInformation:LPTIME_ZONE_INFORMATION):WINBOOL; external KernelDLL name 'SetTimeZoneInformation';
  2758. function SetupComm(hFile:HANDLE; dwInQueue:DWORD; dwOutQueue:DWORD):WINBOOL; external KernelDLL name 'SetupComm';
  2759. function SetUserDefaultLCID(_locale:LCID):BOOL; external KernelDLL name 'SetUserDefaultLCID'; // index 137
  2760. function SetUserDefaultUILanguage(_langid:LANGID):BOOL; external KernelDLL name 'SetUserDefaultUILanguage'; // index 14C
  2761. function SetViewportOrgEx(_para1:HDC; _para2:longint; _para3:longint; _para4:LPPOINT):WINBOOL; external KernelDLL name 'SetViewportOrgEx';
  2762. function SetWindowPos(hWnd:HWND; hWndInsertAfter:HWND; X:longint; Y:longint; cx:longint;cy:longint; uFlags:UINT):WINBOOL; external KernelDLL name 'SetWindowPos';
  2763. function SetWindowRgn(hWnd:HWND; hRgn:HRGN; bRedraw:WINBOOL):longint; external KernelDLL name 'SetWindowRgn';
  2764. function SetWindowsHookEx(idHook:longint; lpfn:HOOKPROC; hmod:HINST; dwThreadId:DWORD):HHOOK; external KernelDLL name 'SetWindowsHookExW';
  2765. function SetWindowsHookExW(idHook:longint; lpfn:HOOKPROC; hmod:HINST; dwThreadId:DWORD):HHOOK; external KernelDLL name 'SetWindowsHookExW';
  2766. function SetWindowLong(hWnd:HWND; nIndex:longint; dwNewLong:LONG):LONG; external KernelDLL name 'SetWindowLongW';
  2767. function SetWindowLongW(hWnd:HWND; nIndex:longint; dwNewLong:LONG):LONG; external KernelDLL name 'SetWindowLongW';
  2768. function SetWindowText(hWnd:HWND; lpString:LPCWSTR):WINBOOL; external KernelDLL name 'SetWindowTextW';
  2769. function SetWindowTextW(hWnd:HWND; lpString:LPCWSTR):WINBOOL; external KernelDLL name 'SetWindowTextW';
  2770. procedure SHAddToRecentDocs(_para1:UINT; _para2:LPCVOID); external KernelDLL name 'SHAddToRecentDocs';
  2771. function Shell_NotifyIcon(dwMessage: DWORD; lpData: PNotifyIconDataA): WINBOOL; external KernelDLL name 'Shell_NotifyIcon';
  2772. function ShellExecuteEx(lpExecInfo:LPSHELLEXECUTEINFO):WINBOOL; external KernelDLL name 'ShellExecuteEx';
  2773. function SHGetFileInfo(_para1:LPCTSTR; _para2:DWORD; var _para3:SHFILEINFO; _para4:UINT; _para5:UINT):DWORD; external KernelDLL name 'SHGetFileInfo';
  2774. function SHGetFileInfoW(_para1:LPCTSTR; _para2:DWORD; var _para3:SHFILEINFO; _para4:UINT; _para5:UINT):DWORD; external KernelDLL name 'SHGetFileInfo';
  2775. function ShowCaret(hWnd:HWND):WINBOOL; external KernelDLL name 'ShowCaret';
  2776. function ShowCursor(bShow:WINBOOL):longint; external KernelDLL name 'ShowCursor';
  2777. function ShowWindow(hWnd:HWND; nCmdShow:longint):WINBOOL; external KernelDLL name 'ShowWindow';
  2778. function SizeofResource(hModule:HINST; hResInfo:HRSRC):DWORD; external KernelDLL name 'SizeofResource';
  2779. procedure Sleep(dwMilliseconds:DWORD); external KernelDLL name 'Sleep';
  2780. function StartDoc(_para1:HDC; _para2:PDOCINFOW):longint; external KernelDLL name 'StartDocW';
  2781. function StartDocW(_para1:HDC; _para2:PDOCINFOW):longint; external KernelDLL name 'StartDocW';
  2782. function StartPage(_para1:HDC):longint; external KernelDLL name 'StartPage';
  2783. function StretchBlt(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint;_para6:HDC; _para7:longint; _para8:longint; _para9:longint; _para10:longint;_para11:DWORD):WINBOOL; external KernelDLL name 'StretchBlt';
  2784. function StretchDIBits(_para1:HDC; _para2:longint; _para3:longint; _para4:longint; _para5:longint;_para6:longint; _para7:longint; _para8:longint; _para9:longint; _para10:pointer;var _para11:BITMAPINFO; _para12:UINT; _para13:DWORD):longint;
  2785. external KernelDLL name 'StretchDIBits';
  2786. function SubtractRect(lprcDst:LPRECT; const lprcSrc1:RECT; const lprcSrc2:RECT):WINBOOL; external KernelDLL name 'SubtractRect';
  2787. function SuspendThread(hThread:HANDLE):DWORD; external KernelDLL name 'SuspendThread';
  2788. function SystemParametersInfo(uiAction:UINT; uiParam:UINT; pvParam:PVOID; fWinIni:UINT):WINBOOL; external KernelDLL name 'SystemParametersInfoW';
  2789. function SystemParametersInfoW(uiAction:UINT; uiParam:UINT; pvParam:PVOID; fWinIni:UINT):WINBOOL; external KernelDLL name 'SystemParametersInfoW';
  2790. function SystemTimeToFileTime(lpSystemTime:LPSYSTEMTIME; lpFileTime:LPFILETIME):WINBOOL; external KernelDLL name 'SystemTimeToFileTime';
  2791. function SNDMSG(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT;
  2792. function TabCtrl_GetImageList(hwnd : HWND) : LRESULT;
  2793. function TabCtrl_SetImageList(hwnd:HWND;himl : HIMAGELIST) : LRESULT;
  2794. function TabCtrl_GetItemCount(hwnd : HWND) : LRESULT;
  2795. function TabCtrl_GetItem(hwnd:HWND;iItem : longint;var item : TC_ITEM) : LRESULT;
  2796. function TabCtrl_SetItem(hwnd:HWND;iItem : longint;var item : TC_ITEM) : LRESULT;
  2797. function TabCtrl_InsertItem(hwnd:HWND;iItem : longint;var item : TC_ITEM) : LRESULT;
  2798. function TabCtrl_DeleteItem(hwnd:HWND;i : longint) : LRESULT;
  2799. function TabCtrl_DeleteAllItems(hwnd : HWND) : LRESULT;
  2800. function TabCtrl_GetItemRect(hwnd:HWND;i : longint;var rc : RECT) : LRESULT;
  2801. function TabCtrl_GetCurSel(hwnd : HWND) : LRESULT;
  2802. function TabCtrl_SetCurSel(hwnd:HWND;i : longint) : LRESULT;
  2803. function TabCtrl_HitTest(hwndTC:HWND;var info : TC_HITTESTINFO) : LRESULT;
  2804. function TabCtrl_SetItemExtra(hwndTC:HWND;cb : longint) : LRESULT;
  2805. function TabCtrl_AdjustRect(hwnd:HWND;bLarger:WINBOOL;var rc : RECT) : LRESULT;
  2806. function TabCtrl_SetItemSize(hwnd:HWND;x,y : longint) : LRESULT;
  2807. function TabCtrl_RemoveImage(hwnd:HWND;i : WPARAM) : LRESULT;
  2808. function TabCtrl_SetPadding(hwnd:HWND;cx,cy : longint) : LRESULT;
  2809. function TabCtrl_GetRowCount(hwnd : HWND) : LRESULT;
  2810. function TabCtrl_GetToolTips(hwnd : HWND) : LRESULT;
  2811. function TabCtrl_SetToolTips(hwnd:HWND;hwndTT : longint) : LRESULT;
  2812. function TabCtrl_GetCurFocus(hwnd : HWND) : LRESULT;
  2813. function TabCtrl_SetCurFocus(hwnd:HWND;i : longint) : LRESULT;
  2814. function TerminateProcess(hProcess:HANDLE; uExitCode:UINT):WINBOOL; external KernelDLL name 'TerminateProcess';
  2815. function TerminateThread(hThread:HANDLE; dwExitCode:DWORD):WINBOOL; external KernelDLL name 'TerminateThread';
  2816. function TlsAlloc:DWORD;
  2817. function TlsCall(p1:DWORD; p2:DWORD):DWORD; external KernelDLL name 'TlsCall';
  2818. function TlsFree(dwTlsIndex:DWORD):WINBOOL;
  2819. function TlsGetValue(dwTlsIndex:DWORD):LPVOID; external KernelDLL name 'TlsGetValue';
  2820. function TlsSetValue(dwTlsIndex:DWORD; lpTlsValue:LPVOID):WINBOOL; external KernelDLL name 'TlsSetValue';
  2821. function TouchCalibrate:BOOL; external KernelDLL name 'TouchCalibrate'; // index 4C7
  2822. function TrackPopupMenu(hMenu:HMENU; uFlags:UINT; x:longint; y:longint; nReserved:longint;hWnd:HWND; prcRect: PRect):WINBOOL;
  2823. function TrackPopupMenuEx(_para1:HMENU; _para2:UINT; _para3:longint; _para4:longint; _para5:HWND;_para6:LPTPMPARAMS):WINBOOL; external KernelDLL name 'TrackPopupMenuEx';
  2824. function TranslateAccelerator(hWnd:HWND; hAccTable:HACCEL; lpMsg:LPMSG):longint; external KernelDLL name 'TranslateAcceleratorW';
  2825. function TranslateAcceleratorW(hWnd:HWND; hAccTable:HACCEL; lpMsg:LPMSG):longint; external KernelDLL name 'TranslateAcceleratorW';
  2826. function TranslateCharsetInfo(var lpSrc:DWORD; lpCs:LPCHARSETINFO; dwFlags:DWORD):WINBOOL; external KernelDLL name 'TranslateCharsetInfo';
  2827. function TranslateMessage(lpMsg:LPMSG):WINBOOL; external KernelDLL name 'TranslateMessage';
  2828. function TransmitCommChar(hFile:HANDLE; cChar:char):WINBOOL; external KernelDLL name 'TransmitCommChar';
  2829. function TransparentBlt(hdcDest : HDC;DstX : LONG;DstY : LONG;DstCx : LONG;DstCy : LONG;hSrc : HANDLE;SrcX : LONG;SrcY : LONG;SrcCx : LONG;SrcCy : LONG;TransparentColor : COLORREF): WINBOOL; external KernelDLL name 'TransparentImage';
  2830. function TransparentImage(hdcDest : HDC;DstX : LONG;DstY : LONG;DstCx : LONG;DstCy : LONG;hSrc : HANDLE;SrcX : LONG;SrcY : LONG;SrcCx : LONG;SrcCy : LONG;TransparentColor : COLORREF): WINBOOL; external KernelDLL name 'TransparentImage';
  2831. function TreeView_InsertItem(hwnd:HWND;lpis : LPTV_INSERTSTRUCT) : LRESULT;
  2832. function TreeView_DeleteItem(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2833. function TreeView_DeleteAllItems(hwnd : HWND) : LRESULT;
  2834. function TreeView_Expand(hwnd:HWND;hitem:HTREEITEM;code : longint) : LRESULT;
  2835. function TreeView_GetCount(hwnd : HWND) : LRESULT;
  2836. function TreeView_GetIndent(hwnd : HWND) : LRESULT;
  2837. function TreeView_SetIndent(hwnd:HWND;indent : longint) : LRESULT;
  2838. function TreeView_GetImageList(hwnd:HWND;iImage : WPARAM) : LRESULT;
  2839. function TreeView_SetImageList(hwnd:HWND;himl:HIMAGELIST;iImage : WPARAM) : LRESULT;
  2840. function TreeView_GetNextItem(hwnd:HWND;hitem:HTREEITEM;code : longint) : LRESULT;
  2841. function TreeView_GetChild(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2842. function TreeView_GetNextSibling(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2843. function TreeView_GetPrevSibling(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2844. function TreeView_GetParent(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2845. function TreeView_GetFirstVisible(hwnd : HWND) : LRESULT;
  2846. function TreeView_GetNextVisible(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2847. function TreeView_GetPrevVisible(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2848. function TreeView_GetSelection(hwnd : HWND) : LRESULT;
  2849. function TreeView_GetDropHilight(hwnd : HWND) : LRESULT;
  2850. function TreeView_GetRoot(hwnd : HWND) : LRESULT;
  2851. function TreeView_Select(hwnd:HWND;hitem:HTREEITEM;code : longint) : LRESULT;
  2852. function TreeView_SelectItem(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2853. function TreeView_SelectDropTarget(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2854. function TreeView_SelectSetFirstVisible(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2855. function TreeView_GetItem(hwnd:HWND;var item : TV_ITEM) : LRESULT;
  2856. function TreeView_SetItem(hwnd:HWND;var item : TV_ITEM) : LRESULT;
  2857. function TreeView_EditLabel(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2858. function TreeView_GetEditControl(hwnd : HWND) : LRESULT;
  2859. function TreeView_GetVisibleCount(hwnd : HWND) : LRESULT;
  2860. function TreeView_HitTest(hwnd:HWND;lpht : LPTV_HITTESTINFO) : LRESULT;
  2861. function TreeView_CreateDragImage(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2862. function TreeView_SortChildren(hwnd:HWND;hitem:HTREEITEM;recurse : longint) : LRESULT;
  2863. function TreeView_EnsureVisible(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  2864. function TreeView_SortChildrenCB(hwnd:HWND;psort:LPTV_SORTCB;recurse : longint) : LRESULT;
  2865. function TreeView_EndEditLabelNow(hwnd:HWND;fCancel : longint) : LRESULT;
  2866. function TreeView_GetISearchString(hwndTV:HWND;lpsz : LPTSTR) : LRESULT;
  2867. function TryEnterCriticalSection(lpCriticalSection:LPCRITICAL_SECTION):WINBOOL; external KernelDLL name 'TryEnterCriticalSection'; //+winbase
  2868. function UnhookWindowsHookEx(hhk:HHOOK):WINBOOL; external KernelDLL name 'UnhookWindowsHookEx';
  2869. function UnionRect(lprcDst:LPRECT; const lprcSrc1:RECT; const lprcSrc2:RECT):WINBOOL; external KernelDLL name 'UnionRect';
  2870. function UnmapViewOfFile(lpBaseAddress:LPVOID):WINBOOL; external KernelDLL name 'UnmapViewOfFile';
  2871. function UnregisterClass(lpClassName:LPCWSTR; hInstance:HINST):WINBOOL; external KernelDLL name 'UnregisterClassW';
  2872. function UnregisterClassW(lpClassName:LPCWSTR; hInstance:HINST):WINBOOL; external KernelDLL name 'UnregisterClassW';
  2873. function UnregisterHotKey(hWnd:HWND; anID:longint):WINBOOL; external KernelDLL name 'UnregisterHotKey';
  2874. function UpdateWindow(hWnd:HWND):WINBOOL; external KernelDLL name 'UpdateWindow';
  2875. function ValidateRect(hWnd:HWND; const lpRect:RECT):WINBOOL; external KernelDLL name 'ValidateRect';
  2876. function ValidateRect(hWnd:HWND;lpRect:LPRECT):WINBOOL; external KernelDLL name 'ValidateRect';
  2877. function ValidateRgn(hWnd:HWND; hRgn:HRGN):WINBOOL; external KernelDLL name 'ValidateRgn';
  2878. function VerQueryValue(pBlock:LPVOID; lpSubBlock:LPWSTR; lplpBuffer:PPVOID; puLen:PUINT):WINBOOL; external KernelDLL name 'VerQueryValueW';
  2879. function VerQueryValue(pBlock:LPVOID; lpSubBlock:LPWSTR; lplpBuffer:PPVOID; var puLen:UINT):WINBOOL; external KernelDLL name 'VerQueryValueW';
  2880. function VerQueryValueW(pBlock:LPVOID; lpSubBlock:LPWSTR; lplpBuffer:PPVOID; puLen:PUINT):WINBOOL; external KernelDLL name 'VerQueryValueW';
  2881. function VerQueryValueW(pBlock:LPVOID; lpSubBlock:LPWSTR; lplpBuffer:PPVOID; var uLen:UINT):WINBOOL; external KernelDLL name 'VerQueryValueW';
  2882. function VirtualAlloc(lpAddress:LPVOID; dwSize:DWORD; flAllocationType:DWORD; flProtect:DWORD):LPVOID; external KernelDLL name 'VirtualAlloc';
  2883. function VirtualFree(lpAddress:LPVOID; dwSize:DWORD; dwFreeType:DWORD):WINBOOL; external KernelDLL name 'VirtualFree';
  2884. function VirtualQuery(lpAddress:LPCVOID; lpBuffer:PMEMORY_BASIC_INFORMATION; dwLength:DWORD):DWORD; external KernelDLL name 'VirtualQuery';
  2885. function VirtualProtect(lpAddress:LPVOID; dwSize:DWORD; flNewProtect:DWORD; lpflOldProtect:PDWORD):WINBOOL; external KernelDLL name 'VirtualProtect';
  2886. function WaitCommEvent(hFile:HANDLE; lpEvtMask:LPDWORD; lpOverlapped:LPOVERLAPPED):WINBOOL; external KernelDLL name 'WaitCommEvent';
  2887. function WriteProcessMemory(hProcess:HANDLE; lpBaseAddress:LPVOID; lpBuffer:LPVOID; nSize:DWORD; lpNumberOfBytesWritten:LPDWORD):WINBOOL; external KernelDLL name 'WriteProcessMemory';
  2888. function WaitForDebugEvent(lpDebugEvent:LPDEBUG_EVENT; dwMilliseconds:DWORD):WINBOOL; external KernelDLL name 'WaitForDebugEvent';
  2889. function WaitForSingleObject(hHandle:HANDLE; dwMilliseconds:DWORD):DWORD; external KernelDLL name 'WaitForSingleObject';
  2890. function WaitForMultipleObjects(nCount:DWORD; lpHandles : PWOHandleArray; bWaitAll:WINBOOL; dwMilliseconds:DWORD):DWORD; external KernelDLL name 'WaitForMultipleObjects';
  2891. function WideCharToMultiByte(CodePage:UINT; dwFlags:DWORD; lpWideCharStr:LPCWSTR; cchWideChar:longint; lpMultiByteStr:LPSTR;cchMultiByte:longint; lpDefaultChar:LPCSTR; lpUsedDefaultChar:LPBOOL):longint; external KernelDLL name 'WideCharToMultiByte';
  2892. function WindowFromPoint(Point:POINT):HWND; external KernelDLL name 'WindowFromPoint';
  2893. function WNetAddConnection3(hwndOwner:HWND; lpNetResource:LPNETRESOURCE; lpPassword:LPCWSTR; lpUserName:LPCWSTR; dwFlags:DWORD):DWORD; external KernelDLL name 'WNetAddConnection3W';
  2894. function WNetAddConnection3W(hwndOwner:HWND; lpNetResource:LPNETRESOURCE; lpPassword:LPCWSTR; lpUserName:LPCWSTR; dwFlags:DWORD):DWORD; external KernelDLL name 'WNetAddConnection3W';
  2895. function WNetCancelConnection2(lpName:LPCWSTR; dwFlags:DWORD; fForce:WINBOOL):DWORD; external KernelDLL name 'WNetCancelConnection2W';
  2896. function WNetCancelConnection2W(lpName:LPCWSTR; dwFlags:DWORD; fForce:WINBOOL):DWORD; external KernelDLL name 'WNetCancelConnection2W';
  2897. function WNetConnectionDialog1(lpConnDlgStruct:LPCONNECTDLGSTRUCTW):DWORD; external KernelDLL name 'WNetConnectionDialog1W';
  2898. function WNetConnectionDialog1W(lpConnDlgStruct:LPCONNECTDLGSTRUCTW):DWORD; external KernelDLL name 'WNetConnectionDialog1W';
  2899. function WNetCloseEnum(hEnum:HANDLE):DWORD; external KernelDLL name 'WNetCloseEnum';
  2900. function WNetDisconnectDialog(hwnd:HWND; dwType:DWORD):DWORD; external KernelDLL name 'WNetDisconnectDialog';
  2901. function WNetDisconnectDialog1(lpConnDlgStruct:LPDISCDLGSTRUCTW):DWORD; external KernelDLL name 'WNetDisconnectDialog1W';
  2902. function WNetDisconnectDialog1W(lpConnDlgStruct:LPDISCDLGSTRUCTW):DWORD; external KernelDLL name 'WNetDisconnectDialog1W';
  2903. function WNetEnumResource(hEnum:HANDLE; lpcCount:LPDWORD; lpBuffer:LPVOID; lpBufferSize:LPDWORD):DWORD; external KernelDLL name 'WNetEnumResourceW';
  2904. function WNetEnumResourceW(hEnum:HANDLE; lpcCount:LPDWORD; lpBuffer:LPVOID; lpBufferSize:LPDWORD):DWORD; external KernelDLL name 'WNetEnumResourceW';
  2905. function WNetGetConnection(lpLocalName:LPCWSTR; lpRemoteName:LPWSTR; lpnLength:LPDWORD):DWORD; external KernelDLL name 'WNetGetConnectionW';
  2906. function WNetGetConnectionW(lpLocalName:LPCWSTR; lpRemoteName:LPWSTR; lpnLength:LPDWORD):DWORD; external KernelDLL name 'WNetGetConnectionW';
  2907. function WNetGetUniversalName(lpLocalPath:LPCWSTR; dwInfoLevel:DWORD; lpBuffer:LPVOID; lpBufferSize:LPDWORD):DWORD; external KernelDLL name 'WNetGetUniversalNameW';
  2908. function WNetGetUniversalNameW(lpLocalPath:LPCWSTR; dwInfoLevel:DWORD; lpBuffer:LPVOID; lpBufferSize:LPDWORD):DWORD; external KernelDLL name 'WNetGetUniversalNameW';
  2909. function WNetGetUser(lpName:LPCWSTR; lpUserName:LPWSTR; lpnLength:LPDWORD):DWORD; external KernelDLL name 'WNetGetUserW';
  2910. function WNetGetUserW(lpName:LPCWSTR; lpUserName:LPWSTR; lpnLength:LPDWORD):DWORD; external KernelDLL name 'WNetGetUserW';
  2911. function WNetOpenEnum(dwScope:DWORD; dwType:DWORD; dwUsage:DWORD; lpNetResource:LPNETRESOURCEW; lphEnum:LPHANDLE):DWORD; external KernelDLL name 'WNetOpenEnumW';
  2912. function WNetOpenEnumW(dwScope:DWORD; dwType:DWORD; dwUsage:DWORD; lpNetResource:LPNETRESOURCEW; lphEnum:LPHANDLE):DWORD; external KernelDLL name 'WNetOpenEnumW';
  2913. function WriteFile(hFile:HANDLE; lpBuffer:LPCVOID; nNumberOfBytesToWrite:DWORD; lpNumberOfBytesWritten:LPDWORD; lpOverlapped:LPOVERLAPPED):BOOL; external KernelDLL name 'WriteFile';
  2914. function wcscat(strDestination:PWideChar; strSource:PWideChar):PWideChar; external KernelDLL name 'wcscat'; // index 54
  2915. function wcschr(_string:PWideChar; c:WideChar):PWideChar; external KernelDLL name 'wcschr'; // index 55
  2916. function wcscmp(string1:PWideChar; string2:PWideChar):longint; external KernelDLL name 'wcscmp'; // index 56
  2917. function wcscpy(strDestination:PWideChar; strSource:PWideChar):PWideChar; external KernelDLL name 'wcscpy'; // index 57
  2918. function wcscspn(_string:PWideChar; strCharSet:PWideChar):SIZE_T; external KernelDLL name 'wcscspn'; // index 58
  2919. // Returns the number of characters in string, excluding the terminal NULL.
  2920. function wcslen(_string:PWideChar):SIZE_T; external KernelDLL name 'wcslen'; // index 59
  2921. function wcsncat(strDest:PWideChar; strSource:PWideChar; _count:SIZE_T):PWideChar; external KernelDLL name 'wcsncat'; // index 5A
  2922. function wcsncmp(string1:PWideChar; string2:PWideChar; _count:SIZE_T):longint; external KernelDLL name 'wcsncmp'; // index 5B
  2923. function wcsncpy(strDest:PWideChar; strSource:PWideChar; _count:SIZE_T):PWideChar; external KernelDLL name 'wcsncpy'; // index 5C
  2924. function wcspbrk(_string:PWideChar; strCharSet:PWideChar):PWideChar; external KernelDLL name 'wcspbrk'; // index 5E
  2925. function wcsrchr(_string:PWideChar; c:longint):PWideChar; external KernelDLL name 'wcsrchr'; // index 5F
  2926. function wcsspn(_string:PWideChar; strCharSet:PWideChar):SIZE_T; external KernelDLL name 'wcsspn'; // index 62
  2927. function wcsstr(_string:PWideChar; strCharSet:PWideChar):PWideChar; external KernelDLL name 'wcsstr'; // index 63
  2928. function wcstod(nptr:PWideChar; var endptr:PWideChar):double; external KernelDLL name 'wcstod'; // index 5B5
  2929. function wcstok(strToken:PWideChar; strDelimit:PWideChar):PWideChar; external KernelDLL name 'wcstok'; // index 67
  2930. function wcstol(nptr:PWideChar; var endptr:PWideChar; _base:longint):longint; external KernelDLL name 'wcstol'; // index 5B6
  2931. function wcstombs(mbstr:PChar; wcstr:PWideChar; _count:SIZE_T):SIZE_T; external KernelDLL name 'wcstombs'; // index 65
  2932. function wcstoul(nptr:PWideChar; var endptr:PWideChar; _base:longint):Cardinal; external KernelDLL name 'wcstoul'; // index 5B7
  2933. function wsprintf(lpBuffer:LPWSTR; lpFormat:LPCWSTR; const args:array of const):longint; external KernelDLL name 'wsprintfW';
  2934. function wsprintfW(lpBuffer:LPWSTR; lpFormat:LPCWSTR; const args:array of const):longint; external KernelDLL name 'wsprintfW';
  2935. function wsprintf(lpBuffer:LPWSTR; lpFormat:LPCWSTR):longint; external KernelDLL name 'wsprintfW';
  2936. function wsprintfW(lpBuffer:LPWSTR; lpFormat:LPCWSTR):longint; external KernelDLL name 'wsprintfW';
  2937. function wvsprintf(_para1:LPWSTR; _para2:LPCWSTR; arglist:va_list):longint; external KernelDLL name 'wvsprintfW';
  2938. function wvsprintfW(_para1:LPWSTR; _para2:LPCWSTR; arglist:va_list):longint; external KernelDLL name 'wvsprintfW';
  2939. procedure ZeroMemory(Destination:PVOID; Length:DWORD);
  2940. // dest - pointer to destination.
  2941. // src - pointer to source.
  2942. // c - last character to copy.
  2943. // count - number of characters.
  2944. // Returns: if the character c is copied, _memccpy returns a pointer to the
  2945. // byte in dest that immediately follows the character. If c is not copied, it
  2946. // returns NULL.
  2947. function _memccpy(dest:pointer; src:pointer; c:longint; _count:Cardinal):pointer; external KernelDLL name '_memccpy'; // index 590
  2948. function _memicmp(buf1:pointer; buf2:pointer; _count:Cardinal):longint; external KernelDLL name '_memicmp'; // index 593
  2949. // _strdup function calls malloc to allocate storage space for a copy of
  2950. // strSource and then copies strSource to the allocated space.
  2951. function _strdup(strSource:PAnsiChar):PAnsiChar; external KernelDLL name '_strdup'; // index 71
  2952. function _stricmp(string1:PAnsiChar; string2:PAnsiChar):longint; external KernelDLL name '_stricmp'; // index 77
  2953. function _strlwr(_string:PAnsiChar):PAnsiChar; external KernelDLL name '_strlwr'; // index 75
  2954. function _strnicmp(string1:PAnsiChar; string2:PAnsiChar; _count:SIZE_T):longint; external KernelDLL name '_strnicmp'; // index 78
  2955. function _strnset(_string:PAnsiChar; c:longint; _count:SIZE_T):PAnsiChar; external KernelDLL name '_strnset'; // index 72
  2956. function _strrev(_string:PAnsiChar):PAnsiChar; external KernelDLL name '_strrev'; // index 73
  2957. function _strset(_string:PAnsiChar; c:longint):PAnsiChar; external KernelDLL name '_strset'; // index 74
  2958. function _strupr(_string:PAnsiChar):PAnsiChar; external KernelDLL name '_strupr'; // index 76
  2959. // The _swab function copies n bytes from src, swaps each pair of adjacent bytes,
  2960. // and stores the result at dest. The integer n should be an even number to allow
  2961. // for swapping. _swab is typically used to prepare binary data for transfer to
  2962. // a machine that uses a different byte order.
  2963. procedure _swab(src:PAnsiChar; dest:PAnsiChar; n:longint); external KernelDLL name '_swab'; // index 5B0
  2964. function _wcsdup(strSource:PWideChar):PWideChar; external KernelDLL name '_wcsdup'; // index 64
  2965. function _wcsicmp(string1:PWideChar; string2:PWideChar):longint; external KernelDLL name '_wcsicmp'; // index 146
  2966. function _wcslwr(_string:PWideChar):PWideChar; external KernelDLL name '_wcslwr'; // index 147
  2967. function _wcsnicmp(string1:PWideChar; string2:PWideChar; _count:SIZE_T):longint; external KernelDLL name '_wcsnicmp'; // index 145
  2968. function _wcsnset(_string:PWideChar; c:WCHAR; _count:SIZE_T):PWideChar; external KernelDLL name '_wcsnset'; // index 5D
  2969. function _wcsrev(_string:PWideChar):PWideChar; external KernelDLL name '_wcsrev'; // index 60
  2970. function _wcsset(_string:PWideChar; c:WCHAR):PWideChar; external KernelDLL name '_wcsset'; // index 61
  2971. function _wcsupr(_string:PWideChar):PWideChar; external KernelDLL name '_wcsupr'; // index 148
  2972. {$endif read_interface}
  2973. {$ifdef read_implementation}
  2974. function CheckDlgButton(hDlg:HWND; nIDButton:longint; uCheck:UINT):WINBOOL;
  2975. begin
  2976. CheckDlgButton:=WINBOOL(SendDlgItemMessage(hDlg, nIDButton, BM_SETCHECK, WPARAM(uCheck), LPARAM(0)));
  2977. end;
  2978. procedure CopyMemory(Destination:PVOID; Source:pointer; Length:DWORD);
  2979. begin
  2980. Move(Source^, Destination^, Length);
  2981. end;
  2982. function CreateDialog(hInstance:HINST; lpName:LPCWSTR; hWndParent:HWND; lpDialogFunc:DLGPROC):HWND;
  2983. begin
  2984. CreateDialog:=CreateDialogParam(hInstance, lpName, hWndParent, lpDialogFunc, 0);
  2985. end;
  2986. function CreateDialogIndirect(hInstance:HINST; lpTemplate:LPCDLGTEMPLATE; hWndParent:HWND; lpDialogFunc:DLGPROC):HWND;
  2987. begin
  2988. CreateDialogIndirect:=CreateDialogIndirectParam(hInstance,lpTemplate,hWndParent,lpDialogFunc,0);
  2989. end;
  2990. function CreateDialogIndirectW(hInstance:HINST; lpTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC):HWND;
  2991. begin
  2992. CreateDialogIndirectW:=CreateDialogIndirectParamW(hInstance,lpTemplate,hWndParent,lpDialogFunc,0);
  2993. end;
  2994. function CreateDialogParam(hInstance:HINST; lpTemplateName:LPCWSTR; hWndParent:HWND; lpDialogFunc:DLGPROC; dwInitParam:LPARAM):HWND;
  2995. begin
  2996. CreateDialogParam:=CreateDialogIndirectParam(hInstance,
  2997. LPCDLGTEMPLATEW(LoadResource(hInstance, FindResource(hInstance, lpTemplateName, RT_DIALOG))),
  2998. hWndParent, lpDialogFunc, dwInitParam);
  2999. end;
  3000. function CreateWindow(lpClassName:LPCWSTR; lpWindowName:LPCWSTR; dwStyle:DWORD; X:longint;Y:longint; nWidth:longint; nHeight:longint; hWndParent:HWND; hMenu:HMENU;hInstance:HINST; lpParam:LPVOID):HWND;
  3001. begin
  3002. CreateWindow:=CreateWindowEx(0,lpClassName,lpWindowName,dwStyle,x,y,nWidth,nHeight,hWndParent,hMenu,hInstance,lpParam);
  3003. end;
  3004. function DialogBox(hInstance:HINST; lpTemplate:LPCWSTR; hWndParent:HWND; lpDialogFunc:DLGPROC):longint;
  3005. begin
  3006. DialogBox:=DialogBoxParam(hInstance,lpTemplate,hWndParent,lpDialogFunc,0);
  3007. end;
  3008. function DialogBoxIndirect(hInstance:HINST; lpTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC):longint;
  3009. begin
  3010. DialogBoxIndirect:=DialogBoxIndirectParam(hInstance,lpTemplate,hWndParent,lpDialogFunc,0);
  3011. end;
  3012. function DialogBoxIndirectW(hInstance:HINST; lpTemplate:LPCDLGTEMPLATEW; hWndParent:HWND; lpDialogFunc:DLGPROC):longint;
  3013. begin
  3014. DialogBoxIndirectW:=DialogBoxIndirectParamW(hInstance,lpTemplate,hWndParent,lpDialogFunc,0);
  3015. end;
  3016. function DialogBoxParam(hInstance:HINST; lpTemplateName:LPCWSTR; hWndParent:HWND; lpDialogFunc:DLGPROC; dwInitParam:LPARAM):longint;
  3017. begin
  3018. DialogBoxParam:=DialogBoxIndirectParam( hInstance,
  3019. LPCDLGTEMPLATEW(LoadResource(hInstance, FindResource(hInstance, lpTemplateName, RT_DIALOG))),
  3020. hWndParent,
  3021. lpDialogFunc,
  3022. dwInitParam);
  3023. end;
  3024. function DrawIcon(hDC:HDC; X:longint; Y:longint; hIcon:HICON):WINBOOL;
  3025. begin
  3026. DrawIcon:=DrawIconEx(hdc,x,y,hicon,0,0,0,NULL, DI_NORMAL);
  3027. end;
  3028. procedure ExitProcess(uExitCode:UINT);
  3029. begin
  3030. TerminateProcess (GetCurrentProcess, uExitCode);
  3031. end;
  3032. procedure FillMemory(Destination:PVOID; Length:DWORD; Fill:BYTE);
  3033. begin
  3034. FillChar(Destination^,Length,Char(Fill));
  3035. end;
  3036. function GetCurrentThread:HANDLE;
  3037. begin
  3038. GetCurrentThread:=SH_CURTHREAD+SYS_HANDLE_BASE;
  3039. end;
  3040. function GetCurrentThreadId:DWORD;
  3041. begin
  3042. GetCurrentThreadId:=Phandle(PUserKData+SYSHANDLE_OFFSET+SH_CURTHREAD*SizeOf(THandle))^;
  3043. end;
  3044. function GetCurrentProcess:HANDLE;
  3045. begin
  3046. GetCurrentProcess:=SH_CURPROC+SYS_HANDLE_BASE;
  3047. end;
  3048. function GetCurrentProcessId:DWORD;
  3049. begin
  3050. GetCurrentProcessId:=Phandle(PUserKData+SYSHANDLE_OFFSET+SH_CURPROC*SizeOf(THandle))^;
  3051. end;
  3052. function GetTextExtentPoint(_para1:HDC; _para2:LPCWSTR; _para3:longint; _para4:LPSIZE):WINBOOL;
  3053. begin
  3054. GetTextExtentPoint:=GetTextExtentExPoint(_para1, _para2, _para3, 0, nil, nil, _para4);
  3055. end;
  3056. function GetTextExtentPoint32(_para1:HDC; _para2:LPCWSTR; _para3:longint; _para4:LPSIZE):WINBOOL;
  3057. begin
  3058. GetTextExtentPoint32:=GetTextExtentExPoint(_para1, _para2, _para3, 0, nil, nil, _para4);
  3059. end;
  3060. function GlobalAlloc(uFlags:UINT; dwBytes:DWORD):HGLOBAL;
  3061. begin
  3062. GlobalAlloc:=LocalAlloc(uFlags,dwBytes);
  3063. end;
  3064. function GlobalAllocPtr(flags,cb:DWord):Pointer;
  3065. begin
  3066. GlobalAllocPtr:=GlobalLock(GlobalAlloc(flags,cb));
  3067. end;
  3068. function GlobalFree(hMem:HGLOBAL):HGLOBAL;
  3069. begin
  3070. GlobalFree:=LocalFree(hMem);
  3071. end;
  3072. function GlobalHandle(pMem:LPCVOID):HGLOBAL;
  3073. begin
  3074. //GlobalHandle:=LocalHandle(pMem);
  3075. GlobalHandle:=HLOCAL(pMem); //see localhandle
  3076. end;
  3077. function GlobalReAlloc(hMem:HGLOBAL; dwBytes:DWORD; uFlags:UINT):HGLOBAL;
  3078. begin
  3079. GlobalReAlloc:=LocalReAlloc(hMem, dwBytes, LMEM_MOVEABLE);
  3080. end;
  3081. function GlobalSize(hMem:HGLOBAL):DWORD;
  3082. begin
  3083. GlobalSize:=LocalSize(hMem);
  3084. end;
  3085. function GlobalLock(hMem:HGLOBAL):LPVOID;
  3086. begin
  3087. //GlobalLock:=LocalLock(hMem);
  3088. GlobalLock:=LPVOID(hMem); //see locallock
  3089. end;
  3090. function GlobalUnlock(hMem:HGLOBAL):WINBOOL;
  3091. begin
  3092. //GlobalUnlock:=LocalUnlock(hMem);
  3093. GlobalUnlock:=True; //see localunlock
  3094. end;
  3095. function GlobalFreePtr(lp:Pointer):Pointer;
  3096. begin
  3097. GlobalFreePtr:=Pointer(GlobalFree(HANDLE(GlobalUnlockPtr(lp))));
  3098. end;
  3099. function GlobalDiscard(hglbMem:HGLOBAL):HGLOBAL;
  3100. begin
  3101. GlobalDiscard:=GlobalReAlloc(hglbMem,0,GMEM_MOVEABLE);
  3102. end;
  3103. function GlobalLockPtr(lp:pointer):Pointer;
  3104. begin
  3105. GlobalLockPtr:=GlobalLock(GlobalHandle(lp));
  3106. end;
  3107. function GlobalReAllocPtr(lp:Pointer;cbNew,flags:DWord):Pointer;
  3108. begin
  3109. GlobalReAllocPtr:=GlobalLock(GlobalReAlloc(HANDLE(GlobalUnlockPtr(lp)),cbNew,flags));
  3110. end;
  3111. function GlobalPtrHandle(lp:pointer):Pointer;
  3112. begin
  3113. GlobalPtrHandle:=Pointer(GlobalHandle(lp));
  3114. end;
  3115. function GlobalUnlockPtr(lp:pointer):Pointer;
  3116. begin
  3117. GlobalUnlock(GlobalHandle(lp));
  3118. GlobalUnlockPtr:=lp;
  3119. end;
  3120. function Header_DeleteItem(hwndHD:HWND;index : longint) : WINBOOL;
  3121. begin
  3122. Header_DeleteItem:=WINBOOL(SendMessage(hwndHD,HDM_DELETEITEM,WPARAM(index),0));
  3123. end;
  3124. function Header_GetItem(hwndHD:HWND;index:longint;var hdi : HD_ITEM) : WINBOOL;
  3125. begin
  3126. Header_GetItem:=WINBOOL(SendMessage(hwndHD,HDM_GETITEM,WPARAM(index),LPARAM(@hdi)));
  3127. end;
  3128. function Header_GetItemCount(hwndHD : HWND) : longint;
  3129. begin
  3130. Header_GetItemCount:=longint(SendMessage(hwndHD,HDM_GETITEMCOUNT,0,0));
  3131. end;
  3132. function Header_InsertItem(hwndHD:HWND;index : longint;var hdi : HD_ITEM) : longint;
  3133. begin
  3134. Header_InsertItem:=longint(SendMessage(hwndHD,HDM_INSERTITEM,WPARAM(index),LPARAM(@hdi)));
  3135. end;
  3136. function Header_Layout(hwndHD:HWND;var layout : HD_LAYOUT) : WINBOOL;
  3137. begin
  3138. Header_Layout:=WINBOOL(SendMessage(hwndHD,HDM_LAYOUT,0,LPARAM(@layout)));
  3139. end;
  3140. function Header_SetItem(hwndHD:HWND;index : longint;var hdi : HD_ITEM) : WINBOOL;
  3141. begin
  3142. Header_SetItem:=WINBOOL(SendMessage(hwndHD,HDM_SETITEM,WPARAM(index),LPARAM(@hdi)));
  3143. end;
  3144. function ImageList_AddIcon(himl:HIMAGELIST; hicon:HICON):longint;
  3145. begin
  3146. ImageList_AddIcon:=ImageList_ReplaceIcon(himl,-(1),hicon);
  3147. end;
  3148. function ListView_Arrange(hwndLV:HWND;code : UINT) : LRESULT;
  3149. begin
  3150. ListView_Arrange:=SendMessage(hwndLV,LVM_ARRANGE,WPARAM(UINT(code)),0);
  3151. end;
  3152. function ListView_CreateDragImage(hwnd:HWND;i : longint;lpptUpLeft : LPPOINT) : LRESULT;
  3153. begin
  3154. ListView_CreateDragImage:=SendMessage(hwnd,LVM_CREATEDRAGIMAGE,WPARAM(i),LPARAM(lpptUpLeft));
  3155. end;
  3156. function ListView_DeleteAllItems(hwnd : HWND) : LRESULT;
  3157. begin
  3158. ListView_DeleteAllItems:=SendMessage(hwnd,LVM_DELETEALLITEMS,0,0);
  3159. end;
  3160. function ListView_DeleteColumn(hwnd:HWND;iCol : longint) : LRESULT;
  3161. begin
  3162. ListView_DeleteColumn:=SendMessage(hwnd,LVM_DELETECOLUMN,WPARAM(iCol),0);
  3163. end;
  3164. function ListView_DeleteItem(hwnd:HWND;iItem : longint) : LRESULT;
  3165. begin
  3166. ListView_DeleteItem:=SendMessage(hwnd,LVM_DELETEITEM,WPARAM(iItem),0);
  3167. end;
  3168. function ListView_EditLabel(hwndLV:HWND;i : longint) : LRESULT;
  3169. begin
  3170. ListView_EditLabel:=SendMessage(hwndLV,LVM_EDITLABEL,WPARAM(longint(i)),0);
  3171. end;
  3172. function ListView_EnsureVisible(hwndLV:HWND;i,fPartialOK : longint) : LRESULT;
  3173. begin
  3174. ListView_EnsureVisible:=SendMessage(hwndLV,LVM_ENSUREVISIBLE,WPARAM(i),MAKELPARAM(fPartialOK,0));
  3175. end;
  3176. function ListView_FindItem(hwnd:HWND;iStart : longint;var lvfi : LV_FINDINFO) : longint;
  3177. begin
  3178. ListView_FindItem:=SendMessage(hwnd,LVM_FINDITEM,WPARAM(iStart),LPARAM(@lvfi));
  3179. end;
  3180. function ListView_GetBkColor(hwnd : HWND) : LRESULT;
  3181. begin
  3182. ListView_GetBkColor:=SendMessage(hwnd,LVM_GETBKCOLOR,0,0);
  3183. end;
  3184. function ListView_GetCallbackMask(hwnd : HWND) : LRESULT;
  3185. begin
  3186. ListView_GetCallbackMask:=SendMessage(hwnd,LVM_GETCALLBACKMASK,0,0);
  3187. end;
  3188. function ListView_GetColumn(hwnd:HWND;iCol : longint;var col : LV_COLUMN) : LRESULT;
  3189. begin
  3190. ListView_GetColumn:=SendMessage(hwnd,LVM_GETCOLUMN,WPARAM(iCol),LPARAM(@col));
  3191. end;
  3192. function ListView_GetColumnWidth(hwnd:HWND;iCol : longint) : LRESULT;
  3193. begin
  3194. ListView_GetColumnWidth:=SendMessage(hwnd,LVM_GETCOLUMNWIDTH,WPARAM(iCol),0);
  3195. end;
  3196. function ListView_GetCountPerPage(hwndLV : HWND) : LRESULT;
  3197. begin
  3198. ListView_GetCountPerPage:=SendMessage(hwndLV,LVM_GETCOUNTPERPAGE,0,0);
  3199. end;
  3200. function ListView_GetEditControl(hwndLV : HWND) : LRESULT;
  3201. begin
  3202. ListView_GetEditControl:=SendMessage(hwndLV,LVM_GETEDITCONTROL,0,0);
  3203. end;
  3204. function ListView_GetImageList(hwnd:HWND;iImageList : wINT) : LRESULT;
  3205. begin
  3206. ListView_GetImageList:=SendMessage(hwnd,LVM_GETIMAGELIST,WPARAM(iImageList),0);
  3207. end;
  3208. function ListView_GetISearchString(hwndLV:HWND;lpsz : LPTSTR) : LRESULT;
  3209. begin
  3210. ListView_GetISearchString:=SendMessage(hwndLV,LVM_GETISEARCHSTRING,0,LPARAM(lpsz));
  3211. end;
  3212. function ListView_GetItem(hwnd:HWND;var item : LV_ITEM) : LRESULT;
  3213. begin
  3214. ListView_GetItem:=SendMessage(hwnd,LVM_GETITEM,0,LPARAM(@item));
  3215. end;
  3216. function ListView_GetItemCount(hwnd : HWND) : LRESULT;
  3217. begin
  3218. ListView_GetItemCount:=SendMessage(hwnd,LVM_GETITEMCOUNT,0,0);
  3219. end;
  3220. function ListView_GetItemPosition(hwndLV:HWND;i : longint;var pt : POINT) : longint;
  3221. begin
  3222. ListView_GetItemPosition:=SendMessage(hwndLV,LVM_GETITEMPOSITION,WPARAM(longint(i)),LPARAM(@pt));
  3223. end;
  3224. function ListView_GetItemSpacing(hwndLV:HWND;fSmall : longint) : LRESULT;
  3225. begin
  3226. ListView_GetItemSpacing:=SendMessage(hwndLV,LVM_GETITEMSPACING,fSmall,0);
  3227. end;
  3228. function ListView_GetItemState(hwndLV:HWND;i,mask : longint) : LRESULT;
  3229. begin
  3230. ListView_GetItemState:=SendMessage(hwndLV,LVM_GETITEMSTATE,WPARAM(i),LPARAM(mask));
  3231. end;
  3232. function ListView_GetNextItem(hwnd:HWND; iStart, flags : longint) : LRESULT;
  3233. begin
  3234. ListView_GetNextItem:=SendMessage(hwnd, LVM_GETNEXTITEM, WPARAM(iStart), LPARAM(flags));
  3235. end;
  3236. function ListView_GetOrigin(hwndLV:HWND;var pt : POINT) : LRESULT;
  3237. begin
  3238. ListView_GetOrigin:=SendMessage(hwndLV,LVM_GETORIGIN,WPARAM(0),LPARAM(@pt));
  3239. end;
  3240. function ListView_GetSelectedCount(hwndLV : HWND) : LRESULT;
  3241. begin
  3242. ListView_GetSelectedCount:=SendMessage(hwndLV,LVM_GETSELECTEDCOUNT,0,0);
  3243. end;
  3244. function ListView_GetStringWidth(hwndLV:HWND;psz : LPCTSTR) : LRESULT;
  3245. begin
  3246. ListView_GetStringWidth:=SendMessage(hwndLV,LVM_GETSTRINGWIDTH,0,LPARAM(psz));
  3247. end;
  3248. function ListView_GetTextBkColor(hwnd : HWND) : LRESULT;
  3249. begin
  3250. ListView_GetTextBkColor:=SendMessage(hwnd,LVM_GETTEXTBKCOLOR,0,0);
  3251. end;
  3252. function ListView_GetTextColor(hwnd : HWND) : LRESULT;
  3253. begin
  3254. ListView_GetTextColor:=SendMessage(hwnd,LVM_GETTEXTCOLOR,0,0);
  3255. end;
  3256. function ListView_GetTopIndex(hwndLV : HWND) : LRESULT;
  3257. begin
  3258. ListView_GetTopIndex:=SendMessage(hwndLV,LVM_GETTOPINDEX,0,0);
  3259. end;
  3260. function ListView_GetViewRect(hwnd:HWND;var rc : RECT) : LRESULT;
  3261. begin
  3262. ListView_GetViewRect:=SendMessage(hwnd,LVM_GETVIEWRECT,0,LPARAM(@rc));
  3263. end;
  3264. function ListView_HitTest(hwndLV:HWND;var info : LV_HITTESTINFO) : LRESULT;
  3265. begin
  3266. ListView_HitTest:=SendMessage(hwndLV,LVM_HITTEST,0,LPARAM(@info));
  3267. end;
  3268. function ListView_InsertColumn(hwnd:HWND;iCol : longint;var col : LV_COLUMN) : LRESULT;
  3269. begin
  3270. ListView_InsertColumn:=SendMessage(hwnd,LVM_INSERTCOLUMN,WPARAM(iCol),LPARAM(@col));
  3271. end;
  3272. function ListView_InsertItem(hwnd:HWND;var item : LV_ITEM) : LRESULT;
  3273. begin
  3274. ListView_InsertItem:=SendMessage(hwnd,LVM_INSERTITEM,0,LPARAM(@item));
  3275. end;
  3276. function ListView_RedrawItems(hwndLV:HWND;iFirst,iLast : longint) : LRESULT;
  3277. begin
  3278. ListView_RedrawItems:=SendMessage(hwndLV,LVM_REDRAWITEMS,WPARAM(iFirst),LPARAM(iLast));
  3279. end;
  3280. function ListView_Scroll(hwndLV:HWND;dx,dy : longint) : LRESULT;
  3281. begin
  3282. ListView_Scroll:=SendMessage(hwndLV,LVM_SCROLL,WPARAM(dx),LPARAM(dy));
  3283. end;
  3284. function ListView_SetBkColor(hwnd:HWND;clrBk : COLORREF) : LRESULT;
  3285. begin
  3286. ListView_SetBkColor:=SendMessage(hwnd,LVM_SETBKCOLOR,0,LPARAM(clrBk));
  3287. end;
  3288. function ListView_SetCallbackMask(hwnd:HWND;mask : UINT) : LRESULT;
  3289. begin
  3290. ListView_SetCallbackMask:=SendMessage(hwnd,LVM_SETCALLBACKMASK,WPARAM(mask),0);
  3291. end;
  3292. function ListView_SetColumn(hwnd:HWND;iCol : longint; var col : LV_COLUMN) : LRESULT;
  3293. begin
  3294. ListView_SetColumn:=SendMessage(hwnd,LVM_SETCOLUMN,WPARAM(iCol),LPARAM(@col));
  3295. end;
  3296. function ListView_SetColumnWidth(hwnd:HWND;iCol,cx : longint) : LRESULT;
  3297. begin
  3298. ListView_SetColumnWidth:=SendMessage(hwnd,LVM_SETCOLUMNWIDTH,WPARAM(iCol),MAKELPARAM(cx,0));
  3299. end;
  3300. function ListView_SetImageList(hwnd:HWND;himl : longint;iImageList : HIMAGELIST) : LRESULT;
  3301. begin
  3302. ListView_SetImageList:=SendMessage(hwnd,LVM_SETIMAGELIST,WPARAM(iImageList),LPARAM(UINT(himl)));
  3303. end;
  3304. function ListView_SetItem(hwnd:HWND;var item : LV_ITEM) : LRESULT;
  3305. begin
  3306. ListView_SetItem:=SendMessage(hwnd,LVM_SETITEM,0,LPARAM(@item));
  3307. end;
  3308. function ListView_SetItemCount(hwndLV:HWND;cItems : longint) : LRESULT;
  3309. begin
  3310. ListView_SetItemCount:=SendMessage(hwndLV,LVM_SETITEMCOUNT,WPARAM(cItems),0);
  3311. end;
  3312. function ListView_SetItemPosition(hwndLV:HWND;i,x,y : longint) : LRESULT;
  3313. begin
  3314. ListView_SetItemPosition:=SendMessage(hwndLV,LVM_SETITEMPOSITION,WPARAM(i),MAKELPARAM(x,y));
  3315. end;
  3316. function ListView_SetItemPosition32(hwndLV:HWND;i,x,y : longint) : LRESULT;
  3317. var
  3318. ptNewPos : POINT;
  3319. begin
  3320. ptNewPos.x:=x;
  3321. ptNewPos.y:=y;
  3322. ListView_SetItemPosition32:=SendMessage(hwndLV, LVM_SETITEMPOSITION32, WPARAM(i),LPARAM(@ptNewPos));
  3323. end;
  3324. function ListView_SetItemState(hwndLV:HWND; i, data, mask:longint) : LRESULT;
  3325. var
  3326. _gnu_lvi : LV_ITEM;
  3327. begin
  3328. _gnu_lvi.stateMask:=mask;
  3329. _gnu_lvi.state:=data;
  3330. ListView_SetItemState:=SendMessage(hwndLV, LVM_SETITEMSTATE, WPARAM(i),LPARAM(@_gnu_lvi));
  3331. end;
  3332. function ListView_SetItemText(hwndLV:HWND; i, iSubItem_:longint;pszText_ : LPTSTR) : LRESULT;
  3333. var
  3334. _gnu_lvi : LV_ITEM;
  3335. begin
  3336. _gnu_lvi.iSubItem:=iSubItem_;
  3337. _gnu_lvi.pszText:=pszText_;
  3338. ListView_SetItemText:=SendMessage(hwndLV, LVM_SETITEMTEXT, WPARAM(i),LPARAM(@_gnu_lvi));
  3339. end;
  3340. function ListView_SetTextBkColor(hwnd:HWND;clrTextBk : COLORREF) : LRESULT;
  3341. begin
  3342. ListView_SetTextBkColor:=SendMessage(hwnd,LVM_SETTEXTBKCOLOR,0,LPARAM(clrTextBk));
  3343. end;
  3344. function ListView_SetTextColor(hwnd:HWND;clrText : COLORREF) : LRESULT;
  3345. begin
  3346. ListView_SetTextColor:=SendMessage(hwnd,LVM_SETTEXTCOLOR,0,LPARAM(clrText));
  3347. end;
  3348. function ListView_SortItems(hwndLV:HWND;_pfnCompare:PFNLVCOMPARE;_lPrm : LPARAM) : LRESULT;
  3349. begin
  3350. ListView_SortItems:=SendMessage(hwndLV,LVM_SORTITEMS,WPARAM(_lPrm),LPARAM(_pfnCompare));
  3351. end;
  3352. function ListView_Update(hwndLV:HWND;i : longint) : LRESULT;
  3353. begin
  3354. ListView_Update:=SendMessage(hwndLV,LVM_UPDATE,WPARAM(i),0);
  3355. end;
  3356. function LocalHandle(pMem:LPCVOID):HLOCAL;
  3357. begin
  3358. LocalHandle:=HLOCAL(pMem);
  3359. end;
  3360. function LocalDiscard(hlocMem:HLOCAL):HLOCAL;
  3361. begin
  3362. LocalDiscard := LocalReAlloc(hlocMem,0,LMEM_MOVEABLE);
  3363. end;
  3364. function LocalLock(hMem:HLOCAL):LPVOID;
  3365. begin
  3366. LocalLock:=LPVOID(hMem);
  3367. end;
  3368. function LocalUnlock(hMem:HLOCAL):WINBOOL;
  3369. begin
  3370. LocalUnlock:=True;
  3371. end;
  3372. procedure MoveMemory(Destination:PVOID; Source:pointer; Length:DWORD);
  3373. begin
  3374. Move(Source^,Destination^,Length);
  3375. end;
  3376. function MsgWaitForMultipleObjects(nCount:DWORD; pHandles:LPHANDLE; fWaitAll:WINBOOL; dwMilliseconds:DWORD; dwWakeMask:DWORD):DWORD;
  3377. begin
  3378. MsgWaitForMultipleObjects:=MsgWaitForMultipleObjectsEx(nCount,pHandles,dwMilliseconds,dwWakeMask,0);
  3379. end;
  3380. function PropSheet_AddPage(hPropSheetDlg : HWND;hpage : HPROPSHEETPAGE) : LRESULT;
  3381. begin
  3382. PropSheet_AddPage:=SendMessage(hPropSheetDlg,PSM_ADDPAGE,0,LPARAM(hpage));
  3383. end;
  3384. function PropSheet_Apply(hPropSheetDlg : HWND) : LRESULT;
  3385. begin
  3386. PropSheet_Apply:=SendMessage(hPropSheetDlg,PSM_APPLY,0,0);
  3387. end;
  3388. function PropSheet_CancelToClose(hPropSheetDlg : HWND) : LRESULT;
  3389. begin
  3390. PropSheet_CancelToClose:=SendMessage(hPropSheetDlg,PSM_CANCELTOCLOSE,0,0);
  3391. end;
  3392. function PropSheet_Changed(hPropSheetDlg,hwndPage : HWND) : LRESULT;
  3393. begin
  3394. PropSheet_Changed:=SendMessage(hPropSheetDlg,PSM_CHANGED,WPARAM(hwndPage),0);
  3395. end;
  3396. function PropSheet_GetCurrentPageHwnd(hDlg : HWND) : LRESULT;
  3397. begin
  3398. PropSheet_GetCurrentPageHwnd:=SendMessage(hDlg,PSM_GETCURRENTPAGEHWND,0,0);
  3399. end;
  3400. function PropSheet_GetTabControl(hPropSheetDlg : HWND) : LRESULT;
  3401. begin
  3402. PropSheet_GetTabControl:=SendMessage(hPropSheetDlg,PSM_GETTABCONTROL,0,0);
  3403. end;
  3404. function PropSheet_IsDialogMessage(hDlg : HWND;pMsg : longint) : LRESULT;
  3405. begin
  3406. PropSheet_IsDialogMessage:=SendMessage(hDlg,PSM_ISDIALOGMESSAGE,0,LPARAM(pMsg));
  3407. end;
  3408. function PropSheet_PressButton(hPropSheetDlg : HWND;iButton : longint) : LRESULT;
  3409. begin
  3410. PropSheet_PressButton:=SendMessage(hPropSheetDlg,PSM_PRESSBUTTON,WPARAM(longint(iButton)),0);
  3411. end;
  3412. function PropSheet_QuerySiblings(hPropSheetDlg : HWND;param1,param2 : longint) : LRESULT;
  3413. begin
  3414. PropSheet_QuerySiblings:=SendMessage(hPropSheetDlg,PSM_QUERYSIBLINGS,WPARAM(param1),LPARAM(param2));
  3415. end;
  3416. function PropSheet_RebootSystem(hPropSheetDlg : HWND) : LRESULT;
  3417. begin
  3418. PropSheet_RebootSystem:=SendMessage(hPropSheetDlg,PSM_REBOOTSYSTEM,0,0);
  3419. end;
  3420. function PropSheet_RemovePage(hPropSheetDlg : HWND;hpage : HPROPSHEETPAGE; index : longint) : LRESULT;
  3421. begin
  3422. PropSheet_RemovePage:=SendMessage(hPropSheetDlg,PSM_REMOVEPAGE,WPARAM(index),LPARAM(hpage));
  3423. end;
  3424. function PropSheet_RestartWindows(hPropSheetDlg : HWND) : LRESULT;
  3425. begin
  3426. PropSheet_RestartWindows:=SendMessage(hPropSheetDlg,PSM_RESTARTWINDOWS,0,0);
  3427. end;
  3428. function PropSheet_SetCurSel(hPropSheetDlg : HWND;hpage : HPROPSHEETPAGE; index : longint) : LRESULT;
  3429. begin
  3430. PropSheet_SetCurSel:=SendMessage(hPropSheetDlg,PSM_SETCURSEL,WPARAM(index),LPARAM(hpage));
  3431. end;
  3432. function PropSheet_SetCurSelByID(hPropSheetDlg : HWND; id : longint) : LRESULT;
  3433. begin
  3434. PropSheet_SetCurSelByID:=SendMessage(hPropSheetDlg,PSM_SETCURSELID,0,LPARAM(id));
  3435. end;
  3436. function PropSheet_SetFinishText(hPropSheetDlg:HWND;lpszText : LPTSTR) : LRESULT;
  3437. begin
  3438. PropSheet_SetFinishText:=SendMessage(hPropSheetDlg,PSM_SETFINISHTEXT,0,LPARAM(lpszText));
  3439. end;
  3440. function PropSheet_SetTitle(hPropSheetDlg:HWND;dwStyle:DWORD;lpszText : LPCTSTR) : LRESULT;
  3441. begin
  3442. PropSheet_SetTitle:=SendMessage(hPropSheetDlg,PSM_SETTITLE,WPARAM(dwStyle),LPARAM(lpszText));
  3443. end;
  3444. function PropSheet_SetWizButtons(hPropSheetDlg:HWND;dwFlags : DWORD) : LRESULT;
  3445. begin
  3446. PropSheet_SetWizButtons:=SendMessage(hPropSheetDlg,PSM_SETWIZBUTTONS,0,LPARAM(dwFlags));
  3447. end;
  3448. function PropSheet_UnChanged(hPropSheetDlg:HWND;hwndPage : HWND) : LRESULT;
  3449. begin
  3450. PropSheet_UnChanged:=SendMessage(hPropSheetDlg,PSM_UNCHANGED,WPARAM(hwndPage),0);
  3451. end;
  3452. function PulseEvent(hEvent:HWND):WINBOOL;
  3453. begin
  3454. PulseEvent:=EventModify(hEvent,EVENT_PULSE);
  3455. end;
  3456. function ResetEvent(hEvent:HWND):WINBOOL;
  3457. begin
  3458. ResetEvent:=EventModify(hEvent,EVENT_RESET);
  3459. end;
  3460. function SetEvent(hEvent:HWND):WINBOOL;
  3461. begin
  3462. SetEvent:=EventModify(hEvent,EVENT_SET);
  3463. end;
  3464. function SNDMSG(hWnd:HWND; Msg:UINT; wParam:WPARAM; lParam:LPARAM):LRESULT;
  3465. begin
  3466. SNDMSG:=SendMessage(hWnd,Msg,wParam,lParam);
  3467. end;
  3468. function TabCtrl_GetImageList(hwnd : HWND) : LRESULT;
  3469. begin
  3470. TabCtrl_GetImageList:=SendMessage(hwnd,TCM_GETIMAGELIST,0,0);
  3471. end;
  3472. function TabCtrl_SetImageList(hwnd:HWND;himl : HIMAGELIST) : LRESULT;
  3473. begin
  3474. TabCtrl_SetImageList:=SendMessage(hwnd,TCM_SETIMAGELIST,0,LPARAM(UINT(himl)));
  3475. end;
  3476. function TabCtrl_GetItemCount(hwnd : HWND) : LRESULT;
  3477. begin
  3478. TabCtrl_GetItemCount:=SendMessage(hwnd,TCM_GETITEMCOUNT,0,0);
  3479. end;
  3480. function TabCtrl_GetItem(hwnd:HWND;iItem : longint;var item : TC_ITEM) : LRESULT;
  3481. begin
  3482. TabCtrl_GetItem:=SendMessage(hwnd,TCM_GETITEM,WPARAM(iItem),LPARAM(@item));
  3483. end;
  3484. function TabCtrl_SetItem(hwnd:HWND;iItem : longint;var item : TC_ITEM) : LRESULT;
  3485. begin
  3486. TabCtrl_SetItem:=SendMessage(hwnd,TCM_SETITEM,WPARAM(iItem),LPARAM(@item));
  3487. end;
  3488. function TabCtrl_InsertItem(hwnd:HWND;iItem : longint;var item : TC_ITEM) : LRESULT;
  3489. begin
  3490. TabCtrl_InsertItem:=SendMessage(hwnd,TCM_INSERTITEM,WPARAM(iItem),LPARAM(@item));
  3491. end;
  3492. function TabCtrl_DeleteItem(hwnd:HWND;i : longint) : LRESULT;
  3493. begin
  3494. TabCtrl_DeleteItem:=SendMessage(hwnd,TCM_DELETEITEM,WPARAM(i),0);
  3495. end;
  3496. function TabCtrl_DeleteAllItems(hwnd : HWND) : LRESULT;
  3497. begin
  3498. TabCtrl_DeleteAllItems:=SendMessage(hwnd,TCM_DELETEALLITEMS,0,0);
  3499. end;
  3500. function TabCtrl_GetItemRect(hwnd:HWND;i : longint;var rc : RECT) : LRESULT;
  3501. begin
  3502. TabCtrl_GetItemRect:=SendMessage(hwnd,TCM_GETITEMRECT,WPARAM(longint(i)),LPARAM(@rc));
  3503. end;
  3504. function TabCtrl_GetCurSel(hwnd : HWND) : LRESULT;
  3505. begin
  3506. TabCtrl_GetCurSel:=SendMessage(hwnd,TCM_GETCURSEL,0,0);
  3507. end;
  3508. function TabCtrl_SetCurSel(hwnd:HWND;i : longint) : LRESULT;
  3509. begin
  3510. TabCtrl_SetCurSel:=SendMessage(hwnd,TCM_SETCURSEL,WPARAM(i),0);
  3511. end;
  3512. function TabCtrl_HitTest(hwndTC:HWND;var info : TC_HITTESTINFO) : LRESULT;
  3513. begin
  3514. TabCtrl_HitTest:=SendMessage(hwndTC,TCM_HITTEST,0,LPARAM(@info));
  3515. end;
  3516. function TabCtrl_SetItemExtra(hwndTC:HWND;cb : longint) : LRESULT;
  3517. begin
  3518. TabCtrl_SetItemExtra:=SendMessage(hwndTC,TCM_SETITEMEXTRA,WPARAM(cb),0);
  3519. end;
  3520. function TabCtrl_AdjustRect(hwnd:HWND;bLarger:WINBOOL;var rc : RECT) : LRESULT;
  3521. begin
  3522. TabCtrl_AdjustRect:=SendMessage(hwnd,TCM_ADJUSTRECT,WPARAM(bLarger),LPARAM(@rc));
  3523. end;
  3524. function TabCtrl_SetItemSize(hwnd:HWND;x,y : longint) : LRESULT;
  3525. begin
  3526. TabCtrl_SetItemSize:=SendMessage(hwnd,TCM_SETITEMSIZE,0,MAKELPARAM(x,y));
  3527. end;
  3528. function TabCtrl_RemoveImage(hwnd:HWND;i : WPARAM) : LRESULT;
  3529. begin
  3530. TabCtrl_RemoveImage:=SendMessage(hwnd,TCM_REMOVEIMAGE,i,0);
  3531. end;
  3532. function TabCtrl_SetPadding(hwnd:HWND;cx,cy : longint) : LRESULT;
  3533. begin
  3534. TabCtrl_SetPadding:=SendMessage(hwnd,TCM_SETPADDING,0,MAKELPARAM(cx,cy));
  3535. end;
  3536. function TabCtrl_GetRowCount(hwnd : HWND) : LRESULT;
  3537. begin
  3538. TabCtrl_GetRowCount:=SendMessage(hwnd,TCM_GETROWCOUNT,0,0);
  3539. end;
  3540. function TabCtrl_GetToolTips(hwnd : HWND) : LRESULT;
  3541. begin
  3542. TabCtrl_GetToolTips:=SendMessage(hwnd,TCM_GETTOOLTIPS,0,0);
  3543. end;
  3544. function TabCtrl_SetToolTips(hwnd:HWND;hwndTT : longint) : LRESULT;
  3545. begin
  3546. TabCtrl_SetToolTips:=SendMessage(hwnd,TCM_SETTOOLTIPS,WPARAM(hwndTT),0);
  3547. end;
  3548. function TabCtrl_GetCurFocus(hwnd : HWND) : LRESULT;
  3549. begin
  3550. TabCtrl_GetCurFocus:=SendMessage(hwnd,TCM_GETCURFOCUS,0,0);
  3551. end;
  3552. function TlsAlloc:DWORD;
  3553. begin
  3554. TlsAlloc:=TlsCall(TLS_FUNCALLOC, 0);
  3555. end;
  3556. function TlsFree(dwTlsIndex:DWORD):WINBOOL;
  3557. begin
  3558. TlsFree:=WINBOOL(TlsCall(TLS_FUNCFREE, dwTlsIndex));
  3559. end;
  3560. function TabCtrl_SetCurFocus(hwnd:HWND;i : longint) : LRESULT;
  3561. begin
  3562. TabCtrl_SetCurFocus:=SendMessage(hwnd,TCM_SETCURFOCUS,i,0);
  3563. end;
  3564. function TrackPopupMenu(hMenu:HMENU; uFlags:UINT; x:longint; y:longint; nReserved:longint;hWnd:HWND; prcRect: PRect):WINBOOL;
  3565. begin
  3566. TrackPopupMenu:=TrackPopupMenuEx(hMenu,uFlags,x,y,hWnd,nil);
  3567. end;
  3568. function TreeView_InsertItem(hwnd:HWND;lpis : LPTV_INSERTSTRUCT) : LRESULT;
  3569. begin
  3570. TreeView_InsertItem:=SendMessage(hwnd,TVM_INSERTITEM,0,LPARAM(lpis));
  3571. end;
  3572. function TreeView_DeleteItem(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3573. begin
  3574. TreeView_DeleteItem:=SendMessage(hwnd,TVM_DELETEITEM,0,LPARAM(hitem));
  3575. end;
  3576. function TreeView_DeleteAllItems(hwnd : HWND) : LRESULT;
  3577. begin
  3578. TreeView_DeleteAllItems:=SendMessage(hwnd,TVM_DELETEITEM,0,LPARAM(TVI_ROOT));
  3579. end;
  3580. function TreeView_Expand(hwnd:HWND;hitem:HTREEITEM;code : longint) : LRESULT;
  3581. begin
  3582. TreeView_Expand:=SendMessage(hwnd,TVM_EXPAND,WPARAM(code),LPARAM(hitem));
  3583. end;
  3584. function TreeView_GetCount(hwnd : HWND) : LRESULT;
  3585. begin
  3586. TreeView_GetCount:=SendMessage(hwnd,TVM_GETCOUNT,0,0);
  3587. end;
  3588. function TreeView_GetIndent(hwnd : HWND) : LRESULT;
  3589. begin
  3590. TreeView_GetIndent:=SendMessage(hwnd,TVM_GETINDENT,0,0);
  3591. end;
  3592. function TreeView_SetIndent(hwnd:HWND;indent : longint) : LRESULT;
  3593. begin
  3594. TreeView_SetIndent:=SendMessage(hwnd,TVM_SETINDENT,WPARAM(indent),0);
  3595. end;
  3596. function TreeView_GetImageList(hwnd:HWND;iImage : WPARAM) : LRESULT;
  3597. begin
  3598. TreeView_GetImageList:=SendMessage(hwnd,TVM_GETIMAGELIST,iImage,0);
  3599. end;
  3600. function TreeView_SetImageList(hwnd:HWND;himl:HIMAGELIST;iImage : WPARAM) : LRESULT;
  3601. begin
  3602. TreeView_SetImageList:=SendMessage(hwnd,TVM_SETIMAGELIST,iImage,LPARAM(UINT(himl)));
  3603. end;
  3604. function TreeView_GetNextItem(hwnd:HWND;hitem:HTREEITEM;code : longint) : LRESULT;
  3605. begin
  3606. TreeView_GetNextItem:=SendMessage(hwnd,TVM_GETNEXTITEM,WPARAM(code),LPARAM(hitem));
  3607. end;
  3608. function TreeView_GetChild(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3609. begin
  3610. TreeView_GetChild:=TreeView_GetNextItem(hwnd,hitem,TVGN_CHILD);
  3611. end;
  3612. function TreeView_GetNextSibling(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3613. begin
  3614. TreeView_GetNextSibling:=TreeView_GetNextItem(hwnd,hitem,TVGN_NEXT);
  3615. end;
  3616. function TreeView_GetPrevSibling(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3617. begin
  3618. TreeView_GetPrevSibling:=TreeView_GetNextItem(hwnd,hitem,TVGN_PREVIOUS);
  3619. end;
  3620. function TreeView_GetParent(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3621. begin
  3622. TreeView_GetParent:=TreeView_GetNextItem(hwnd,hitem,TVGN_PARENT);
  3623. end;
  3624. function TreeView_GetFirstVisible(hwnd : HWND) : LRESULT;
  3625. begin
  3626. TreeView_GetFirstVisible:=TreeView_GetNextItem(hwnd,HTREEITEM(nil),TVGN_FIRSTVISIBLE);
  3627. end;
  3628. function TreeView_GetNextVisible(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3629. begin
  3630. TreeView_GetNextVisible:=TreeView_GetNextItem(hwnd,hitem,TVGN_NEXTVISIBLE);
  3631. end;
  3632. function TreeView_GetPrevVisible(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3633. begin
  3634. TreeView_GetPrevVisible:=TreeView_GetNextItem(hwnd,hitem,TVGN_PREVIOUSVISIBLE);
  3635. end;
  3636. function TreeView_GetSelection(hwnd : HWND) : LRESULT;
  3637. begin
  3638. TreeView_GetSelection:=TreeView_GetNextItem(hwnd,HTREEITEM(nil),TVGN_CARET);
  3639. end;
  3640. function TreeView_GetDropHilight(hwnd : HWND) : LRESULT;
  3641. begin
  3642. TreeView_GetDropHilight:=TreeView_GetNextItem(hwnd,HTREEITEM(nil),TVGN_DROPHILITE);
  3643. end;
  3644. function TreeView_GetRoot(hwnd : HWND) : LRESULT;
  3645. begin
  3646. TreeView_GetRoot:=TreeView_GetNextItem(hwnd,HTREEITEM(nil),TVGN_ROOT);
  3647. end;
  3648. function TreeView_Select(hwnd:HWND;hitem:HTREEITEM;code : longint) : LRESULT;
  3649. begin
  3650. TreeView_Select:=SendMessage(hwnd,TVM_SELECTITEM,WPARAM(code),LPARAM(hitem));
  3651. end;
  3652. function TreeView_SelectItem(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3653. begin
  3654. TreeView_SelectItem:=TreeView_Select(hwnd,hitem,TVGN_CARET);
  3655. end;
  3656. function TreeView_SelectDropTarget(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3657. begin
  3658. TreeView_SelectDropTarget:=TreeView_Select(hwnd,hitem,TVGN_DROPHILITE);
  3659. end;
  3660. function TreeView_SelectSetFirstVisible(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3661. begin
  3662. TreeView_SelectSetFirstVisible:=TreeView_Select(hwnd,hitem,TVGN_FIRSTVISIBLE);
  3663. end;
  3664. function TreeView_GetItem(hwnd:HWND;var item : TV_ITEM) : LRESULT;
  3665. begin
  3666. TreeView_GetItem:=SendMessage(hwnd,TVM_GETITEM,0,LPARAM(@item));
  3667. end;
  3668. function TreeView_SetItem(hwnd:HWND;var item : TV_ITEM) : LRESULT;
  3669. begin
  3670. TreeView_SetItem:=SendMessage(hwnd,TVM_SETITEM,0,LPARAM(@item));
  3671. end;
  3672. function TreeView_EditLabel(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3673. begin
  3674. TreeView_EditLabel:=SendMessage(hwnd,TVM_EDITLABEL,0,LPARAM(hitem));
  3675. end;
  3676. function TreeView_GetEditControl(hwnd : HWND) : LRESULT;
  3677. begin
  3678. TreeView_GetEditControl:=SendMessage(hwnd,TVM_GETEDITCONTROL,0,0);
  3679. end;
  3680. function TreeView_GetVisibleCount(hwnd : HWND) : LRESULT;
  3681. begin
  3682. TreeView_GetVisibleCount:=SendMessage(hwnd,TVM_GETVISIBLECOUNT,0,0);
  3683. end;
  3684. function TreeView_HitTest(hwnd:HWND;lpht : LPTV_HITTESTINFO) : LRESULT;
  3685. begin
  3686. TreeView_HitTest:=SendMessage(hwnd,TVM_HITTEST,0,LPARAM(lpht));
  3687. end;
  3688. function TreeView_CreateDragImage(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3689. begin
  3690. TreeView_CreateDragImage:=SendMessage(hwnd,TVM_CREATEDRAGIMAGE,0,LPARAM(hitem));
  3691. end;
  3692. function TreeView_SortChildren(hwnd:HWND;hitem:HTREEITEM;recurse : longint) : LRESULT;
  3693. begin
  3694. TreeView_SortChildren:=SendMessage(hwnd,TVM_SORTCHILDREN,WPARAM(recurse),LPARAM(hitem));
  3695. end;
  3696. function TreeView_EnsureVisible(hwnd:HWND;hitem : HTREEITEM) : LRESULT;
  3697. begin
  3698. TreeView_EnsureVisible:=SendMessage(hwnd,TVM_ENSUREVISIBLE,0,LPARAM(hitem));
  3699. end;
  3700. function TreeView_SortChildrenCB(hwnd:HWND;psort:LPTV_SORTCB;recurse : longint) : LRESULT;
  3701. begin
  3702. TreeView_SortChildrenCB:=SendMessage(hwnd,TVM_SORTCHILDRENCB,WPARAM(recurse),LPARAM(psort));
  3703. end;
  3704. function TreeView_EndEditLabelNow(hwnd:HWND;fCancel : longint) : LRESULT;
  3705. begin
  3706. TreeView_EndEditLabelNow:=SendMessage(hwnd,TVM_ENDEDITLABELNOW,WPARAM(fCancel),0);
  3707. end;
  3708. function TreeView_GetISearchString(hwndTV:HWND;lpsz : LPTSTR) : LRESULT;
  3709. begin
  3710. TreeView_GetISearchString:=SendMessage(hwndTV,TVM_GETISEARCHSTRING,0,LPARAM(lpsz));
  3711. end;
  3712. procedure ZeroMemory(Destination:PVOID; Length:DWORD);
  3713. begin
  3714. FillChar(Destination^,Length,#0);
  3715. end;
  3716. function GetScrollPos(hWnd: HWND; nBar: LongInt): LongInt;
  3717. var
  3718. si : TScrollInfo;
  3719. begin
  3720. si.cbSize:=SizeOf(si);
  3721. si.fMask:=SIF_POS;
  3722. if GetScrollInfo(hWnd, nBar, si) then
  3723. Result:=si.nPos
  3724. else
  3725. Result:=0;
  3726. end;
  3727. function GetScrollRange(hWnd: HWND; nBar: Integer; var lpMinPos, lpMaxPos: LongInt): BOOL;
  3728. var
  3729. si : TScrollInfo;
  3730. begin
  3731. si.cbSize:=SizeOf(si);
  3732. si.fMask:=SIF_RANGE;
  3733. Result:=GetScrollInfo(hWnd, nBar, si);
  3734. if Result then begin
  3735. lpMinPos:=si.nMin;
  3736. lpMaxPos:=si.nMax;
  3737. end;
  3738. end;
  3739. function ImageList_ExtractIcon(Instance: THandle; ImageList: HIMAGELIST; Image: LongInt): HIcon;
  3740. begin
  3741. Result:=ImageList_GetIcon(ImageList, Image, 0);
  3742. end;
  3743. function ImageList_LoadBitmap(Instance: THandle; Bmp: LPCTSTR; CX, Grow: LongInt; Mask: TColorRef): HImageList;
  3744. begin
  3745. Result := ImageList_LoadImage(Instance, Bmp, CX, Grow, Mask, IMAGE_BITMAP, 0);
  3746. end;
  3747. function GetDllVersion(hMod:HMODULE):DWORD; inline;
  3748. begin
  3749. // GetProcessVersion now takes module handle
  3750. // as parameter as well as process id.
  3751. Result:=GetProcessVersion(DWORD(hMod));
  3752. end;
  3753. {$endif read_implementation}