coredll.inc 195 KB

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