coredll.inc 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426
  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. {
  11. commctrl.h
  12. Declarations for coredll WinCE API
  13. Changes :
  14. 01-27-2006 : [email protected]
  15. First release
  16. }
  17. {exported functions list = to do,
  18. * please remove functions done *
  19. Exports
  20. ordinal name
  21. 5C4 ??2@YAPAXI@Z
  22. 5C7 ??2@YAPAXIABUnothrow_t@std@@@Z
  23. 5C3 ??3@YAXPAX@Z
  24. 5C9 ??3@YAXPAXABUnothrow_t@std@@@Z
  25. 5C5 ??_U@YAPAXI@Z
  26. 5C8 ??_U@YAPAXIABUnothrow_t@std@@@Z
  27. 5C6 ??_V@YAXPAX@Z
  28. 5CA ??_V@YAXPAXABUnothrow_t@std@@@Z
  29. 47A ?DefaultImcGet@@YAKXZ
  30. 47B ?DefaultImeWndGet@@YAPAUHWND__@@XZ
  31. 47F ?ImmGetUIClassName@@YAPAGXZ
  32. 47C ?ImmProcessKey@@YAKPAUHWND__@@IJKI@Z
  33. 468 ?ImmSetActiveContext@@YAHPAUHWND__@@KH@Z
  34. 47D ?ImmTranslateMessage@@YAHPAUHWND__@@IIJHIIPAH@Z
  35. 671 ?_Nomemory@std@@YAXXZ
  36. 66F ?_Xlen@std@@YAXXZ
  37. 670 ?_Xran@std@@YAXXZ
  38. 66B ?__set_inconsistency@@YAP6AXXZP6AXXZ@Z
  39. 66E ?_inconsistency@@YAXXZ
  40. 675 ?_query_new_handler@@YAP6AHI@ZXZ
  41. 673 ?_query_new_mode@@YAHXZ
  42. 674 ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z
  43. 672 ?_set_new_mode@@YAHH@Z
  44. 690 ?nothrow@std@@3Unothrow_t@1@B
  45. 676 ?set_new_handler@@YAP6AXXZP6AXXZ@Z
  46. 669 ?set_terminate@std@@YAP6AXXZP6AXXZ@Z
  47. 66A ?set_unexpected@std@@YAP6AXXZP6AXXZ@Z
  48. 66C ?terminate@std@@YAXXZ
  49. 66D ?unexpected@std@@YAXXZ
  50. 3CE AFS_CloseAllFileHandles
  51. 3C4 AFS_CreateDirectoryW
  52. 3C8 AFS_CreateFileW
  53. 3C9 AFS_DeleteFileW
  54. 3D1 AFS_FindFirstChangeNotificationW
  55. 3CB AFS_FindFirstFileW
  56. 3CF AFS_GetDiskFreeSpace
  57. 3C6 AFS_GetFileAttributesW
  58. 3CA AFS_MoveFileW
  59. 3D0 AFS_NotifyMountedFS
  60. 3CD AFS_PrestoChangoFileName
  61. 3CC AFS_RegisterFileSystemFunction
  62. 3C5 AFS_RemoveDirectoryW
  63. 3C7 AFS_SetFileAttributesW
  64. 3C3 AFS_Unmount
  65. 693 A_SHAFinal
  66. 691 A_SHAInit
  67. 692 A_SHAUpdate
  68. 532 AbortDoc
  69. 1B8 AccessibilitySoundSentryEvent
  70. 153 ActivateDevice
  71. 154 ActivateDeviceEx
  72. 49C ActivateKeyboardLayout
  73. 16A ActivateService
  74. 35B AddEventAccess
  75. 4E3 AddFontResourceW
  76. 37A AddTrackedItem
  77. 4D4 AdjustWindowRectEx
  78. 157 AdvertiseInterface
  79. 496 AllKeys
  80. 35F AllocPhysMem
  81. 4A2 AppendMenuW
  82. E5 AttachDebugger
  83. 265 AudioUpdateFromRegistry
  84. 40A BatteryDrvrGetLevels
  85. 40B BatteryDrvrSupportsChangeNotification
  86. 40C BatteryGetLifeTimeInfo
  87. 40D BatteryNotifyOfTimeChange
  88. 1B0 BeginDeferWindowPos
  89. 195 BeginPaint
  90. 389 BinaryCompress
  91. 38A BinaryDecompress
  92. 4F2 BitBlt
  93. 1A2 BringWindowToTop
  94. 379 CacheRangeFlush
  95. 378 CacheSync
  96. 492 CallNextHookEx
  97. 1A8 CallWindowProcW
  98. 1EA CeChangeDatabaseLCID
  99. 1EF CeClearReplChangeBitsEx
  100. 2DB CeClearUserNotification
  101. 1D1 CeCreateDatabase
  102. 1D2 CeCreateDatabaseEx
  103. 1DC CeCreateDatabaseEx2
  104. 1D7 CeDeleteDatabase
  105. 1DF CeDeleteDatabaseEx
  106. 1E1 CeDeleteRecord
  107. 1E4 CeEnumDBVolumes
  108. 2E3 CeEventHasOccurred
  109. 1CF CeFindFirstDatabase
  110. 1DA CeFindFirstDatabaseEx
  111. 1D0 CeFindNextDatabase
  112. 1DB CeFindNextDatabaseEx
  113. 1E7 CeFlushDBVol
  114. 1E9 CeFreeNotification
  115. 2D3 CeGenRandom
  116. 39E CeGetCallerTrust
  117. 39D CeGetCurrentTrust
  118. 1E8 CeGetDBInformationByHandle
  119. 10A CeGetFileNotificationInfo
  120. 9D CeGetRandomSeed
  121. 1ED CeGetReplChangeBitsEx
  122. 1EB CeGetReplChangeMask
  123. 1F0 CeGetReplOtherBitsEx
  124. 313 CeGetThreadPriority
  125. 315 CeGetThreadQuantum
  126. 2E2 CeGetUserNotification
  127. 2E1 CeGetUserNotificationHandles
  128. 2DF CeGetUserNotificationPreferences
  129. 2DE CeHandleAppNotifications
  130. 96 CeLogData
  131. 98 CeLogGetZones
  132. 99 CeLogReSync
  133. 97 CeLogSetZones
  134. 359 CeMapArgumentArray
  135. 30 CeModuleJit
  136. 1E3 CeMountDBVol
  137. 104 CeOidGetInfo
  138. 105 CeOidGetInfoEx
  139. 106 CeOidGetInfoEx2
  140. 1D5 CeOpenDatabase
  141. 1D6 CeOpenDatabaseEx
  142. 1DE CeOpenDatabaseEx2
  143. 1D8 CeReadRecordProps
  144. 1E2 CeReadRecordPropsEx
  145. 177 CeRegisterFileSystemNotification
  146. 1F2 CeRegisterReplNotification
  147. 4E4 CeRemoveFontResource
  148. 15D CeResyncFilesys
  149. 2DD CeRunAppAtEvent
  150. 2DC CeRunAppAtTime
  151. 1D9 CeSeekDatabase
  152. 1E0 CeSeekDatabaseEx
  153. 1D3 CeSetDatabaseInfo
  154. 1D4 CeSetDatabaseInfoEx
  155. 1DD CeSetDatabaseInfoEx2
  156. 35A CeSetExtendedPdata
  157. E7 CeSetPowerOnEvent
  158. 309 CeSetProcessVersion
  159. 1EE CeSetReplChangeBitsEx
  160. 1EC CeSetReplChangeMask
  161. 1F1 CeSetReplOtherBitsEx
  162. 312 CeSetThreadPriority
  163. 314 CeSetThreadQuantum
  164. 2DA CeSetUserNotification
  165. 2E0 CeSetUserNotificationEx
  166. 1E6 CeUnmountDBVol
  167. 1E5 CeWriteRecordProps
  168. 2F CeZeroPointer
  169. 13E CharLowerBuffW
  170. 13D CharLowerW
  171. 142 CharNextW
  172. 141 CharPrevW
  173. 13F CharUpperBuffW
  174. 140 CharUpperW
  175. 4A8 CheckMenuItem
  176. 4A9 CheckMenuRadioItem
  177. 10B CheckPassword
  178. 3EC CheckRadioButton
  179. 18E ChildWindowFromPoint
  180. AE ClearCommBreak
  181. AF ClearCommError
  182. 18F ClientToScreen
  183. 418 ClipCursor
  184. 184 CloseAllDeviceHandles
  185. 180 CloseAllFileHandles
  186. 16D CloseAllServiceHandles
  187. 3DD CloseClipboard
  188. 533 CloseEnhMetaFile
  189. 348 CloseHandle
  190. 115 CloseMsgQueue
  191. 384 CloseProcOE
  192. 18 ComThreadBaseFunc
  193. 540 CombineRgn
  194. 51 CompactAllHeaps
  195. 1E CompareFileTime
  196. 125 CompareStringW
  197. 3B6 ConnectDebugger
  198. 304 ContinueDebugEvent
  199. 131 ConvertDefaultLocale
  200. ED CopyFileW
  201. A3 CopyRect
  202. 3E2 CountClipboardFormats
  203. 3B9 CreateAPIHandle
  204. 35C CreateAPISet
  205. A0 CreateAcceleratorTableW
  206. 4EF CreateBitmap
  207. 528 CreateBitmapFromPointer
  208. 3D2 CreateCaret
  209. 4F0 CreateCompatibleBitmap
  210. 4FC CreateCompatibleDC
  211. 3A2 CreateCrit
  212. 4FB CreateDCW
  213. 513 CreateDIBPatternBrushPt
  214. 9E CreateDIBSection
  215. 185 CreateDeviceHandle
  216. 3EA CreateDialogIndirectParamW
  217. E9 CreateDirectoryW
  218. 534 CreateEnhMetaFileW
  219. 2F7 CreateEventW
  220. 346 CreateFileForMapping
  221. 347 CreateFileForMappingW
  222. 341 CreateFileMappingW
  223. F2 CreateFileW
  224. 4E5 CreateFontIndirectW
  225. 412 CreateIconIndirect
  226. 19 CreateLocaleView
  227. 4AB CreateMenu
  228. 111 CreateMsgQueue
  229. 34A CreateMutexW
  230. 529 CreatePalette
  231. 50F CreatePatternBrush
  232. 510 CreatePen
  233. 514 CreatePenIndirect
  234. 4AC CreatePopupMenu
  235. 2F5 CreateProcessW
  236. 54C CreateRectRgn
  237. 541 CreateRectRgnIndirect
  238. 357 CreateSemaphoreW
  239. 16E CreateServiceHandle
  240. 515 CreateSolidBrush
  241. 34E CreateStaticMapping
  242. 2F4 CreateThread
  243. 187 CreateWindowExW
  244. C5 CryptAcquireContextW
  245. E1 CryptContextAddRef
  246. D0 CryptCreateHash
  247. CF CryptDecrypt
  248. C8 CryptDeriveKey
  249. D3 CryptDestroyHash
  250. C9 CryptDestroyKey
  251. E3 CryptDuplicateHash
  252. E2 CryptDuplicateKey
  253. CE CryptEncrypt
  254. DF CryptEnumProviderTypesW
  255. E0 CryptEnumProvidersW
  256. CC CryptExportKey
  257. C7 CryptGenKey
  258. D6 CryptGenRandom
  259. DE CryptGetDefaultProviderW
  260. D9 CryptGetHashParam
  261. CB CryptGetKeyParam
  262. DB CryptGetProvParam
  263. D7 CryptGetUserKey
  264. D2 CryptHashData
  265. D1 CryptHashSessionKey
  266. CD CryptImportKey
  267. 2D1 CryptProtectData
  268. C6 CryptReleaseContext
  269. DA CryptSetHashParam
  270. CA CryptSetKeyParam
  271. DC CryptSetProvParam
  272. DD CryptSetProviderExW
  273. D8 CryptSetProviderW
  274. D4 CryptSignHashW
  275. 2D2 CryptUnprotectData
  276. D5 CryptVerifySignatureW
  277. 149 DBCanonicalize
  278. C3 DDKReg_GetIsrInfo
  279. C4 DDKReg_GetPciInfo
  280. C2 DDKReg_GetWindowInfo
  281. 158 DeactivateDevice
  282. 305 DebugActiveProcess
  283. 3BF DebugNotify
  284. 38B DecompressBinaryBlock
  285. 3F0 DefDlgProcW
  286. 198 DefWindowProcW
  287. 1B1 DeferWindowPos
  288. FF DeleteAndRenameFile
  289. 7 DeleteCriticalSection
  290. 4FD DeleteDC
  291. 535 DeleteEnhMetaFile
  292. EE DeleteFileW
  293. 4AA DeleteMenu
  294. 4FE DeleteObject
  295. 37B DeleteTrackedItem
  296. 179 DeregisterAFS
  297. 17B DeregisterAFSName
  298. 150 DeregisterDevice
  299. 16C DeregisterService
  300. A1 DestroyAcceleratorTable
  301. 3D3 DestroyCaret
  302. 413 DestroyIcon
  303. 4A4 DestroyMenu
  304. 199 DestroyWindow
  305. 363 DeviceIoControl
  306. 164 DevicePowerNotify
  307. 3EB DialogBoxIndirectParamW
  308. 3DA DisableCaretSystemWide
  309. 354 DisableThreadLibraryCalls
  310. 4B3 DispatchMessageW
  311. 516 DrawEdge
  312. 517 DrawFocusRect
  313. 554 DrawFrameControl
  314. 414 DrawIconEx
  315. 4B0 DrawMenuBar
  316. 527 DrawTextW
  317. 17E DumpFileSystemHeap
  318. 30C DumpKCallProfile
  319. 362 DuplicateHandle
  320. 518 Ellipse
  321. 3E5 EmptyClipboard
  322. 3DB EnableCaretSystemWide
  323. 553 EnableEUDC
  324. 486 EnableHardwareKeyboard
  325. 4A7 EnableMenuItem
  326. 1AA EnableWindow
  327. 1B2 EndDeferWindowPos
  328. 3F1 EndDialog
  329. 536 EndDoc
  330. 537 EndPage
  331. 196 EndPaint
  332. 8 EnterCriticalSection
  333. 12D EnumCalendarInfoW
  334. 3E3 EnumClipboardFormats
  335. 12F EnumDateFormatsW
  336. BF EnumDevices
  337. 50E EnumDisplayDevices
  338. 666 EnumDisplayMonitors
  339. 50D EnumDisplaySettings
  340. 53C EnumFontFamiliesW
  341. 53D EnumFontsW
  342. BE EnumPnpIds
  343. 4DF EnumPropsEx
  344. 173 EnumServices
  345. 13C EnumSystemCodePagesW
  346. 13B EnumSystemLocalesW
  347. 12E EnumTimeFormatsW
  348. 14D EnumUILanguagesW
  349. 1AE EnumWindows
  350. A4 EqualRect
  351. 9F EqualRgn
  352. B0 EscapeCommFunction
  353. 2F6 EventModify
  354. 542 ExcludeClipRect
  355. A ExitThread
  356. 54F ExtCreateRegion
  357. 4FA ExtEscape
  358. 4E6 ExtTextOutW
  359. 411 ExtractIconExW
  360. 374 ExtractResource
  361. 17F FileSystemPowerFunction
  362. 21 FileTimeToLocalFileTime
  363. 20 FileTimeToSystemTime
  364. 519 FillRect
  365. 511 FillRgn
  366. 381 FilterTrackedItem
  367. FD FindClose
  368. 109 FindCloseChangeNotification
  369. 107 FindFirstChangeNotificationW
  370. F1 FindFirstFileExW
  371. F0 FindFirstFileW
  372. 108 FindNextChangeNotification
  373. FE FindNextFileW
  374. 326 FindResource
  375. 327 FindResourceW
  376. 1A9 FindWindowW
  377. F9 FlushFileBuffers
  378. 308 FlushInstructionCache
  379. 344 FlushViewOfFile
  380. 345 FlushViewOfFileMaybe
  381. 13A FoldStringW
  382. 334 ForcePageout
  383. 14E FormatMessageW
  384. 3AC FreeIntChainHandler
  385. 324 FreeLibrary
  386. 351 FreeLibraryAndExitThread
  387. 360 FreePhysMem
  388. 118 GetACP
  389. 2C GetAPIAddress
  390. 400 GetActiveWindow
  391. 1C1 GetAssociatedMenu
  392. 487 GetAsyncKeyState
  393. 48F GetAsyncShiftFlags
  394. 4FF GetBkColor
  395. 500 GetBkMode
  396. 11A GetCPInfo
  397. 2E GetCRTFlags
  398. 2D GetCRTStorageEx
  399. 33F GetCallStackSnapshot
  400. 398 GetCallerProcess
  401. 3BE GetCallerProcessIndex
  402. 401 GetCapture
  403. 3D9 GetCaretBlinkTime
  404. 3D7 GetCaretPos
  405. 4EE GetCharABCWidths
  406. 4ED GetCharWidth32
  407. 4C8 GetClassInfoW
  408. 4CB GetClassLong
  409. 4C9 GetClassLongW
  410. 1A6 GetClassNameW
  411. 18A GetClientRect
  412. 543 GetClipBox
  413. 419 GetClipCursor
  414. 544 GetClipRgn
  415. 3E0 GetClipboardData
  416. 3E9 GetClipboardDataAlloc
  417. 3E4 GetClipboardFormatNameW
  418. 3DE GetClipboardOwner
  419. B1 GetCommMask
  420. B2 GetCommModemStatus
  421. B3 GetCommProperties
  422. B4 GetCommState
  423. B5 GetCommTimeouts
  424. 353 GetCommandLineW
  425. 12C GetCurrencyFormatW
  426. 29 GetCurrentFT
  427. 501 GetCurrentObject
  428. 39F GetCurrentPermissions
  429. 526 GetCurrentPositionEx
  430. 41A GetCursor
  431. 41B GetCursorPos
  432. 4D1 GetDC
  433. 197 GetDCEx
  434. 50B GetDIBColorTable
  435. 12A GetDateFormatW
  436. 1B3 GetDesktopWindow
  437. 186 GetDeviceByIndex
  438. 502 GetDeviceCaps
  439. C0 GetDeviceKeys
  440. 168 GetDevicePower
  441. 3F4 GetDialogBaseUnits
  442. 100 GetDiskFreeSpaceExW
  443. 3F3 GetDlgCtrlID
  444. 3F2 GetDlgItem
  445. 3F5 GetDlgItemInt
  446. 3EF GetDlgItemTextW
  447. 4D5 GetDoubleClickTime
  448. 2FA GetEventData
  449. 319 GetExitCodeProcess
  450. 318 GetExitCodeThread
  451. 394 GetFSHeapInfo
  452. 101 GetFileAttributesExW
  453. EF GetFileAttributesW
  454. F8 GetFileInformationByHandle
  455. F6 GetFileSize
  456. FA GetFileTime
  457. 32D GetFileVersionInfoSizeW
  458. 32C GetFileVersionInfoW
  459. 3FF GetFocus
  460. 407 GetForegroundInfo
  461. 409 GetForegroundKeyboardLayoutHandle
  462. 408 GetForegroundKeyboardTarget
  463. 3FB GetForegroundWindow
  464. 50 GetHeapSnapshot
  465. 399 GetIdleTime
  466. 37D GetKPhys
  467. 4B4 GetKeyState
  468. 49A GetKeyboardLayout
  469. 498 GetKeyboardLayoutList
  470. 49B GetKeyboardLayoutNameW
  471. 488 GetKeyboardStatus
  472. 405 GetKeyboardTarget
  473. 497 GetKeyboardType
  474. 316 GetLastError
  475. 23 GetLocalTime
  476. 127 GetLocaleInfoW
  477. 4AE GetMenuItemInfoW
  478. 4B6 GetMessagePos
  479. 4C3 GetMessageQueueReadyTimeStamp
  480. 4BF GetMessageSource
  481. 4B5 GetMessageW
  482. 4B7 GetMessageWNoWait
  483. 330 GetModuleFileNameW
  484. 331 GetModuleHandleW
  485. 30B GetModuleInformation
  486. 665 GetMonitorInfo
  487. 481 GetMouseMovePoints
  488. 114 GetMsgQueueInfo
  489. 52E GetNearestColor
  490. 52A GetNearestPaletteIndex
  491. 3F7 GetNextDlgGroupItem
  492. 3F6 GetNextDlgTabItem
  493. 12B GetNumberFormatW
  494. 119 GetOEMCP
  495. 503 GetObjectType
  496. 504 GetObjectW
  497. 3E8 GetOpenClipboardWindow
  498. 2EF GetOpenFileNameW
  499. 397 GetOwnerProcess
  500. 52B GetPaletteEntries
  501. 19D GetParent
  502. 10D GetPasswordActive
  503. 110 GetPasswordStatus
  504. 51A GetPixel
  505. 3E7 GetPriorityClipboardFormat
  506. 1B6 GetPrivateCallbacks
  507. 393 GetProcAddrBits
  508. 352 GetProcAddressA
  509. 325 GetProcAddressW
  510. 391 GetProcFromPtr
  511. 3A8 GetProcName
  512. 4E GetProcessHeap
  513. 3BD GetProcessIDFromIndex
  514. 3BC GetProcessIndexFromID
  515. 32F GetProcessVersion
  516. 4DD GetProp
  517. 4C1 GetQueueStatus
  518. 371 GetRealTime
  519. 545 GetRegionData
  520. 546 GetRgnBox
  521. 377 GetRomFileBytes
  522. 376 GetRomFileInfo
  523. 2F0 GetSaveFileNameW
  524. 558 GetScrollInfo
  525. 16F GetServiceByIndex
  526. 174 GetServiceHandle
  527. 5CB GetStdioPathW
  528. 505 GetStockObject
  529. 102 GetStoreInformation
  530. 139 GetStringTypeExW
  531. 138 GetStringTypeW
  532. 4AF GetSubMenu
  533. 4D6 GetSysColor
  534. 51B GetSysColorBrush
  535. 134 GetSystemDefaultLCID
  536. 132 GetSystemDefaultLangID
  537. 14A GetSystemDefaultUILanguage
  538. 337 GetSystemInfo
  539. 17C GetSystemMemoryDivision
  540. 4CF GetSystemMetrics
  541. 52C GetSystemPaletteEntries
  542. 15E GetSystemPowerState
  543. 40E GetSystemPowerStatusEx
  544. 40F GetSystemPowerStatusEx2
  545. 25 GetSystemTime
  546. 356 GetTempFileNameW
  547. EB GetTempPathW
  548. 4EC GetTextAlign
  549. 506 GetTextColor
  550. 4E7 GetTextExtentExPointW
  551. 53E GetTextFaceW
  552. 4E8 GetTextMetricsW
  553. 301 GetThreadContext
  554. 311 GetThreadPriority
  555. 335 GetThreadTimes
  556. 32E GetTickCount
  557. 129 GetTimeFormatW
  558. 27 GetTimeZoneInformation
  559. 1A1 GetUpdateRect
  560. 1A0 GetUpdateRgn
  561. 136 GetUserDefaultLCID
  562. 133 GetUserDefaultLangID
  563. 14B GetUserDefaultUILanguage
  564. 2D0 GetUserDirectory
  565. 2BE GetUserNameExW
  566. 1C GetVersionEx
  567. 1D GetVersionExW
  568. 18C GetWindow
  569. 4D2 GetWindowDC
  570. 194 GetWindowLongW
  571. 189 GetWindowRect
  572. 1B5 GetWindowRgn
  573. 1A3 GetWindowTextLengthW
  574. 192 GetWindowTextW
  575. 1B7 GetWindowTextWDirect
  576. 1AF GetWindowThreadProcessId
  577. 37E GiveKPhys
  578. 4E0 GlobalAddAtomW
  579. 4E1 GlobalDeleteAtom
  580. 4E2 GlobalFindAtomW
  581. 9B GlobalMemoryStatus
  582. 531 GradientFill
  583. 1C2 GwesPowerDown
  584. 1BF GwesPowerOffSystem
  585. 1C3 GwesPowerUp
  586. 45 HeapAlloc
  587. 46 HeapAllocTrace
  588. 41 HeapCreate
  589. 43 HeapDestroy
  590. 4C HeapFree
  591. 48 HeapReAlloc
  592. 4A HeapSize
  593. 4F HeapValidate
  594. 3D4 HideCaret
  595. 420 ImageList_Add
  596. 421 ImageList_AddMasked
  597. 422 ImageList_BeginDrag
  598. 43D ImageList_Copy
  599. 423 ImageList_CopyDitherImage
  600. 424 ImageList_Create
  601. 425 ImageList_Destroy
  602. 426 ImageList_DragEnter
  603. 427 ImageList_DragLeave
  604. 428 ImageList_DragMove
  605. 429 ImageList_DragShowNolock
  606. 42A ImageList_Draw
  607. 42B ImageList_DrawEx
  608. 42C ImageList_DrawIndirect
  609. 43E ImageList_Duplicate
  610. 42D ImageList_EndDrag
  611. 42E ImageList_GetBkColor
  612. 42F ImageList_GetDragImage
  613. 430 ImageList_GetIcon
  614. 431 ImageList_GetIconSize
  615. 432 ImageList_GetImageCount
  616. 433 ImageList_GetImageInfo
  617. 434 ImageList_LoadImage
  618. 435 ImageList_Merge
  619. 436 ImageList_Remove
  620. 437 ImageList_Replace
  621. 438 ImageList_ReplaceIcon
  622. 439 ImageList_SetBkColor
  623. 43A ImageList_SetDragCursorImage
  624. 43B ImageList_SetIconSize
  625. 43F ImageList_SetImageCount
  626. 43C ImageList_SetOverlayImage
  627. 44C ImmAssociateContext
  628. 476 ImmAssociateContextEx
  629. 44D ImmConfigureIMEW
  630. 44A ImmCreateContext
  631. 44E ImmCreateIMCC
  632. 44B ImmDestroyContext
  633. 44F ImmDestroyIMCC
  634. 443 ImmDisableIME
  635. 444 ImmEnableIME
  636. 450 ImmEnumRegisterWordW
  637. 451 ImmEscapeW
  638. 452 ImmGenerateMessage
  639. 454 ImmGetCandidateListCountW
  640. 453 ImmGetCandidateListW
  641. 455 ImmGetCandidateWindow
  642. 456 ImmGetCompositionFontW
  643. 447 ImmGetCompositionStringW
  644. 457 ImmGetCompositionWindow
  645. 440 ImmGetContext
  646. 458 ImmGetConversionListW
  647. 441 ImmGetConversionStatus
  648. 459 ImmGetDefaultIMEWnd
  649. 45A ImmGetDescriptionW
  650. 45B ImmGetGuideLineW
  651. 46E ImmGetHotKey
  652. 45C ImmGetIMCCLockCount
  653. 45D ImmGetIMCCSize
  654. 45E ImmGetIMCLockCount
  655. 477 ImmGetIMEFileNameW
  656. 479 ImmGetImeMenuItemsW
  657. 449 ImmGetKeyboardLayout
  658. 45F ImmGetOpenStatus
  659. 460 ImmGetProperty
  660. 461 ImmGetRegisterWordStyleW
  661. 471 ImmGetStatusWindowPos
  662. 478 ImmGetVirtualKey
  663. 448 ImmIsIME
  664. 462 ImmIsUIMessageW
  665. 463 ImmLockIMC
  666. 464 ImmLockIMCC
  667. 442 ImmNotifyIME
  668. 465 ImmReSizeIMCC
  669. 466 ImmRegisterWordW
  670. 445 ImmReleaseContext
  671. 480 ImmRequestMessageW
  672. 467 ImmSIPanelState
  673. 469 ImmSetCandidateWindow
  674. 46A ImmSetCompositionFontW
  675. 46B ImmSetCompositionStringW
  676. 46C ImmSetCompositionWindow
  677. 446 ImmSetConversionStatus
  678. 46D ImmSetHotKey
  679. 47E ImmSetImeWndIMC
  680. 46F ImmSetOpenStatus
  681. 470 ImmSetStatusWindowPos
  682. 472 ImmSimulateHotKey
  683. 473 ImmUnlockIMC
  684. 474 ImmUnlockIMCC
  685. 475 ImmUnregisterWordW
  686. 4C0 InSendMessage
  687. A5 InflateRect
  688. D InitLocale
  689. 6 InitializeCriticalSection
  690. 38C InputDebugCharW
  691. 4A1 InsertMenuW
  692. 349 Int_CloseHandle
  693. 2F8 Int_CreateEventW
  694. 47 Int_HeapAlloc
  695. 42 Int_HeapCreate
  696. 44 Int_HeapDestroy
  697. 4D Int_HeapFree
  698. 49 Int_HeapReAlloc
  699. 4B Int_HeapSize
  700. 15 InterlockedCompareExchange
  701. 12 InterlockedDecrement
  702. 13 InterlockedExchange
  703. 14 InterlockedExchangeAdd
  704. 11 InterlockedIncrement
  705. 10 InterlockedTestExchange
  706. 3B1 InterruptDisable
  707. 3B0 InterruptDone
  708. 3AE InterruptInitialize
  709. 3AF InterruptMask
  710. 547 IntersectClipRect
  711. A6 IntersectRect
  712. 18B InvalidateRect
  713. 1BA InvalidateRgn
  714. 51D InvertRect
  715. 2A IsAPIReady
  716. 31B IsBadCodePtr
  717. 392 IsBadPtr
  718. 31C IsBadReadPtr
  719. 31D IsBadWritePtr
  720. 1A4 IsChild
  721. 3E6 IsClipboardFormatAvailable
  722. 11D IsDBCSLeadByte
  723. 11E IsDBCSLeadByteEx
  724. 3F8 IsDialogMessageW
  725. E4 IsEncryptionPermitted
  726. E8 IsExiting
  727. 39B IsPrimaryThread
  728. F IsProcessDying
  729. 339 IsProcessorFeaturePresent
  730. A7 IsRectEmpty
  731. 183 IsSystemFile
  732. 117 IsValidCodePage
  733. 130 IsValidLocale
  734. 19E IsWindow
  735. 1AB IsWindowEnabled
  736. 4D0 IsWindowVisible
  737. 375 KernExtractIcons
  738. 34C KernelIoControl
  739. 34D KernelLibIoControl
  740. 489 KeybdGetDeviceInfo
  741. 48A KeybdInitStates
  742. 48B KeybdVKeyToUnicode
  743. 396 KillAllOtherThreads
  744. 4C6 KillTimer
  745. 126 LCMapStringW
  746. 38E LeaveCritSec
  747. 9 LeaveCriticalSection
  748. 525 LineTo
  749. A2 LoadAcceleratorsW
  750. 41E LoadAnimatedCursor
  751. 4C4 LoadBitmapW
  752. 417 LoadCursorW
  753. 3AA LoadDriver
  754. 151 LoadFSD
  755. 152 LoadFSDEx
  756. 415 LoadIconW
  757. 41F LoadImageW
  758. 3AB LoadIntChainHandler
  759. 3AD LoadKernelLibrary
  760. 499 LoadKeyboardLayoutW
  761. 4A6 LoadMenuW
  762. 328 LoadResource
  763. 329 LoadStringW
  764. 31 LocalAlloc
  765. 3E LocalAllocInProcess
  766. 32 LocalAllocTrace
  767. 22 LocalFileTimeToFileTime
  768. 35 LocalFree
  769. 3F LocalFreeInProcess
  770. 33 LocalReAlloc
  771. 34 LocalSize
  772. 40 LocalSizeInProcess
  773. 364 LockPages
  774. 696 MD5Final
  775. 694 MD5Init
  776. 695 MD5Update
  777. 17 MainThreadBaseFunc
  778. 34F MapCallerPtr
  779. 3F9 MapDialogRect
  780. 350 MapPtrToProcWithSize
  781. 38F MapPtrToProcess
  782. 390 MapPtrUnsecure
  783. 342 MapViewOfFile
  784. 48C MapVirtualKeyW
  785. 1A7 MapWindowPoints
  786. 4F3 MaskBlt
  787. 4B1 MessageBeep
  788. 4B2 MessageBoxW
  789. 662 MonitorFromPoint
  790. 663 MonitorFromRect
  791. 664 MonitorFromWindow
  792. EC MoveFileW
  793. 524 MoveToEx
  794. 19F MoveWindow
  795. 4BE MsgWaitForMultipleObjectsEx
  796. 123 MultiByteToWideChar
  797. 33C NKDbgPrintfW
  798. 3A7 NKTerminateThread
  799. 36F NKvDbgPrintfW
  800. 49F NLedGetDeviceInfo
  801. 4A0 NLedSetDevice
  802. 30F NotifyForceCleanboot
  803. 410 NotifyWinUserSystem
  804. A8 OffsetRect
  805. 548 OffsetRgn
  806. 3DC OpenClipboard
  807. C1 OpenDeviceKey
  808. 2F9 OpenEventW
  809. 116 OpenMsgQueue
  810. 30A OpenProcess
  811. 395 OtherThreadsRunning
  812. 336 OutputDebugStringW
  813. 3BB PPSHRestart
  814. C PSLNotify
  815. 340 PageOutModule
  816. 51C PatBlt
  817. 4B8 PeekMessageW
  818. 2D5 PegClearUserNotification
  819. 1C7 PegCreateDatabase
  820. 1CA PegDeleteDatabase
  821. 1CC PegDeleteRecord
  822. 1C5 PegFindFirstDatabase
  823. 1C6 PegFindNextDatabase
  824. 2D9 PegGetUserNotificationPreferences
  825. 2D8 PegHandleAppNotifications
  826. 103 PegOidGetInfo
  827. 1C9 PegOpenDatabase
  828. 1CD PegReadRecordProps
  829. 4E9 PegRemoveFontResource
  830. 2D7 PegRunAppAtEvent
  831. 2D6 PegRunAppAtTime
  832. 1CB PegSeekDatabase
  833. 1C8 PegSetDatabaseInfo
  834. 2D4 PegSetUserNotification
  835. 1CE PegWriteRecordProps
  836. 2F1 PerformCallBack4
  837. 538 PlayEnhMetaFile
  838. 267 PlaySoundW
  839. 51E Polygon
  840. 51F Polyline
  841. 48D PostKeybdMessage
  842. 4B9 PostMessageW
  843. 4BA PostQuitMessage
  844. 1AD PostThreadMessageW
  845. 3A3 PowerOffSystem
  846. 169 PowerPolicyNotify
  847. 37C PrintTrackedItem
  848. 373 ProcessDetachAllDLLs
  849. 94 ProfileCaptureStatus
  850. 92 ProfileStart
  851. 95 ProfileStartEx
  852. 93 ProfileStop
  853. 370 ProfileSyscall
  854. A9 PtInRect
  855. 549 PtInRegion
  856. B6 PurgeComm
  857. 484 QASetWindowsJournalHook
  858. 485 QAUnhookWindowsJournalHook
  859. 2F2 QueryAPISetID
  860. 338 QueryInstructionSet
  861. 332 QueryPerformanceCounter
  862. 333 QueryPerformanceFrequency
  863. 33A RaiseException
  864. 91 Random
  865. 1FC RasDeleteEntry
  866. 207 RasDevConfigDialogEditW
  867. 1F3 RasDial
  868. 1FE RasEnumConnections
  869. 203 RasEnumDevicesW
  870. 1F6 RasEnumEntries
  871. 1FF RasGetConnectStatus
  872. 206 RasGetDispPhoneNumW
  873. 20A RasGetEapConnectionData
  874. 208 RasGetEapUserData
  875. 200 RasGetEntryDevConfig
  876. 1F7 RasGetEntryDialParams
  877. 1F9 RasGetEntryProperties
  878. 205 RasGetLinkStatistics
  879. 204 RasGetProjectionInfoW
  880. 1F5 RasHangUp
  881. 1F4 RasHangup
  882. 202 RasIOControl
  883. 1FD RasRenameEntry
  884. 20B RasSetEapConnectionData
  885. 209 RasSetEapUserData
  886. 201 RasSetEntryDevConfig
  887. 1F8 RasSetEntryDialParams
  888. 1FA RasSetEntryProperties
  889. 1FB RasValidateEntryName
  890. F4 ReadFile
  891. 181 ReadFileWithSeek
  892. 112 ReadMsgQueue
  893. 306 ReadProcessMemory
  894. 3C0 ReadRegistryFromOEM
  895. 52F RealizePalette
  896. 54A RectInRegion
  897. 54D RectVisible
  898. 520 Rectangle
  899. 1BE RectangleAnimation
  900. 1BC RedrawWindow
  901. 383 RefreshKernelAlarm
  902. 2BF RegCloseKey
  903. 2CA RegCopyFile
  904. 2C0 RegCreateKeyExW
  905. 2C1 RegDeleteKeyW
  906. 2C2 RegDeleteValueW
  907. 2C4 RegEnumKeyExW
  908. 2C3 RegEnumValueW
  909. 2C9 RegFlushKey
  910. 2C5 RegOpenKeyExW
  911. 159 RegOpenProcessKey
  912. 2C6 RegQueryInfoKeyW
  913. 2C7 RegQueryValueExW
  914. 2CD RegReplaceKey
  915. 2CB RegRestoreFile
  916. 2CC RegSaveKey
  917. 2C8 RegSetValueExW
  918. 178 RegisterAFSEx
  919. 17A RegisterAFSName
  920. 3B8 RegisterAPISet
  921. 4CD RegisterClassW
  922. 3E1 RegisterClipboardFormatW
  923. 33D RegisterDbgZones
  924. 4DB RegisterDesktop
  925. 14F RegisterDevice
  926. 493 RegisterHotKey
  927. 165 RegisterPowerRelationship
  928. 1BD RegisterSIPanel
  929. 16B RegisterService
  930. 4D9 RegisterTaskBar
  931. 4DA RegisterTaskBarEx
  932. 380 RegisterTrackedItem
  933. 4D8 RegisterWindowMessageW
  934. E ReinitLocale
  935. 403 ReleaseCapture
  936. 4D3 ReleaseDC
  937. 34B ReleaseMutex
  938. 166 ReleasePowerRelationship
  939. 161 ReleasePowerRequirement
  940. 358 ReleaseSemaphore
  941. 36 RemoteHeapAlloc
  942. 38 RemoteHeapFree
  943. 37 RemoteHeapReAlloc
  944. 39 RemoteHeapSize
  945. 3A RemoteLocalAlloc
  946. 3D RemoteLocalFree
  947. 3B RemoteLocalReAlloc
  948. 3C RemoteLocalSize
  949. EA RemoveDirectoryW
  950. 4EA RemoveFontResourceW
  951. 4A3 RemoveMenu
  952. 4DE RemoveProp
  953. 155 RequestDeviceNotifications
  954. 162 RequestPowerNotifications
  955. 15A ResourceCreateList
  956. 15C ResourceRelease
  957. 15B ResourceRequest
  958. 4F8 RestoreDC
  959. 300 ResumeThread
  960. 521 RoundRect
  961. 2E5 SHAddToRecentDocs
  962. 2E6 SHCreateExplorerInstance
  963. 2E8 SHCreateShortcut
  964. 2EA SHCreateShortcutEx
  965. 2ED SHGetFileInfo
  966. 2E9 SHGetShortcutTarget
  967. 2EE SHGetSpecialFolderPath
  968. 2EC SHLoadDIBitmap
  969. 2EB SHShowOutOfMemory
  970. 4F9 SaveDC
  971. 190 ScreenToClient
  972. 552 ScrollDC
  973. 1AC ScrollWindowEx
  974. 54B SelectClipRgn
  975. 507 SelectObject
  976. 530 SelectPalette
  977. 3ED SendDlgItemMessageW
  978. 482 SendInput
  979. 4C2 SendMessageTimeout
  980. 4BB SendMessageW
  981. 4BC SendNotifyMessageW
  982. 171 ServiceAddPort
  983. 175 ServiceClosePort
  984. 170 ServiceIoControl
  985. 172 ServiceUnbindPorts
  986. 11B SetACP
  987. 539 SetAbortProc
  988. 3FD SetActiveWindow
  989. 1C0 SetAssociatedMenu
  990. 4F1 SetBitmapBits
  991. 508 SetBkColor
  992. 509 SetBkMode
  993. 522 SetBrushOrgEx
  994. 402 SetCapture
  995. 3D8 SetCaretBlinkTime
  996. 3D6 SetCaretPos
  997. 4CC SetClassLong
  998. 4CA SetClassLongW
  999. 3A1 SetCleanRebootFlag
  1000. 3DF SetClipboardData
  1001. B7 SetCommBreak
  1002. B8 SetCommMask
  1003. B9 SetCommState
  1004. BA SetCommTimeouts
  1005. 2CE SetCurrentUser
  1006. 416 SetCursor
  1007. 41C SetCursorPos
  1008. 50C SetDIBColorTable
  1009. 4F7 SetDIBitsToDevice
  1010. 33E SetDaylightTime
  1011. 3A4 SetDbgZone
  1012. 167 SetDevicePower
  1013. 3FA SetDlgItemInt
  1014. 3EE SetDlgItemTextW
  1015. FC SetEndOfFile
  1016. 2FB SetEventData
  1017. 37F SetExceptionHandler
  1018. F3 SetFileAttributesW
  1019. F7 SetFilePointer
  1020. FB SetFileTime
  1021. 3FE SetFocus
  1022. 3FC SetForegroundWindow
  1023. 385 SetGwesOOMEvent
  1024. 3B4 SetGwesPowerHandler
  1025. 3A9 SetHandleOwner
  1026. 3B7 SetHardwareWatch
  1027. E6 SetInterruptEvent
  1028. 3B2 SetKMode
  1029. 382 SetKernelAlarm
  1030. 404 SetKeyboardTarget
  1031. 317 SetLastError
  1032. 24 SetLocalTime
  1033. 128 SetLocaleInfoW
  1034. 39A SetLowestScheduledPriority
  1035. 4AD SetMenuItemInfoW
  1036. 11C SetOEMCP
  1037. 386 SetOOMEvent
  1038. 551 SetObjectOwner
  1039. 52D SetPaletteEntries
  1040. 19C SetParent
  1041. 10C SetPassword
  1042. 10E SetPasswordActive
  1043. 10F SetPasswordStatus
  1044. 523 SetPixel
  1045. 3B3 SetPowerOffHandler
  1046. 160 SetPowerRequirement
  1047. 39C SetProcPermissions
  1048. 4DC SetProp
  1049. 512 SetROP2
  1050. 372 SetRealTime
  1051. AA SetRect
  1052. AB SetRectEmpty
  1053. 54E SetRectRgn
  1054. 555 SetScrollInfo
  1055. 556 SetScrollPos
  1056. 557 SetScrollRange
  1057. 5CC SetStdioPathW
  1058. 4D7 SetSysColors
  1059. 135 SetSystemDefaultLCID
  1060. 17D SetSystemMemoryDivision
  1061. 15F SetSystemPowerState
  1062. 26 SetSystemTime
  1063. 4EB SetTextAlign
  1064. 50A SetTextColor
  1065. 302 SetThreadContext
  1066. 310 SetThreadPriority
  1067. 3A0 SetTimeZoneBias
  1068. 28 SetTimeZoneInformation
  1069. 4C5 SetTimer
  1070. 2CF SetUserData
  1071. 137 SetUserDefaultLCID
  1072. 14C SetUserDefaultUILanguage
  1073. 550 SetViewportOrgEx
  1074. 3B5 SetWDevicePowerHandler
  1075. 193 SetWindowLongW
  1076. 188 SetWindowPos
  1077. 1B4 SetWindowRgn
  1078. 191 SetWindowTextW
  1079. 490 SetWindowsHookExW
  1080. BB SetupComm
  1081. 2E7 ShellExecuteEx
  1082. 406 ShellModalEnd
  1083. 2E4 Shell_NotifyIcon
  1084. 3D5 ShowCaret
  1085. 41D ShowCursor
  1086. 1C4 ShowStartupWindow
  1087. 19A ShowWindow
  1088. 176 SignalStarted
  1089. 65E SipEnumIM
  1090. 65F SipGetCurrentIM
  1091. 65C SipGetInfo
  1092. 65A SipRegisterNotification
  1093. 660 SipSetCurrentIM
  1094. 661 SipSetDefaultRect
  1095. 65D SipSetInfo
  1096. 65B SipShowIM
  1097. 659 SipStatus
  1098. 32A SizeofResource
  1099. 2FC Sleep
  1100. 361 SleepTillTick
  1101. 53A StartDocW
  1102. 53B StartPage
  1103. 156 StopDeviceNotifications
  1104. 163 StopPowerNotifications
  1105. 4F4 StretchBlt
  1106. 4F6 StretchDIBits
  1107. 648 StringCbCatA
  1108. 64A StringCbCatExA
  1109. 82 StringCbCatExW
  1110. 64C StringCbCatNA
  1111. 64E StringCbCatNExA
  1112. 86 StringCbCatNExW
  1113. 84 StringCbCatNW
  1114. 80 StringCbCatW
  1115. 642 StringCbCopyA
  1116. 644 StringCbCopyExA
  1117. 7C StringCbCopyExW
  1118. 646 StringCbCopyNA
  1119. 7E StringCbCopyNW
  1120. 7A StringCbCopyW
  1121. 658 StringCbLengthA
  1122. 90 StringCbLengthW
  1123. 652 StringCbPrintfA
  1124. 654 StringCbPrintfExA
  1125. 8C StringCbPrintfExW
  1126. 8A StringCbPrintfW
  1127. 650 StringCbVPrintfA
  1128. 656 StringCbVPrintfExA
  1129. 8E StringCbVPrintfExW
  1130. 88 StringCbVPrintfW
  1131. 647 StringCchCatA
  1132. 649 StringCchCatExA
  1133. 81 StringCchCatExW
  1134. 64B StringCchCatNA
  1135. 64D StringCchCatNExA
  1136. 85 StringCchCatNExW
  1137. 83 StringCchCatNW
  1138. 7F StringCchCatW
  1139. 641 StringCchCopyA
  1140. 643 StringCchCopyExA
  1141. 7B StringCchCopyExW
  1142. 645 StringCchCopyNA
  1143. 7D StringCchCopyNW
  1144. 79 StringCchCopyW
  1145. 657 StringCchLengthA
  1146. 8F StringCchLengthW
  1147. 651 StringCchPrintfA
  1148. 653 StringCchPrintfExA
  1149. 8B StringCchPrintfExW
  1150. 89 StringCchPrintfW
  1151. 64F StringCchVPrintfA
  1152. 655 StringCchVPrintfExA
  1153. 8D StringCchVPrintfExW
  1154. 87 StringCchVPrintfW
  1155. 387 StringCompress
  1156. 388 StringDecompress
  1157. AC SubtractRect
  1158. 2FF SuspendThread
  1159. 49D SystemIdleTimerReset
  1160. 5 SystemMemoryLow
  1161. 9C SystemParametersInfoW
  1162. 4 SystemStarted
  1163. 1F SystemTimeToFileTime
  1164. 30D THCreateSnapshot
  1165. 30E THGrow
  1166. 38D TakeCritSec
  1167. 33B TerminateProcess
  1168. 2F3 TerminateThread
  1169. 366 ThreadAttachAllDLLs
  1170. 16 ThreadBaseFunc
  1171. 367 ThreadDetachAllDLLs
  1172. B ThreadExceptionExit
  1173. 31A TlsCall
  1174. 1A TlsGetValue
  1175. 1B TlsSetValue
  1176. 4C7 TouchCalibrate
  1177. 4A5 TrackPopupMenuEx
  1178. 49E TranslateAcceleratorW
  1179. 53F TranslateCharsetInfo
  1180. 4BD TranslateMessage
  1181. BC TransmitCommChar
  1182. 4F5 TransparentImage
  1183. 355 TryEnterCriticalSection
  1184. 3A6 TurnOffProfiling
  1185. 3A5 TurnOnProfiling
  1186. 36C U_rclose
  1187. 36B U_rlseek
  1188. 368 U_ropen
  1189. 369 U_rread
  1190. 36A U_rwrite
  1191. 491 UnhookWindowsHookEx
  1192. AD UnionRect
  1193. 365 UnlockPages
  1194. 343 UnmapViewOfFile
  1195. 4CE UnregisterClassW
  1196. 495 UnregisterFunc1
  1197. 494 UnregisterHotKey
  1198. 36D UpdateNLSInfo
  1199. 36E UpdateNLSInfoEx
  1200. 19B UpdateWindow
  1201. 1A5 ValidateRect
  1202. 1BB ValidateRgn
  1203. 32B VerQueryValueW
  1204. 3BA VerifyAPIHandle
  1205. 31E VirtualAlloc
  1206. 35D VirtualCopy
  1207. 31F VirtualFree
  1208. 320 VirtualProtect
  1209. 321 VirtualQuery
  1210. 35E VirtualSetAttributes
  1211. 2B3 WNetAddConnection3W
  1212. 2B4 WNetCancelConnection2W
  1213. 2BC WNetCloseEnum
  1214. 2B5 WNetConnectionDialog1W
  1215. 2B6 WNetDisconnectDialog
  1216. 2B7 WNetDisconnectDialog1W
  1217. 2BD WNetEnumResourceW
  1218. 2B8 WNetGetConnectionW
  1219. 2B9 WNetGetUniversalNameW
  1220. 2BA WNetGetUserW
  1221. 2BB WNetOpenEnumW
  1222. BD WaitCommEvent
  1223. 303 WaitForDebugEvent
  1224. 2FE WaitForMultipleObjects
  1225. 2FD WaitForSingleObject
  1226. 124 WideCharToMultiByte
  1227. 18D WindowFromPoint
  1228. 3C2 WriteDebugLED
  1229. F5 WriteFile
  1230. 182 WriteFileWithSeek
  1231. 113 WriteMsgQueue
  1232. 307 WriteProcessMemory
  1233. 3C1 WriteRegistryToOEM
  1234. 67B _CountLeadingOnes
  1235. 67C _CountLeadingOnes64
  1236. 67D _CountLeadingSigns
  1237. 67E _CountLeadingSigns64
  1238. 67F _CountLeadingZeros
  1239. 680 _CountLeadingZeros64
  1240. 681 _CountOneBits
  1241. 682 _CountOneBits64
  1242. 5BB _HUGE
  1243. 61C _InitStdioLib
  1244. 686 _MulHigh
  1245. 687 _MulUnsignedHigh
  1246. 68F _XcptFilter
  1247. 9A __C_specific_handler
  1248. 667 __CxxFrameHandler
  1249. 668 __CxxThrowException
  1250. 1 __IMPORT_DESCRIPTOR_COREDLL
  1251. 2 __NULL_IMPORT_DESCRIPTOR
  1252. 600 __addd
  1253. 5FE __adds
  1254. 5FD __cmpd
  1255. 5FC __cmps
  1256. 5FB __divd
  1257. 5FA __divs
  1258. 5F9 __dtoi
  1259. 5F8 __dtoi64
  1260. 5F7 __dtos
  1261. 5F6 __dtou
  1262. 5F5 __dtou64
  1263. 5F4 __eqd
  1264. 5F3 __eqs
  1265. 5F2 __ged
  1266. 5F1 __ges
  1267. 5F0 __gtd
  1268. 5EF __gts
  1269. 5EE __i64tod
  1270. 5ED __i64tos
  1271. 5C4 __imp_??2@YAPAXI@Z
  1272. 5C7 __imp_??2@YAPAXIABUnothrow_t@std@@@Z
  1273. 5C3 __imp_??3@YAXPAX@Z
  1274. 5C9 __imp_??3@YAXPAXABUnothrow_t@std@@@Z
  1275. 5C5 __imp_??_U@YAPAXI@Z
  1276. 5C8 __imp_??_U@YAPAXIABUnothrow_t@std@@@Z
  1277. 5C6 __imp_??_V@YAXPAX@Z
  1278. 5CA __imp_??_V@YAXPAXABUnothrow_t@std@@@Z
  1279. 47A __imp_?DefaultImcGet@@YAKXZ
  1280. 47B __imp_?DefaultImeWndGet@@YAPAUHWND__@@XZ
  1281. 47F __imp_?ImmGetUIClassName@@YAPAGXZ
  1282. 47C __imp_?ImmProcessKey@@YAKPAUHWND__@@IJKI@Z
  1283. 468 __imp_?ImmSetActiveContext@@YAHPAUHWND__@@KH@Z
  1284. 47D __imp_?ImmTranslateMessage@@YAHPAUHWND__@@IIJHIIPAH@Z
  1285. 671 __imp_?_Nomemory@std@@YAXXZ
  1286. 66F __imp_?_Xlen@std@@YAXXZ
  1287. 670 __imp_?_Xran@std@@YAXXZ
  1288. 66B __imp_?__set_inconsistency@@YAP6AXXZP6AXXZ@Z
  1289. 66E __imp_?_inconsistency@@YAXXZ
  1290. 675 __imp_?_query_new_handler@@YAP6AHI@ZXZ
  1291. 673 __imp_?_query_new_mode@@YAHXZ
  1292. 674 __imp_?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z
  1293. 672 __imp_?_set_new_mode@@YAHH@Z
  1294. 690 __imp_?nothrow@std@@3Unothrow_t@1@B
  1295. 676 __imp_?set_new_handler@@YAP6AXXZP6AXXZ@Z
  1296. 669 __imp_?set_terminate@std@@YAP6AXXZP6AXXZ@Z
  1297. 66A __imp_?set_unexpected@std@@YAP6AXXZP6AXXZ@Z
  1298. 66C __imp_?terminate@std@@YAXXZ
  1299. 66D __imp_?unexpected@std@@YAXXZ
  1300. 3CE __imp_AFS_CloseAllFileHandles
  1301. 3C4 __imp_AFS_CreateDirectoryW
  1302. 3C8 __imp_AFS_CreateFileW
  1303. 3C9 __imp_AFS_DeleteFileW
  1304. 3D1 __imp_AFS_FindFirstChangeNotificationW
  1305. 3CB __imp_AFS_FindFirstFileW
  1306. 3CF __imp_AFS_GetDiskFreeSpace
  1307. 3C6 __imp_AFS_GetFileAttributesW
  1308. 3CA __imp_AFS_MoveFileW
  1309. 3D0 __imp_AFS_NotifyMountedFS
  1310. 3CD __imp_AFS_PrestoChangoFileName
  1311. 3CC __imp_AFS_RegisterFileSystemFunction
  1312. 3C5 __imp_AFS_RemoveDirectoryW
  1313. 3C7 __imp_AFS_SetFileAttributesW
  1314. 3C3 __imp_AFS_Unmount
  1315. 693 __imp_A_SHAFinal
  1316. 691 __imp_A_SHAInit
  1317. 692 __imp_A_SHAUpdate
  1318. 532 __imp_AbortDoc
  1319. 1B8 __imp_AccessibilitySoundSentryEvent
  1320. 153 __imp_ActivateDevice
  1321. 154 __imp_ActivateDeviceEx
  1322. 49C __imp_ActivateKeyboardLayout
  1323. 16A __imp_ActivateService
  1324. 35B __imp_AddEventAccess
  1325. 4E3 __imp_AddFontResourceW
  1326. 37A __imp_AddTrackedItem
  1327. 4D4 __imp_AdjustWindowRectEx
  1328. 157 __imp_AdvertiseInterface
  1329. 496 __imp_AllKeys
  1330. 35F __imp_AllocPhysMem
  1331. 4A2 __imp_AppendMenuW
  1332. E5 __imp_AttachDebugger
  1333. 265 __imp_AudioUpdateFromRegistry
  1334. 40A __imp_BatteryDrvrGetLevels
  1335. 40B __imp_BatteryDrvrSupportsChangeNotification
  1336. 40C __imp_BatteryGetLifeTimeInfo
  1337. 40D __imp_BatteryNotifyOfTimeChange
  1338. 1B0 __imp_BeginDeferWindowPos
  1339. 195 __imp_BeginPaint
  1340. 389 __imp_BinaryCompress
  1341. 38A __imp_BinaryDecompress
  1342. 4F2 __imp_BitBlt
  1343. 1A2 __imp_BringWindowToTop
  1344. 379 __imp_CacheRangeFlush
  1345. 378 __imp_CacheSync
  1346. 492 __imp_CallNextHookEx
  1347. 1A8 __imp_CallWindowProcW
  1348. 1EA __imp_CeChangeDatabaseLCID
  1349. 1EF __imp_CeClearReplChangeBitsEx
  1350. 2DB __imp_CeClearUserNotification
  1351. 1D1 __imp_CeCreateDatabase
  1352. 1D2 __imp_CeCreateDatabaseEx
  1353. 1DC __imp_CeCreateDatabaseEx2
  1354. 1D7 __imp_CeDeleteDatabase
  1355. 1DF __imp_CeDeleteDatabaseEx
  1356. 1E1 __imp_CeDeleteRecord
  1357. 1E4 __imp_CeEnumDBVolumes
  1358. 2E3 __imp_CeEventHasOccurred
  1359. 1CF __imp_CeFindFirstDatabase
  1360. 1DA __imp_CeFindFirstDatabaseEx
  1361. 1D0 __imp_CeFindNextDatabase
  1362. 1DB __imp_CeFindNextDatabaseEx
  1363. 1E7 __imp_CeFlushDBVol
  1364. 1E9 __imp_CeFreeNotification
  1365. 2D3 __imp_CeGenRandom
  1366. 39E __imp_CeGetCallerTrust
  1367. 39D __imp_CeGetCurrentTrust
  1368. 1E8 __imp_CeGetDBInformationByHandle
  1369. 10A __imp_CeGetFileNotificationInfo
  1370. 9D __imp_CeGetRandomSeed
  1371. 1ED __imp_CeGetReplChangeBitsEx
  1372. 1EB __imp_CeGetReplChangeMask
  1373. 1F0 __imp_CeGetReplOtherBitsEx
  1374. 313 __imp_CeGetThreadPriority
  1375. 315 __imp_CeGetThreadQuantum
  1376. 2E2 __imp_CeGetUserNotification
  1377. 2E1 __imp_CeGetUserNotificationHandles
  1378. 2DF __imp_CeGetUserNotificationPreferences
  1379. 2DE __imp_CeHandleAppNotifications
  1380. 96 __imp_CeLogData
  1381. 98 __imp_CeLogGetZones
  1382. 99 __imp_CeLogReSync
  1383. 97 __imp_CeLogSetZones
  1384. 359 __imp_CeMapArgumentArray
  1385. 30 __imp_CeModuleJit
  1386. 1E3 __imp_CeMountDBVol
  1387. 104 __imp_CeOidGetInfo
  1388. 105 __imp_CeOidGetInfoEx
  1389. 106 __imp_CeOidGetInfoEx2
  1390. 1D5 __imp_CeOpenDatabase
  1391. 1D6 __imp_CeOpenDatabaseEx
  1392. 1DE __imp_CeOpenDatabaseEx2
  1393. 1D8 __imp_CeReadRecordProps
  1394. 1E2 __imp_CeReadRecordPropsEx
  1395. 177 __imp_CeRegisterFileSystemNotification
  1396. 1F2 __imp_CeRegisterReplNotification
  1397. 4E4 __imp_CeRemoveFontResource
  1398. 15D __imp_CeResyncFilesys
  1399. 2DD __imp_CeRunAppAtEvent
  1400. 2DC __imp_CeRunAppAtTime
  1401. 1D9 __imp_CeSeekDatabase
  1402. 1E0 __imp_CeSeekDatabaseEx
  1403. 1D3 __imp_CeSetDatabaseInfo
  1404. 1D4 __imp_CeSetDatabaseInfoEx
  1405. 1DD __imp_CeSetDatabaseInfoEx2
  1406. 35A __imp_CeSetExtendedPdata
  1407. E7 __imp_CeSetPowerOnEvent
  1408. 309 __imp_CeSetProcessVersion
  1409. 1EE __imp_CeSetReplChangeBitsEx
  1410. 1EC __imp_CeSetReplChangeMask
  1411. 1F1 __imp_CeSetReplOtherBitsEx
  1412. 312 __imp_CeSetThreadPriority
  1413. 314 __imp_CeSetThreadQuantum
  1414. 2DA __imp_CeSetUserNotification
  1415. 2E0 __imp_CeSetUserNotificationEx
  1416. 1E6 __imp_CeUnmountDBVol
  1417. 1E5 __imp_CeWriteRecordProps
  1418. 2F __imp_CeZeroPointer
  1419. 13E __imp_CharLowerBuffW
  1420. 13D __imp_CharLowerW
  1421. 142 __imp_CharNextW
  1422. 141 __imp_CharPrevW
  1423. 13F __imp_CharUpperBuffW
  1424. 140 __imp_CharUpperW
  1425. 4A8 __imp_CheckMenuItem
  1426. 4A9 __imp_CheckMenuRadioItem
  1427. 10B __imp_CheckPassword
  1428. 3EC __imp_CheckRadioButton
  1429. 18E __imp_ChildWindowFromPoint
  1430. AE __imp_ClearCommBreak
  1431. AF __imp_ClearCommError
  1432. 18F __imp_ClientToScreen
  1433. 418 __imp_ClipCursor
  1434. 184 __imp_CloseAllDeviceHandles
  1435. 180 __imp_CloseAllFileHandles
  1436. 16D __imp_CloseAllServiceHandles
  1437. 3DD __imp_CloseClipboard
  1438. 533 __imp_CloseEnhMetaFile
  1439. 348 __imp_CloseHandle
  1440. 115 __imp_CloseMsgQueue
  1441. 384 __imp_CloseProcOE
  1442. 18 __imp_ComThreadBaseFunc
  1443. 540 __imp_CombineRgn
  1444. 51 __imp_CompactAllHeaps
  1445. 1E __imp_CompareFileTime
  1446. 125 __imp_CompareStringW
  1447. 3B6 __imp_ConnectDebugger
  1448. 304 __imp_ContinueDebugEvent
  1449. 131 __imp_ConvertDefaultLocale
  1450. ED __imp_CopyFileW
  1451. A3 __imp_CopyRect
  1452. 3E2 __imp_CountClipboardFormats
  1453. 3B9 __imp_CreateAPIHandle
  1454. 35C __imp_CreateAPISet
  1455. A0 __imp_CreateAcceleratorTableW
  1456. 4EF __imp_CreateBitmap
  1457. 528 __imp_CreateBitmapFromPointer
  1458. 3D2 __imp_CreateCaret
  1459. 4F0 __imp_CreateCompatibleBitmap
  1460. 4FC __imp_CreateCompatibleDC
  1461. 3A2 __imp_CreateCrit
  1462. 4FB __imp_CreateDCW
  1463. 513 __imp_CreateDIBPatternBrushPt
  1464. 9E __imp_CreateDIBSection
  1465. 185 __imp_CreateDeviceHandle
  1466. 3EA __imp_CreateDialogIndirectParamW
  1467. E9 __imp_CreateDirectoryW
  1468. 534 __imp_CreateEnhMetaFileW
  1469. 2F7 __imp_CreateEventW
  1470. 346 __imp_CreateFileForMapping
  1471. 347 __imp_CreateFileForMappingW
  1472. 341 __imp_CreateFileMappingW
  1473. F2 __imp_CreateFileW
  1474. 4E5 __imp_CreateFontIndirectW
  1475. 412 __imp_CreateIconIndirect
  1476. 19 __imp_CreateLocaleView
  1477. 4AB __imp_CreateMenu
  1478. 111 __imp_CreateMsgQueue
  1479. 34A __imp_CreateMutexW
  1480. 529 __imp_CreatePalette
  1481. 50F __imp_CreatePatternBrush
  1482. 510 __imp_CreatePen
  1483. 514 __imp_CreatePenIndirect
  1484. 4AC __imp_CreatePopupMenu
  1485. 2F5 __imp_CreateProcessW
  1486. 54C __imp_CreateRectRgn
  1487. 541 __imp_CreateRectRgnIndirect
  1488. 357 __imp_CreateSemaphoreW
  1489. 16E __imp_CreateServiceHandle
  1490. 515 __imp_CreateSolidBrush
  1491. 34E __imp_CreateStaticMapping
  1492. 2F4 __imp_CreateThread
  1493. 187 __imp_CreateWindowExW
  1494. C5 __imp_CryptAcquireContextW
  1495. E1 __imp_CryptContextAddRef
  1496. D0 __imp_CryptCreateHash
  1497. CF __imp_CryptDecrypt
  1498. C8 __imp_CryptDeriveKey
  1499. D3 __imp_CryptDestroyHash
  1500. C9 __imp_CryptDestroyKey
  1501. E3 __imp_CryptDuplicateHash
  1502. E2 __imp_CryptDuplicateKey
  1503. CE __imp_CryptEncrypt
  1504. DF __imp_CryptEnumProviderTypesW
  1505. E0 __imp_CryptEnumProvidersW
  1506. CC __imp_CryptExportKey
  1507. C7 __imp_CryptGenKey
  1508. D6 __imp_CryptGenRandom
  1509. DE __imp_CryptGetDefaultProviderW
  1510. D9 __imp_CryptGetHashParam
  1511. CB __imp_CryptGetKeyParam
  1512. DB __imp_CryptGetProvParam
  1513. D7 __imp_CryptGetUserKey
  1514. D2 __imp_CryptHashData
  1515. D1 __imp_CryptHashSessionKey
  1516. CD __imp_CryptImportKey
  1517. 2D1 __imp_CryptProtectData
  1518. C6 __imp_CryptReleaseContext
  1519. DA __imp_CryptSetHashParam
  1520. CA __imp_CryptSetKeyParam
  1521. DC __imp_CryptSetProvParam
  1522. DD __imp_CryptSetProviderExW
  1523. D8 __imp_CryptSetProviderW
  1524. D4 __imp_CryptSignHashW
  1525. 2D2 __imp_CryptUnprotectData
  1526. D5 __imp_CryptVerifySignatureW
  1527. 149 __imp_DBCanonicalize
  1528. C3 __imp_DDKReg_GetIsrInfo
  1529. C4 __imp_DDKReg_GetPciInfo
  1530. C2 __imp_DDKReg_GetWindowInfo
  1531. 158 __imp_DeactivateDevice
  1532. 305 __imp_DebugActiveProcess
  1533. 3BF __imp_DebugNotify
  1534. 38B __imp_DecompressBinaryBlock
  1535. 3F0 __imp_DefDlgProcW
  1536. 198 __imp_DefWindowProcW
  1537. 1B1 __imp_DeferWindowPos
  1538. FF __imp_DeleteAndRenameFile
  1539. 7 __imp_DeleteCriticalSection
  1540. 4FD __imp_DeleteDC
  1541. 535 __imp_DeleteEnhMetaFile
  1542. EE __imp_DeleteFileW
  1543. 4AA __imp_DeleteMenu
  1544. 4FE __imp_DeleteObject
  1545. 37B __imp_DeleteTrackedItem
  1546. 179 __imp_DeregisterAFS
  1547. 17B __imp_DeregisterAFSName
  1548. 150 __imp_DeregisterDevice
  1549. 16C __imp_DeregisterService
  1550. A1 __imp_DestroyAcceleratorTable
  1551. 3D3 __imp_DestroyCaret
  1552. 413 __imp_DestroyIcon
  1553. 4A4 __imp_DestroyMenu
  1554. 199 __imp_DestroyWindow
  1555. 363 __imp_DeviceIoControl
  1556. 164 __imp_DevicePowerNotify
  1557. 3EB __imp_DialogBoxIndirectParamW
  1558. 3DA __imp_DisableCaretSystemWide
  1559. 354 __imp_DisableThreadLibraryCalls
  1560. 4B3 __imp_DispatchMessageW
  1561. 516 __imp_DrawEdge
  1562. 517 __imp_DrawFocusRect
  1563. 554 __imp_DrawFrameControl
  1564. 414 __imp_DrawIconEx
  1565. 4B0 __imp_DrawMenuBar
  1566. 527 __imp_DrawTextW
  1567. 17E __imp_DumpFileSystemHeap
  1568. 30C __imp_DumpKCallProfile
  1569. 362 __imp_DuplicateHandle
  1570. 518 __imp_Ellipse
  1571. 3E5 __imp_EmptyClipboard
  1572. 3DB __imp_EnableCaretSystemWide
  1573. 553 __imp_EnableEUDC
  1574. 486 __imp_EnableHardwareKeyboard
  1575. 4A7 __imp_EnableMenuItem
  1576. 1AA __imp_EnableWindow
  1577. 1B2 __imp_EndDeferWindowPos
  1578. 3F1 __imp_EndDialog
  1579. 536 __imp_EndDoc
  1580. 537 __imp_EndPage
  1581. 196 __imp_EndPaint
  1582. 8 __imp_EnterCriticalSection
  1583. 12D __imp_EnumCalendarInfoW
  1584. 3E3 __imp_EnumClipboardFormats
  1585. 12F __imp_EnumDateFormatsW
  1586. BF __imp_EnumDevices
  1587. 50E __imp_EnumDisplayDevices
  1588. 666 __imp_EnumDisplayMonitors
  1589. 50D __imp_EnumDisplaySettings
  1590. 53C __imp_EnumFontFamiliesW
  1591. 53D __imp_EnumFontsW
  1592. BE __imp_EnumPnpIds
  1593. 4DF __imp_EnumPropsEx
  1594. 173 __imp_EnumServices
  1595. 13C __imp_EnumSystemCodePagesW
  1596. 13B __imp_EnumSystemLocalesW
  1597. 12E __imp_EnumTimeFormatsW
  1598. 14D __imp_EnumUILanguagesW
  1599. 1AE __imp_EnumWindows
  1600. A4 __imp_EqualRect
  1601. 9F __imp_EqualRgn
  1602. B0 __imp_EscapeCommFunction
  1603. 2F6 __imp_EventModify
  1604. 542 __imp_ExcludeClipRect
  1605. A __imp_ExitThread
  1606. 54F __imp_ExtCreateRegion
  1607. 4FA __imp_ExtEscape
  1608. 4E6 __imp_ExtTextOutW
  1609. 411 __imp_ExtractIconExW
  1610. 374 __imp_ExtractResource
  1611. 17F __imp_FileSystemPowerFunction
  1612. 21 __imp_FileTimeToLocalFileTime
  1613. 20 __imp_FileTimeToSystemTime
  1614. 519 __imp_FillRect
  1615. 511 __imp_FillRgn
  1616. 381 __imp_FilterTrackedItem
  1617. FD __imp_FindClose
  1618. 109 __imp_FindCloseChangeNotification
  1619. 107 __imp_FindFirstChangeNotificationW
  1620. F1 __imp_FindFirstFileExW
  1621. F0 __imp_FindFirstFileW
  1622. 108 __imp_FindNextChangeNotification
  1623. FE __imp_FindNextFileW
  1624. 326 __imp_FindResource
  1625. 327 __imp_FindResourceW
  1626. 1A9 __imp_FindWindowW
  1627. F9 __imp_FlushFileBuffers
  1628. 308 __imp_FlushInstructionCache
  1629. 344 __imp_FlushViewOfFile
  1630. 345 __imp_FlushViewOfFileMaybe
  1631. 13A __imp_FoldStringW
  1632. 334 __imp_ForcePageout
  1633. 14E __imp_FormatMessageW
  1634. 3AC __imp_FreeIntChainHandler
  1635. 324 __imp_FreeLibrary
  1636. 351 __imp_FreeLibraryAndExitThread
  1637. 360 __imp_FreePhysMem
  1638. 118 __imp_GetACP
  1639. 2C __imp_GetAPIAddress
  1640. 400 __imp_GetActiveWindow
  1641. 1C1 __imp_GetAssociatedMenu
  1642. 487 __imp_GetAsyncKeyState
  1643. 48F __imp_GetAsyncShiftFlags
  1644. 4FF __imp_GetBkColor
  1645. 500 __imp_GetBkMode
  1646. 11A __imp_GetCPInfo
  1647. 2E __imp_GetCRTFlags
  1648. 2D __imp_GetCRTStorageEx
  1649. 33F __imp_GetCallStackSnapshot
  1650. 398 __imp_GetCallerProcess
  1651. 3BE __imp_GetCallerProcessIndex
  1652. 401 __imp_GetCapture
  1653. 3D9 __imp_GetCaretBlinkTime
  1654. 3D7 __imp_GetCaretPos
  1655. 4EE __imp_GetCharABCWidths
  1656. 4ED __imp_GetCharWidth32
  1657. 4C8 __imp_GetClassInfoW
  1658. 4CB __imp_GetClassLong
  1659. 4C9 __imp_GetClassLongW
  1660. 1A6 __imp_GetClassNameW
  1661. 18A __imp_GetClientRect
  1662. 543 __imp_GetClipBox
  1663. 419 __imp_GetClipCursor
  1664. 544 __imp_GetClipRgn
  1665. 3E0 __imp_GetClipboardData
  1666. 3E9 __imp_GetClipboardDataAlloc
  1667. 3E4 __imp_GetClipboardFormatNameW
  1668. 3DE __imp_GetClipboardOwner
  1669. B1 __imp_GetCommMask
  1670. B2 __imp_GetCommModemStatus
  1671. B3 __imp_GetCommProperties
  1672. B4 __imp_GetCommState
  1673. B5 __imp_GetCommTimeouts
  1674. 353 __imp_GetCommandLineW
  1675. 12C __imp_GetCurrencyFormatW
  1676. 29 __imp_GetCurrentFT
  1677. 501 __imp_GetCurrentObject
  1678. 39F __imp_GetCurrentPermissions
  1679. 526 __imp_GetCurrentPositionEx
  1680. 41A __imp_GetCursor
  1681. 41B __imp_GetCursorPos
  1682. 4D1 __imp_GetDC
  1683. 197 __imp_GetDCEx
  1684. 50B __imp_GetDIBColorTable
  1685. 12A __imp_GetDateFormatW
  1686. 1B3 __imp_GetDesktopWindow
  1687. 186 __imp_GetDeviceByIndex
  1688. 502 __imp_GetDeviceCaps
  1689. C0 __imp_GetDeviceKeys
  1690. 168 __imp_GetDevicePower
  1691. 3F4 __imp_GetDialogBaseUnits
  1692. 100 __imp_GetDiskFreeSpaceExW
  1693. 3F3 __imp_GetDlgCtrlID
  1694. 3F2 __imp_GetDlgItem
  1695. 3F5 __imp_GetDlgItemInt
  1696. 3EF __imp_GetDlgItemTextW
  1697. 4D5 __imp_GetDoubleClickTime
  1698. 2FA __imp_GetEventData
  1699. 319 __imp_GetExitCodeProcess
  1700. 318 __imp_GetExitCodeThread
  1701. 394 __imp_GetFSHeapInfo
  1702. 101 __imp_GetFileAttributesExW
  1703. EF __imp_GetFileAttributesW
  1704. F8 __imp_GetFileInformationByHandle
  1705. F6 __imp_GetFileSize
  1706. FA __imp_GetFileTime
  1707. 32D __imp_GetFileVersionInfoSizeW
  1708. 32C __imp_GetFileVersionInfoW
  1709. 3FF __imp_GetFocus
  1710. 407 __imp_GetForegroundInfo
  1711. 409 __imp_GetForegroundKeyboardLayoutHandle
  1712. 408 __imp_GetForegroundKeyboardTarget
  1713. 3FB __imp_GetForegroundWindow
  1714. 50 __imp_GetHeapSnapshot
  1715. 399 __imp_GetIdleTime
  1716. 37D __imp_GetKPhys
  1717. 4B4 __imp_GetKeyState
  1718. 49A __imp_GetKeyboardLayout
  1719. 498 __imp_GetKeyboardLayoutList
  1720. 49B __imp_GetKeyboardLayoutNameW
  1721. 488 __imp_GetKeyboardStatus
  1722. 405 __imp_GetKeyboardTarget
  1723. 497 __imp_GetKeyboardType
  1724. 316 __imp_GetLastError
  1725. 23 __imp_GetLocalTime
  1726. 127 __imp_GetLocaleInfoW
  1727. 4AE __imp_GetMenuItemInfoW
  1728. 4B6 __imp_GetMessagePos
  1729. 4C3 __imp_GetMessageQueueReadyTimeStamp
  1730. 4BF __imp_GetMessageSource
  1731. 4B5 __imp_GetMessageW
  1732. 4B7 __imp_GetMessageWNoWait
  1733. 330 __imp_GetModuleFileNameW
  1734. 331 __imp_GetModuleHandleW
  1735. 30B __imp_GetModuleInformation
  1736. 665 __imp_GetMonitorInfo
  1737. 481 __imp_GetMouseMovePoints
  1738. 114 __imp_GetMsgQueueInfo
  1739. 52E __imp_GetNearestColor
  1740. 52A __imp_GetNearestPaletteIndex
  1741. 3F7 __imp_GetNextDlgGroupItem
  1742. 3F6 __imp_GetNextDlgTabItem
  1743. 12B __imp_GetNumberFormatW
  1744. 119 __imp_GetOEMCP
  1745. 503 __imp_GetObjectType
  1746. 504 __imp_GetObjectW
  1747. 3E8 __imp_GetOpenClipboardWindow
  1748. 2EF __imp_GetOpenFileNameW
  1749. 397 __imp_GetOwnerProcess
  1750. 52B __imp_GetPaletteEntries
  1751. 19D __imp_GetParent
  1752. 10D __imp_GetPasswordActive
  1753. 110 __imp_GetPasswordStatus
  1754. 51A __imp_GetPixel
  1755. 3E7 __imp_GetPriorityClipboardFormat
  1756. 1B6 __imp_GetPrivateCallbacks
  1757. 393 __imp_GetProcAddrBits
  1758. 352 __imp_GetProcAddressA
  1759. 325 __imp_GetProcAddressW
  1760. 391 __imp_GetProcFromPtr
  1761. 3A8 __imp_GetProcName
  1762. 4E __imp_GetProcessHeap
  1763. 3BD __imp_GetProcessIDFromIndex
  1764. 3BC __imp_GetProcessIndexFromID
  1765. 32F __imp_GetProcessVersion
  1766. 4DD __imp_GetProp
  1767. 4C1 __imp_GetQueueStatus
  1768. 371 __imp_GetRealTime
  1769. 545 __imp_GetRegionData
  1770. 546 __imp_GetRgnBox
  1771. 377 __imp_GetRomFileBytes
  1772. 376 __imp_GetRomFileInfo
  1773. 2F0 __imp_GetSaveFileNameW
  1774. 558 __imp_GetScrollInfo
  1775. 16F __imp_GetServiceByIndex
  1776. 174 __imp_GetServiceHandle
  1777. 5CB __imp_GetStdioPathW
  1778. 505 __imp_GetStockObject
  1779. 102 __imp_GetStoreInformation
  1780. 139 __imp_GetStringTypeExW
  1781. 138 __imp_GetStringTypeW
  1782. 4AF __imp_GetSubMenu
  1783. 4D6 __imp_GetSysColor
  1784. 51B __imp_GetSysColorBrush
  1785. 134 __imp_GetSystemDefaultLCID
  1786. 132 __imp_GetSystemDefaultLangID
  1787. 14A __imp_GetSystemDefaultUILanguage
  1788. 337 __imp_GetSystemInfo
  1789. 17C __imp_GetSystemMemoryDivision
  1790. 4CF __imp_GetSystemMetrics
  1791. 52C __imp_GetSystemPaletteEntries
  1792. 15E __imp_GetSystemPowerState
  1793. 40E __imp_GetSystemPowerStatusEx
  1794. 40F __imp_GetSystemPowerStatusEx2
  1795. 25 __imp_GetSystemTime
  1796. 356 __imp_GetTempFileNameW
  1797. EB __imp_GetTempPathW
  1798. 4EC __imp_GetTextAlign
  1799. 506 __imp_GetTextColor
  1800. 4E7 __imp_GetTextExtentExPointW
  1801. 53E __imp_GetTextFaceW
  1802. 4E8 __imp_GetTextMetricsW
  1803. 301 __imp_GetThreadContext
  1804. 311 __imp_GetThreadPriority
  1805. 335 __imp_GetThreadTimes
  1806. 32E __imp_GetTickCount
  1807. 129 __imp_GetTimeFormatW
  1808. 27 __imp_GetTimeZoneInformation
  1809. 1A1 __imp_GetUpdateRect
  1810. 1A0 __imp_GetUpdateRgn
  1811. 136 __imp_GetUserDefaultLCID
  1812. 133 __imp_GetUserDefaultLangID
  1813. 14B __imp_GetUserDefaultUILanguage
  1814. 2D0 __imp_GetUserDirectory
  1815. 2BE __imp_GetUserNameExW
  1816. 1C __imp_GetVersionEx
  1817. 1D __imp_GetVersionExW
  1818. 18C __imp_GetWindow
  1819. 4D2 __imp_GetWindowDC
  1820. 194 __imp_GetWindowLongW
  1821. 189 __imp_GetWindowRect
  1822. 1B5 __imp_GetWindowRgn
  1823. 1A3 __imp_GetWindowTextLengthW
  1824. 192 __imp_GetWindowTextW
  1825. 1B7 __imp_GetWindowTextWDirect
  1826. 1AF __imp_GetWindowThreadProcessId
  1827. 37E __imp_GiveKPhys
  1828. 4E0 __imp_GlobalAddAtomW
  1829. 4E1 __imp_GlobalDeleteAtom
  1830. 4E2 __imp_GlobalFindAtomW
  1831. 9B __imp_GlobalMemoryStatus
  1832. 531 __imp_GradientFill
  1833. 1C2 __imp_GwesPowerDown
  1834. 1BF __imp_GwesPowerOffSystem
  1835. 1C3 __imp_GwesPowerUp
  1836. 45 __imp_HeapAlloc
  1837. 46 __imp_HeapAllocTrace
  1838. 41 __imp_HeapCreate
  1839. 43 __imp_HeapDestroy
  1840. 4C __imp_HeapFree
  1841. 48 __imp_HeapReAlloc
  1842. 4A __imp_HeapSize
  1843. 4F __imp_HeapValidate
  1844. 3D4 __imp_HideCaret
  1845. 420 __imp_ImageList_Add
  1846. 421 __imp_ImageList_AddMasked
  1847. 422 __imp_ImageList_BeginDrag
  1848. 43D __imp_ImageList_Copy
  1849. 423 __imp_ImageList_CopyDitherImage
  1850. 424 __imp_ImageList_Create
  1851. 425 __imp_ImageList_Destroy
  1852. 426 __imp_ImageList_DragEnter
  1853. 427 __imp_ImageList_DragLeave
  1854. 428 __imp_ImageList_DragMove
  1855. 429 __imp_ImageList_DragShowNolock
  1856. 42A __imp_ImageList_Draw
  1857. 42B __imp_ImageList_DrawEx
  1858. 42C __imp_ImageList_DrawIndirect
  1859. 43E __imp_ImageList_Duplicate
  1860. 42D __imp_ImageList_EndDrag
  1861. 42E __imp_ImageList_GetBkColor
  1862. 42F __imp_ImageList_GetDragImage
  1863. 430 __imp_ImageList_GetIcon
  1864. 431 __imp_ImageList_GetIconSize
  1865. 432 __imp_ImageList_GetImageCount
  1866. 433 __imp_ImageList_GetImageInfo
  1867. 434 __imp_ImageList_LoadImage
  1868. 435 __imp_ImageList_Merge
  1869. 436 __imp_ImageList_Remove
  1870. 437 __imp_ImageList_Replace
  1871. 438 __imp_ImageList_ReplaceIcon
  1872. 439 __imp_ImageList_SetBkColor
  1873. 43A __imp_ImageList_SetDragCursorImage
  1874. 43B __imp_ImageList_SetIconSize
  1875. 43F __imp_ImageList_SetImageCount
  1876. 43C __imp_ImageList_SetOverlayImage
  1877. 44C __imp_ImmAssociateContext
  1878. 476 __imp_ImmAssociateContextEx
  1879. 44D __imp_ImmConfigureIMEW
  1880. 44A __imp_ImmCreateContext
  1881. 44E __imp_ImmCreateIMCC
  1882. 44B __imp_ImmDestroyContext
  1883. 44F __imp_ImmDestroyIMCC
  1884. 443 __imp_ImmDisableIME
  1885. 444 __imp_ImmEnableIME
  1886. 450 __imp_ImmEnumRegisterWordW
  1887. 451 __imp_ImmEscapeW
  1888. 452 __imp_ImmGenerateMessage
  1889. 454 __imp_ImmGetCandidateListCountW
  1890. 453 __imp_ImmGetCandidateListW
  1891. 455 __imp_ImmGetCandidateWindow
  1892. 456 __imp_ImmGetCompositionFontW
  1893. 447 __imp_ImmGetCompositionStringW
  1894. 457 __imp_ImmGetCompositionWindow
  1895. 440 __imp_ImmGetContext
  1896. 458 __imp_ImmGetConversionListW
  1897. 441 __imp_ImmGetConversionStatus
  1898. 459 __imp_ImmGetDefaultIMEWnd
  1899. 45A __imp_ImmGetDescriptionW
  1900. 45B __imp_ImmGetGuideLineW
  1901. 46E __imp_ImmGetHotKey
  1902. 45C __imp_ImmGetIMCCLockCount
  1903. 45D __imp_ImmGetIMCCSize
  1904. 45E __imp_ImmGetIMCLockCount
  1905. 477 __imp_ImmGetIMEFileNameW
  1906. 479 __imp_ImmGetImeMenuItemsW
  1907. 449 __imp_ImmGetKeyboardLayout
  1908. 45F __imp_ImmGetOpenStatus
  1909. 460 __imp_ImmGetProperty
  1910. 461 __imp_ImmGetRegisterWordStyleW
  1911. 471 __imp_ImmGetStatusWindowPos
  1912. 478 __imp_ImmGetVirtualKey
  1913. 448 __imp_ImmIsIME
  1914. 462 __imp_ImmIsUIMessageW
  1915. 463 __imp_ImmLockIMC
  1916. 464 __imp_ImmLockIMCC
  1917. 442 __imp_ImmNotifyIME
  1918. 465 __imp_ImmReSizeIMCC
  1919. 466 __imp_ImmRegisterWordW
  1920. 445 __imp_ImmReleaseContext
  1921. 480 __imp_ImmRequestMessageW
  1922. 467 __imp_ImmSIPanelState
  1923. 469 __imp_ImmSetCandidateWindow
  1924. 46A __imp_ImmSetCompositionFontW
  1925. 46B __imp_ImmSetCompositionStringW
  1926. 46C __imp_ImmSetCompositionWindow
  1927. 446 __imp_ImmSetConversionStatus
  1928. 46D __imp_ImmSetHotKey
  1929. 47E __imp_ImmSetImeWndIMC
  1930. 46F __imp_ImmSetOpenStatus
  1931. 470 __imp_ImmSetStatusWindowPos
  1932. 472 __imp_ImmSimulateHotKey
  1933. 473 __imp_ImmUnlockIMC
  1934. 474 __imp_ImmUnlockIMCC
  1935. 475 __imp_ImmUnregisterWordW
  1936. 4C0 __imp_InSendMessage
  1937. A5 __imp_InflateRect
  1938. D __imp_InitLocale
  1939. 6 __imp_InitializeCriticalSection
  1940. 38C __imp_InputDebugCharW
  1941. 4A1 __imp_InsertMenuW
  1942. 349 __imp_Int_CloseHandle
  1943. 2F8 __imp_Int_CreateEventW
  1944. 47 __imp_Int_HeapAlloc
  1945. 42 __imp_Int_HeapCreate
  1946. 44 __imp_Int_HeapDestroy
  1947. 4D __imp_Int_HeapFree
  1948. 49 __imp_Int_HeapReAlloc
  1949. 4B __imp_Int_HeapSize
  1950. 15 __imp_InterlockedCompareExchange
  1951. 12 __imp_InterlockedDecrement
  1952. 13 __imp_InterlockedExchange
  1953. 14 __imp_InterlockedExchangeAdd
  1954. 11 __imp_InterlockedIncrement
  1955. 10 __imp_InterlockedTestExchange
  1956. 3B1 __imp_InterruptDisable
  1957. 3B0 __imp_InterruptDone
  1958. 3AE __imp_InterruptInitialize
  1959. 3AF __imp_InterruptMask
  1960. 547 __imp_IntersectClipRect
  1961. A6 __imp_IntersectRect
  1962. 18B __imp_InvalidateRect
  1963. 1BA __imp_InvalidateRgn
  1964. 51D __imp_InvertRect
  1965. 2A __imp_IsAPIReady
  1966. 31B __imp_IsBadCodePtr
  1967. 392 __imp_IsBadPtr
  1968. 31C __imp_IsBadReadPtr
  1969. 31D __imp_IsBadWritePtr
  1970. 1A4 __imp_IsChild
  1971. 3E6 __imp_IsClipboardFormatAvailable
  1972. 11D __imp_IsDBCSLeadByte
  1973. 11E __imp_IsDBCSLeadByteEx
  1974. 3F8 __imp_IsDialogMessageW
  1975. E4 __imp_IsEncryptionPermitted
  1976. E8 __imp_IsExiting
  1977. 39B __imp_IsPrimaryThread
  1978. F __imp_IsProcessDying
  1979. 339 __imp_IsProcessorFeaturePresent
  1980. A7 __imp_IsRectEmpty
  1981. 183 __imp_IsSystemFile
  1982. 117 __imp_IsValidCodePage
  1983. 130 __imp_IsValidLocale
  1984. 19E __imp_IsWindow
  1985. 1AB __imp_IsWindowEnabled
  1986. 4D0 __imp_IsWindowVisible
  1987. 375 __imp_KernExtractIcons
  1988. 34C __imp_KernelIoControl
  1989. 34D __imp_KernelLibIoControl
  1990. 489 __imp_KeybdGetDeviceInfo
  1991. 48A __imp_KeybdInitStates
  1992. 48B __imp_KeybdVKeyToUnicode
  1993. 396 __imp_KillAllOtherThreads
  1994. 4C6 __imp_KillTimer
  1995. 126 __imp_LCMapStringW
  1996. 38E __imp_LeaveCritSec
  1997. 9 __imp_LeaveCriticalSection
  1998. 525 __imp_LineTo
  1999. A2 __imp_LoadAcceleratorsW
  2000. 41E __imp_LoadAnimatedCursor
  2001. 4C4 __imp_LoadBitmapW
  2002. 417 __imp_LoadCursorW
  2003. 3AA __imp_LoadDriver
  2004. 151 __imp_LoadFSD
  2005. 152 __imp_LoadFSDEx
  2006. 415 __imp_LoadIconW
  2007. 41F __imp_LoadImageW
  2008. 3AB __imp_LoadIntChainHandler
  2009. 3AD __imp_LoadKernelLibrary
  2010. 499 __imp_LoadKeyboardLayoutW
  2011. 323 __imp_LoadLibraryExW
  2012. 322 __imp_LoadLibraryW
  2013. 4A6 __imp_LoadMenuW
  2014. 328 __imp_LoadResource
  2015. 329 __imp_LoadStringW
  2016. 31 __imp_LocalAlloc
  2017. 3E __imp_LocalAllocInProcess
  2018. 32 __imp_LocalAllocTrace
  2019. 22 __imp_LocalFileTimeToFileTime
  2020. 35 __imp_LocalFree
  2021. 3F __imp_LocalFreeInProcess
  2022. 33 __imp_LocalReAlloc
  2023. 34 __imp_LocalSize
  2024. 40 __imp_LocalSizeInProcess
  2025. 364 __imp_LockPages
  2026. 696 __imp_MD5Final
  2027. 694 __imp_MD5Init
  2028. 695 __imp_MD5Update
  2029. 17 __imp_MainThreadBaseFunc
  2030. 34F __imp_MapCallerPtr
  2031. 3F9 __imp_MapDialogRect
  2032. 350 __imp_MapPtrToProcWithSize
  2033. 38F __imp_MapPtrToProcess
  2034. 390 __imp_MapPtrUnsecure
  2035. 342 __imp_MapViewOfFile
  2036. 48C __imp_MapVirtualKeyW
  2037. 1A7 __imp_MapWindowPoints
  2038. 4F3 __imp_MaskBlt
  2039. 4B1 __imp_MessageBeep
  2040. 4B2 __imp_MessageBoxW
  2041. 662 __imp_MonitorFromPoint
  2042. 663 __imp_MonitorFromRect
  2043. 664 __imp_MonitorFromWindow
  2044. EC __imp_MoveFileW
  2045. 524 __imp_MoveToEx
  2046. 19F __imp_MoveWindow
  2047. 4BE __imp_MsgWaitForMultipleObjectsEx
  2048. 123 __imp_MultiByteToWideChar
  2049. 33C __imp_NKDbgPrintfW
  2050. 3A7 __imp_NKTerminateThread
  2051. 36F __imp_NKvDbgPrintfW
  2052. 49F __imp_NLedGetDeviceInfo
  2053. 4A0 __imp_NLedSetDevice
  2054. 30F __imp_NotifyForceCleanboot
  2055. 410 __imp_NotifyWinUserSystem
  2056. A8 __imp_OffsetRect
  2057. 548 __imp_OffsetRgn
  2058. 3DC __imp_OpenClipboard
  2059. C1 __imp_OpenDeviceKey
  2060. 2F9 __imp_OpenEventW
  2061. 116 __imp_OpenMsgQueue
  2062. 30A __imp_OpenProcess
  2063. 395 __imp_OtherThreadsRunning
  2064. 336 __imp_OutputDebugStringW
  2065. 3BB __imp_PPSHRestart
  2066. C __imp_PSLNotify
  2067. 340 __imp_PageOutModule
  2068. 51C __imp_PatBlt
  2069. 4B8 __imp_PeekMessageW
  2070. 2D5 __imp_PegClearUserNotification
  2071. 1C7 __imp_PegCreateDatabase
  2072. 1CA __imp_PegDeleteDatabase
  2073. 1CC __imp_PegDeleteRecord
  2074. 1C5 __imp_PegFindFirstDatabase
  2075. 1C6 __imp_PegFindNextDatabase
  2076. 2D9 __imp_PegGetUserNotificationPreferences
  2077. 2D8 __imp_PegHandleAppNotifications
  2078. 103 __imp_PegOidGetInfo
  2079. 1C9 __imp_PegOpenDatabase
  2080. 1CD __imp_PegReadRecordProps
  2081. 4E9 __imp_PegRemoveFontResource
  2082. 2D7 __imp_PegRunAppAtEvent
  2083. 2D6 __imp_PegRunAppAtTime
  2084. 1CB __imp_PegSeekDatabase
  2085. 1C8 __imp_PegSetDatabaseInfo
  2086. 2D4 __imp_PegSetUserNotification
  2087. 1CE __imp_PegWriteRecordProps
  2088. 2F1 __imp_PerformCallBack4
  2089. 538 __imp_PlayEnhMetaFile
  2090. 267 __imp_PlaySoundW
  2091. 51E __imp_Polygon
  2092. 51F __imp_Polyline
  2093. 48D __imp_PostKeybdMessage
  2094. 4B9 __imp_PostMessageW
  2095. 4BA __imp_PostQuitMessage
  2096. 1AD __imp_PostThreadMessageW
  2097. 3A3 __imp_PowerOffSystem
  2098. 169 __imp_PowerPolicyNotify
  2099. 37C __imp_PrintTrackedItem
  2100. 373 __imp_ProcessDetachAllDLLs
  2101. 94 __imp_ProfileCaptureStatus
  2102. 92 __imp_ProfileStart
  2103. 95 __imp_ProfileStartEx
  2104. 93 __imp_ProfileStop
  2105. 370 __imp_ProfileSyscall
  2106. A9 __imp_PtInRect
  2107. 549 __imp_PtInRegion
  2108. B6 __imp_PurgeComm
  2109. 484 __imp_QASetWindowsJournalHook
  2110. 485 __imp_QAUnhookWindowsJournalHook
  2111. 2F2 __imp_QueryAPISetID
  2112. 338 __imp_QueryInstructionSet
  2113. 332 __imp_QueryPerformanceCounter
  2114. 333 __imp_QueryPerformanceFrequency
  2115. 33A __imp_RaiseException
  2116. 91 __imp_Random
  2117. 1FC __imp_RasDeleteEntry
  2118. 207 __imp_RasDevConfigDialogEditW
  2119. 1F3 __imp_RasDial
  2120. 1FE __imp_RasEnumConnections
  2121. 203 __imp_RasEnumDevicesW
  2122. 1F6 __imp_RasEnumEntries
  2123. 1FF __imp_RasGetConnectStatus
  2124. 206 __imp_RasGetDispPhoneNumW
  2125. 20A __imp_RasGetEapConnectionData
  2126. 208 __imp_RasGetEapUserData
  2127. 200 __imp_RasGetEntryDevConfig
  2128. 1F7 __imp_RasGetEntryDialParams
  2129. 1F9 __imp_RasGetEntryProperties
  2130. 205 __imp_RasGetLinkStatistics
  2131. 204 __imp_RasGetProjectionInfoW
  2132. 1F5 __imp_RasHangUp
  2133. 1F4 __imp_RasHangup
  2134. 202 __imp_RasIOControl
  2135. 1FD __imp_RasRenameEntry
  2136. 20B __imp_RasSetEapConnectionData
  2137. 209 __imp_RasSetEapUserData
  2138. 201 __imp_RasSetEntryDevConfig
  2139. 1F8 __imp_RasSetEntryDialParams
  2140. 1FA __imp_RasSetEntryProperties
  2141. 1FB __imp_RasValidateEntryName
  2142. F4 __imp_ReadFile
  2143. 181 __imp_ReadFileWithSeek
  2144. 112 __imp_ReadMsgQueue
  2145. 306 __imp_ReadProcessMemory
  2146. 3C0 __imp_ReadRegistryFromOEM
  2147. 52F __imp_RealizePalette
  2148. 54A __imp_RectInRegion
  2149. 54D __imp_RectVisible
  2150. 520 __imp_Rectangle
  2151. 1BE __imp_RectangleAnimation
  2152. 1BC __imp_RedrawWindow
  2153. 383 __imp_RefreshKernelAlarm
  2154. 2BF __imp_RegCloseKey
  2155. 2CA __imp_RegCopyFile
  2156. 2C0 __imp_RegCreateKeyExW
  2157. 2C1 __imp_RegDeleteKeyW
  2158. 2C2 __imp_RegDeleteValueW
  2159. 2C4 __imp_RegEnumKeyExW
  2160. 2C3 __imp_RegEnumValueW
  2161. 2C9 __imp_RegFlushKey
  2162. 2C5 __imp_RegOpenKeyExW
  2163. 159 __imp_RegOpenProcessKey
  2164. 2C6 __imp_RegQueryInfoKeyW
  2165. 2C7 __imp_RegQueryValueExW
  2166. 2CD __imp_RegReplaceKey
  2167. 2CB __imp_RegRestoreFile
  2168. 2CC __imp_RegSaveKey
  2169. 2C8 __imp_RegSetValueExW
  2170. 178 __imp_RegisterAFSEx
  2171. 17A __imp_RegisterAFSName
  2172. 3B8 __imp_RegisterAPISet
  2173. 4CD __imp_RegisterClassW
  2174. 3E1 __imp_RegisterClipboardFormatW
  2175. 33D __imp_RegisterDbgZones
  2176. 4DB __imp_RegisterDesktop
  2177. 14F __imp_RegisterDevice
  2178. 493 __imp_RegisterHotKey
  2179. 165 __imp_RegisterPowerRelationship
  2180. 1BD __imp_RegisterSIPanel
  2181. 16B __imp_RegisterService
  2182. 4D9 __imp_RegisterTaskBar
  2183. 4DA __imp_RegisterTaskBarEx
  2184. 380 __imp_RegisterTrackedItem
  2185. 4D8 __imp_RegisterWindowMessageW
  2186. E __imp_ReinitLocale
  2187. 403 __imp_ReleaseCapture
  2188. 4D3 __imp_ReleaseDC
  2189. 34B __imp_ReleaseMutex
  2190. 166 __imp_ReleasePowerRelationship
  2191. 161 __imp_ReleasePowerRequirement
  2192. 358 __imp_ReleaseSemaphore
  2193. 36 __imp_RemoteHeapAlloc
  2194. 38 __imp_RemoteHeapFree
  2195. 37 __imp_RemoteHeapReAlloc
  2196. 39 __imp_RemoteHeapSize
  2197. 3A __imp_RemoteLocalAlloc
  2198. 3D __imp_RemoteLocalFree
  2199. 3B __imp_RemoteLocalReAlloc
  2200. 3C __imp_RemoteLocalSize
  2201. EA __imp_RemoveDirectoryW
  2202. 4EA __imp_RemoveFontResourceW
  2203. 4A3 __imp_RemoveMenu
  2204. 4DE __imp_RemoveProp
  2205. 155 __imp_RequestDeviceNotifications
  2206. 162 __imp_RequestPowerNotifications
  2207. 15A __imp_ResourceCreateList
  2208. 15C __imp_ResourceRelease
  2209. 15B __imp_ResourceRequest
  2210. 4F8 __imp_RestoreDC
  2211. 300 __imp_ResumeThread
  2212. 521 __imp_RoundRect
  2213. 2E5 __imp_SHAddToRecentDocs
  2214. 2E6 __imp_SHCreateExplorerInstance
  2215. 2E8 __imp_SHCreateShortcut
  2216. 2EA __imp_SHCreateShortcutEx
  2217. 2ED __imp_SHGetFileInfo
  2218. 2E9 __imp_SHGetShortcutTarget
  2219. 2EE __imp_SHGetSpecialFolderPath
  2220. 2EC __imp_SHLoadDIBitmap
  2221. 2EB __imp_SHShowOutOfMemory
  2222. 4F9 __imp_SaveDC
  2223. 190 __imp_ScreenToClient
  2224. 552 __imp_ScrollDC
  2225. 1AC __imp_ScrollWindowEx
  2226. 54B __imp_SelectClipRgn
  2227. 507 __imp_SelectObject
  2228. 530 __imp_SelectPalette
  2229. 3ED __imp_SendDlgItemMessageW
  2230. 482 __imp_SendInput
  2231. 4C2 __imp_SendMessageTimeout
  2232. 4BB __imp_SendMessageW
  2233. 4BC __imp_SendNotifyMessageW
  2234. 171 __imp_ServiceAddPort
  2235. 175 __imp_ServiceClosePort
  2236. 170 __imp_ServiceIoControl
  2237. 172 __imp_ServiceUnbindPorts
  2238. 11B __imp_SetACP
  2239. 539 __imp_SetAbortProc
  2240. 3FD __imp_SetActiveWindow
  2241. 1C0 __imp_SetAssociatedMenu
  2242. 4F1 __imp_SetBitmapBits
  2243. 508 __imp_SetBkColor
  2244. 509 __imp_SetBkMode
  2245. 522 __imp_SetBrushOrgEx
  2246. 402 __imp_SetCapture
  2247. 3D8 __imp_SetCaretBlinkTime
  2248. 3D6 __imp_SetCaretPos
  2249. 4CC __imp_SetClassLong
  2250. 4CA __imp_SetClassLongW
  2251. 3A1 __imp_SetCleanRebootFlag
  2252. 3DF __imp_SetClipboardData
  2253. B7 __imp_SetCommBreak
  2254. B8 __imp_SetCommMask
  2255. B9 __imp_SetCommState
  2256. BA __imp_SetCommTimeouts
  2257. 2CE __imp_SetCurrentUser
  2258. 416 __imp_SetCursor
  2259. 41C __imp_SetCursorPos
  2260. 50C __imp_SetDIBColorTable
  2261. 4F7 __imp_SetDIBitsToDevice
  2262. 33E __imp_SetDaylightTime
  2263. 3A4 __imp_SetDbgZone
  2264. 167 __imp_SetDevicePower
  2265. 3FA __imp_SetDlgItemInt
  2266. 3EE __imp_SetDlgItemTextW
  2267. FC __imp_SetEndOfFile
  2268. 2FB __imp_SetEventData
  2269. 37F __imp_SetExceptionHandler
  2270. F3 __imp_SetFileAttributesW
  2271. F7 __imp_SetFilePointer
  2272. FB __imp_SetFileTime
  2273. 3FE __imp_SetFocus
  2274. 3FC __imp_SetForegroundWindow
  2275. 385 __imp_SetGwesOOMEvent
  2276. 3B4 __imp_SetGwesPowerHandler
  2277. 3A9 __imp_SetHandleOwner
  2278. 3B7 __imp_SetHardwareWatch
  2279. E6 __imp_SetInterruptEvent
  2280. 3B2 __imp_SetKMode
  2281. 382 __imp_SetKernelAlarm
  2282. 404 __imp_SetKeyboardTarget
  2283. 317 __imp_SetLastError
  2284. 24 __imp_SetLocalTime
  2285. 128 __imp_SetLocaleInfoW
  2286. 39A __imp_SetLowestScheduledPriority
  2287. 4AD __imp_SetMenuItemInfoW
  2288. 11C __imp_SetOEMCP
  2289. 386 __imp_SetOOMEvent
  2290. 551 __imp_SetObjectOwner
  2291. 52D __imp_SetPaletteEntries
  2292. 19C __imp_SetParent
  2293. 10C __imp_SetPassword
  2294. 10E __imp_SetPasswordActive
  2295. 10F __imp_SetPasswordStatus
  2296. 523 __imp_SetPixel
  2297. 3B3 __imp_SetPowerOffHandler
  2298. 160 __imp_SetPowerRequirement
  2299. 39C __imp_SetProcPermissions
  2300. 4DC __imp_SetProp
  2301. 512 __imp_SetROP2
  2302. 372 __imp_SetRealTime
  2303. AA __imp_SetRect
  2304. AB __imp_SetRectEmpty
  2305. 54E __imp_SetRectRgn
  2306. 555 __imp_SetScrollInfo
  2307. 556 __imp_SetScrollPos
  2308. 557 __imp_SetScrollRange
  2309. 5CC __imp_SetStdioPathW
  2310. 4D7 __imp_SetSysColors
  2311. 135 __imp_SetSystemDefaultLCID
  2312. 17D __imp_SetSystemMemoryDivision
  2313. 15F __imp_SetSystemPowerState
  2314. 26 __imp_SetSystemTime
  2315. 4EB __imp_SetTextAlign
  2316. 50A __imp_SetTextColor
  2317. 302 __imp_SetThreadContext
  2318. 310 __imp_SetThreadPriority
  2319. 3A0 __imp_SetTimeZoneBias
  2320. 28 __imp_SetTimeZoneInformation
  2321. 4C5 __imp_SetTimer
  2322. 2CF __imp_SetUserData
  2323. 137 __imp_SetUserDefaultLCID
  2324. 14C __imp_SetUserDefaultUILanguage
  2325. 550 __imp_SetViewportOrgEx
  2326. 3B5 __imp_SetWDevicePowerHandler
  2327. 193 __imp_SetWindowLongW
  2328. 188 __imp_SetWindowPos
  2329. 1B4 __imp_SetWindowRgn
  2330. 191 __imp_SetWindowTextW
  2331. 490 __imp_SetWindowsHookExW
  2332. BB __imp_SetupComm
  2333. 2E7 __imp_ShellExecuteEx
  2334. 406 __imp_ShellModalEnd
  2335. 2E4 __imp_Shell_NotifyIcon
  2336. 3D5 __imp_ShowCaret
  2337. 41D __imp_ShowCursor
  2338. 1C4 __imp_ShowStartupWindow
  2339. 19A __imp_ShowWindow
  2340. 176 __imp_SignalStarted
  2341. 65E __imp_SipEnumIM
  2342. 65F __imp_SipGetCurrentIM
  2343. 65C __imp_SipGetInfo
  2344. 65A __imp_SipRegisterNotification
  2345. 660 __imp_SipSetCurrentIM
  2346. 661 __imp_SipSetDefaultRect
  2347. 65D __imp_SipSetInfo
  2348. 65B __imp_SipShowIM
  2349. 659 __imp_SipStatus
  2350. 32A __imp_SizeofResource
  2351. 2FC __imp_Sleep
  2352. 361 __imp_SleepTillTick
  2353. 53A __imp_StartDocW
  2354. 53B __imp_StartPage
  2355. 156 __imp_StopDeviceNotifications
  2356. 163 __imp_StopPowerNotifications
  2357. 4F4 __imp_StretchBlt
  2358. 4F6 __imp_StretchDIBits
  2359. 648 __imp_StringCbCatA
  2360. 64A __imp_StringCbCatExA
  2361. 82 __imp_StringCbCatExW
  2362. 64C __imp_StringCbCatNA
  2363. 64E __imp_StringCbCatNExA
  2364. 86 __imp_StringCbCatNExW
  2365. 84 __imp_StringCbCatNW
  2366. 80 __imp_StringCbCatW
  2367. 642 __imp_StringCbCopyA
  2368. 644 __imp_StringCbCopyExA
  2369. 7C __imp_StringCbCopyExW
  2370. 646 __imp_StringCbCopyNA
  2371. 7E __imp_StringCbCopyNW
  2372. 7A __imp_StringCbCopyW
  2373. 658 __imp_StringCbLengthA
  2374. 90 __imp_StringCbLengthW
  2375. 652 __imp_StringCbPrintfA
  2376. 654 __imp_StringCbPrintfExA
  2377. 8C __imp_StringCbPrintfExW
  2378. 8A __imp_StringCbPrintfW
  2379. 650 __imp_StringCbVPrintfA
  2380. 656 __imp_StringCbVPrintfExA
  2381. 8E __imp_StringCbVPrintfExW
  2382. 88 __imp_StringCbVPrintfW
  2383. 647 __imp_StringCchCatA
  2384. 649 __imp_StringCchCatExA
  2385. 81 __imp_StringCchCatExW
  2386. 64B __imp_StringCchCatNA
  2387. 64D __imp_StringCchCatNExA
  2388. 85 __imp_StringCchCatNExW
  2389. 83 __imp_StringCchCatNW
  2390. 7F __imp_StringCchCatW
  2391. 641 __imp_StringCchCopyA
  2392. 643 __imp_StringCchCopyExA
  2393. 7B __imp_StringCchCopyExW
  2394. 645 __imp_StringCchCopyNA
  2395. 7D __imp_StringCchCopyNW
  2396. 79 __imp_StringCchCopyW
  2397. 657 __imp_StringCchLengthA
  2398. 8F __imp_StringCchLengthW
  2399. 651 __imp_StringCchPrintfA
  2400. 653 __imp_StringCchPrintfExA
  2401. 8B __imp_StringCchPrintfExW
  2402. 89 __imp_StringCchPrintfW
  2403. 64F __imp_StringCchVPrintfA
  2404. 655 __imp_StringCchVPrintfExA
  2405. 8D __imp_StringCchVPrintfExW
  2406. 87 __imp_StringCchVPrintfW
  2407. 387 __imp_StringCompress
  2408. 388 __imp_StringDecompress
  2409. AC __imp_SubtractRect
  2410. 2FF __imp_SuspendThread
  2411. 49D __imp_SystemIdleTimerReset
  2412. 5 __imp_SystemMemoryLow
  2413. 9C __imp_SystemParametersInfoW
  2414. 4 __imp_SystemStarted
  2415. 1F __imp_SystemTimeToFileTime
  2416. 30D __imp_THCreateSnapshot
  2417. 30E __imp_THGrow
  2418. 38D __imp_TakeCritSec
  2419. 33B __imp_TerminateProcess
  2420. 2F3 __imp_TerminateThread
  2421. 366 __imp_ThreadAttachAllDLLs
  2422. 16 __imp_ThreadBaseFunc
  2423. 367 __imp_ThreadDetachAllDLLs
  2424. B __imp_ThreadExceptionExit
  2425. 31A __imp_TlsCall
  2426. 1A __imp_TlsGetValue
  2427. 1B __imp_TlsSetValue
  2428. 4C7 __imp_TouchCalibrate
  2429. 4A5 __imp_TrackPopupMenuEx
  2430. 49E __imp_TranslateAcceleratorW
  2431. 53F __imp_TranslateCharsetInfo
  2432. 4BD __imp_TranslateMessage
  2433. BC __imp_TransmitCommChar
  2434. 4F5 __imp_TransparentImage
  2435. 355 __imp_TryEnterCriticalSection
  2436. 3A6 __imp_TurnOffProfiling
  2437. 3A5 __imp_TurnOnProfiling
  2438. 36C __imp_U_rclose
  2439. 36B __imp_U_rlseek
  2440. 368 __imp_U_ropen
  2441. 369 __imp_U_rread
  2442. 36A __imp_U_rwrite
  2443. 491 __imp_UnhookWindowsHookEx
  2444. AD __imp_UnionRect
  2445. 365 __imp_UnlockPages
  2446. 343 __imp_UnmapViewOfFile
  2447. 4CE __imp_UnregisterClassW
  2448. 495 __imp_UnregisterFunc1
  2449. 494 __imp_UnregisterHotKey
  2450. 36D __imp_UpdateNLSInfo
  2451. 36E __imp_UpdateNLSInfoEx
  2452. 19B __imp_UpdateWindow
  2453. 1A5 __imp_ValidateRect
  2454. 1BB __imp_ValidateRgn
  2455. 32B __imp_VerQueryValueW
  2456. 3BA __imp_VerifyAPIHandle
  2457. 31E __imp_VirtualAlloc
  2458. 35D __imp_VirtualCopy
  2459. 31F __imp_VirtualFree
  2460. 320 __imp_VirtualProtect
  2461. 321 __imp_VirtualQuery
  2462. 35E __imp_VirtualSetAttributes
  2463. 2B3 __imp_WNetAddConnection3W
  2464. 2B4 __imp_WNetCancelConnection2W
  2465. 2BC __imp_WNetCloseEnum
  2466. 2B5 __imp_WNetConnectionDialog1W
  2467. 2B6 __imp_WNetDisconnectDialog
  2468. 2B7 __imp_WNetDisconnectDialog1W
  2469. 2BD __imp_WNetEnumResourceW
  2470. 2B8 __imp_WNetGetConnectionW
  2471. 2B9 __imp_WNetGetUniversalNameW
  2472. 2BA __imp_WNetGetUserW
  2473. 2BB __imp_WNetOpenEnumW
  2474. BD __imp_WaitCommEvent
  2475. 303 __imp_WaitForDebugEvent
  2476. 2FE __imp_WaitForMultipleObjects
  2477. 2FD __imp_WaitForSingleObject
  2478. 124 __imp_WideCharToMultiByte
  2479. 18D __imp_WindowFromPoint
  2480. 3C2 __imp_WriteDebugLED
  2481. F5 __imp_WriteFile
  2482. 182 __imp_WriteFileWithSeek
  2483. 113 __imp_WriteMsgQueue
  2484. 307 __imp_WriteProcessMemory
  2485. 3C1 __imp_WriteRegistryToOEM
  2486. 67B __imp__CountLeadingOnes
  2487. 67C __imp__CountLeadingOnes64
  2488. 67D __imp__CountLeadingSigns
  2489. 67E __imp__CountLeadingSigns64
  2490. 67F __imp__CountLeadingZeros
  2491. 680 __imp__CountLeadingZeros64
  2492. 681 __imp__CountOneBits
  2493. 682 __imp__CountOneBits64
  2494. 5BB __imp__HUGE
  2495. 61C __imp__InitStdioLib
  2496. 686 __imp__MulHigh
  2497. 687 __imp__MulUnsignedHigh
  2498. 68F __imp__XcptFilter
  2499. 9A __imp___C_specific_handler
  2500. 667 __imp___CxxFrameHandler
  2501. 668 __imp___CxxThrowException
  2502. 600 __imp___addd
  2503. 5FE __imp___adds
  2504. 5FD __imp___cmpd
  2505. 5FC __imp___cmps
  2506. 5FB __imp___divd
  2507. 5FA __imp___divs
  2508. 5F9 __imp___dtoi
  2509. 5F8 __imp___dtoi64
  2510. 5F7 __imp___dtos
  2511. 5F6 __imp___dtou
  2512. 5F5 __imp___dtou64
  2513. 5F4 __imp___eqd
  2514. 5F3 __imp___eqs
  2515. 5F2 __imp___ged
  2516. 5F1 __imp___ges
  2517. 5F0 __imp___gtd
  2518. 5EF __imp___gts
  2519. 5EE __imp___i64tod
  2520. 5ED __imp___i64tos
  2521. 5EC __imp___itod
  2522. 5EB __imp___itos
  2523. 5EA __imp___led
  2524. 5E9 __imp___les
  2525. 5E8 __imp___ltd
  2526. 5E7 __imp___lts
  2527. 5E6 __imp___muld
  2528. 5E5 __imp___muls
  2529. 5E4 __imp___ned
  2530. 5E3 __imp___negd
  2531. 5E2 __imp___negs
  2532. 5E1 __imp___nes
  2533. 5D1 __imp___rt_sdiv
  2534. 5D2 __imp___rt_sdiv10
  2535. 5CD __imp___rt_sdiv64by64
  2536. 5CE __imp___rt_srem64by64
  2537. 5D5 __imp___rt_srsh
  2538. 5D3 __imp___rt_udiv
  2539. 5D4 __imp___rt_udiv10
  2540. 5CF __imp___rt_udiv64by64
  2541. 5D0 __imp___rt_urem64by64
  2542. 5D6 __imp___rt_ursh
  2543. 5E0 __imp___stod
  2544. 5DF __imp___stoi
  2545. 5DE __imp___stoi64
  2546. 5DD __imp___stou
  2547. 5DC __imp___stou64
  2548. 5BE __imp___strgtold12
  2549. 5DB __imp___subd
  2550. 5DA __imp___subs
  2551. 5D9 __imp___u64tod
  2552. 5D8 __imp___u64tos
  2553. 5D7 __imp___utod
  2554. 5FF __imp___utos
  2555. 677 __imp__abs64
  2556. 561 __imp__atodbl
  2557. 562 __imp__atoflt
  2558. 6A __imp__atoi64
  2559. 678 __imp__byteswap_uint64
  2560. 679 __imp__byteswap_ulong
  2561. 67A __imp__byteswap_ushort
  2562. 563 __imp__cabs
  2563. 565 __imp__chgsign
  2564. 566 __imp__clearfp
  2565. 567 __imp__controlfp
  2566. 568 __imp__copysign
  2567. 56D __imp__ecvt
  2568. 621 __imp__fcloseall
  2569. 570 __imp__fcvt
  2570. 626 __imp__fileno
  2571. 571 __imp__finite
  2572. 5C2 __imp__fltused
  2573. 625 __imp__flushall
  2574. 574 __imp__fpclass
  2575. 575 __imp__fpieee_flt
  2576. 576 __imp__fpreset
  2577. 57A __imp__frnd
  2578. 57B __imp__fsqrt
  2579. 57C __imp__gcvt
  2580. 61D __imp__getstdfilex
  2581. 636 __imp__getws
  2582. 57D __imp__hypot
  2583. 120 __imp__isctype
  2584. 57E __imp__isnan
  2585. 683 __imp__isnanf
  2586. 684 __imp__isunordered
  2587. 685 __imp__isunorderedf
  2588. 57F __imp__itoa
  2589. 578 __imp__itow
  2590. 580 __imp__j0
  2591. 581 __imp__j1
  2592. 582 __imp__jn
  2593. 5BC __imp__ld12tod
  2594. 5BD __imp__ld12tof
  2595. 588 __imp__logb
  2596. 58A __imp__lrotl
  2597. 58B __imp__lrotr
  2598. 58C __imp__ltoa
  2599. 58D __imp__ltow
  2600. 602 __imp__mbmemset
  2601. 590 __imp__memccpy
  2602. 593 __imp__memicmp
  2603. 597 __imp__msize
  2604. 598 __imp__nextafter
  2605. 5C1 __imp__purecall
  2606. 637 __imp__putws
  2607. 59D __imp__rotl
  2608. 688 __imp__rotl64
  2609. 59E __imp__rotr
  2610. 689 __imp__rotr64
  2611. 59F __imp__scalb
  2612. 62E __imp__setmode
  2613. 60A __imp__snprintf
  2614. 605 __imp__snwprintf
  2615. 5A4 __imp__statusfp
  2616. 71 __imp__strdup
  2617. 77 __imp__stricmp
  2618. 75 __imp__strlwr
  2619. 78 __imp__strnicmp
  2620. 72 __imp__strnset
  2621. 73 __imp__strrev
  2622. 74 __imp__strset
  2623. 76 __imp__strupr
  2624. 5B0 __imp__swab
  2625. 5B3 __imp__ultoa
  2626. 5B4 __imp__ultow
  2627. 60B __imp__vsnprintf
  2628. 606 __imp__vsnwprintf
  2629. 64 __imp__wcsdup
  2630. 146 __imp__wcsicmp
  2631. 147 __imp__wcslwr
  2632. 145 __imp__wcsnicmp
  2633. 5D __imp__wcsnset
  2634. 60 __imp__wcsrev
  2635. 61 __imp__wcsset
  2636. 148 __imp__wcsupr
  2637. 61E __imp__wfdopen
  2638. 63D __imp__wfopen
  2639. 61F __imp__wfreopen
  2640. 68 __imp__wtol
  2641. 69 __imp__wtoll
  2642. 5B8 __imp__y0
  2643. 5B9 __imp__y1
  2644. 5BA __imp__yn
  2645. 559 __imp_abs
  2646. 28B __imp_acmDriverAdd
  2647. 28C __imp_acmDriverClose
  2648. 28D __imp_acmDriverDetails
  2649. 28E __imp_acmDriverEnum
  2650. 28F __imp_acmDriverID
  2651. 290 __imp_acmDriverMessage
  2652. 291 __imp_acmDriverOpen
  2653. 292 __imp_acmDriverPriority
  2654. 293 __imp_acmDriverRemove
  2655. 2A8 __imp_acmFilterChoose
  2656. 294 __imp_acmFilterDetails
  2657. 295 __imp_acmFilterEnum
  2658. 296 __imp_acmFilterTagDetails
  2659. 297 __imp_acmFilterTagEnum
  2660. 2A7 __imp_acmFormatChoose
  2661. 298 __imp_acmFormatDetails
  2662. 299 __imp_acmFormatEnum
  2663. 29A __imp_acmFormatSuggest
  2664. 29B __imp_acmFormatTagDetails
  2665. 29C __imp_acmFormatTagEnum
  2666. 2A5 __imp_acmGetVersion
  2667. 2A6 __imp_acmMetrics
  2668. 29D __imp_acmStreamClose
  2669. 29E __imp_acmStreamConvert
  2670. 29F __imp_acmStreamMessage
  2671. 2A0 __imp_acmStreamOpen
  2672. 2A1 __imp_acmStreamPrepareHeader
  2673. 2A2 __imp_acmStreamReset
  2674. 2A3 __imp_acmStreamSize
  2675. 2A4 __imp_acmStreamUnprepareHeader
  2676. 55A __imp_acos
  2677. 55B __imp_asin
  2678. 55C __imp_atan
  2679. 55D __imp_atan2
  2680. 560 __imp_atof
  2681. 55E __imp_atoi
  2682. 55F __imp_atol
  2683. 58F __imp_calloc
  2684. 564 __imp_ceil
  2685. 68A __imp_ceilf
  2686. 629 __imp_clearerr
  2687. 569 __imp_cos
  2688. 56A __imp_cosh
  2689. 56B __imp_difftime
  2690. 56C __imp_div
  2691. 56E __imp_exp
  2692. 56F __imp_fabs
  2693. 68B __imp_fabsf
  2694. 620 __imp_fclose
  2695. 627 __imp_feof
  2696. 628 __imp_ferror
  2697. 624 __imp_fflush
  2698. 613 __imp_fgetc
  2699. 62A __imp_fgetpos
  2700. 614 __imp_fgets
  2701. 638 __imp_fgetwc
  2702. 63B __imp_fgetws
  2703. 572 __imp_floor
  2704. 68C __imp_floorf
  2705. 573 __imp_fmod
  2706. 68D __imp_fmodf
  2707. 618 __imp_fopen
  2708. 61A __imp_fprintf
  2709. 615 __imp_fputc
  2710. 616 __imp_fputs
  2711. 639 __imp_fputwc
  2712. 63C __imp_fputws
  2713. 622 __imp_fread
  2714. 577 __imp_free
  2715. 579 __imp_frexp
  2716. 619 __imp_fscanf
  2717. 62C __imp_fseek
  2718. 62B __imp_fsetpos
  2719. 62D __imp_ftell
  2720. 63F __imp_fwprintf
  2721. 623 __imp_fwrite
  2722. 63E __imp_fwscanf
  2723. 60F __imp_getchar
  2724. 611 __imp_gets
  2725. 634 __imp_getwchar
  2726. 11F __imp_iswctype
  2727. 48E __imp_keybd_event
  2728. 583 __imp_labs
  2729. 584 __imp_ldexp
  2730. 585 __imp_ldiv
  2731. 21F __imp_lineAccept
  2732. 21D __imp_lineAddProvider
  2733. 220 __imp_lineAddToConference
  2734. 221 __imp_lineAnswer
  2735. 222 __imp_lineBlindTransfer
  2736. 20C __imp_lineClose
  2737. 223 __imp_lineCompleteTransfer
  2738. 21C __imp_lineConfigDialogEdit
  2739. 20D __imp_lineDeallocateCall
  2740. 224 __imp_lineDevSpecific
  2741. 225 __imp_lineDial
  2742. 20E __imp_lineDrop
  2743. 226 __imp_lineForward
  2744. 227 __imp_lineGenerateDigits
  2745. 228 __imp_lineGenerateTone
  2746. 229 __imp_lineGetAddressCaps
  2747. 22A __imp_lineGetAddressID
  2748. 22B __imp_lineGetAddressStatus
  2749. 22C __imp_lineGetAppPriority
  2750. 22D __imp_lineGetCallInfo
  2751. 22E __imp_lineGetCallStatus
  2752. 22F __imp_lineGetConfRelatedCalls
  2753. 20F __imp_lineGetDevCaps
  2754. 210 __imp_lineGetDevConfig
  2755. 21A __imp_lineGetID
  2756. 230 __imp_lineGetIcon
  2757. 231 __imp_lineGetLineDevStatus
  2758. 232 __imp_lineGetMessage
  2759. 233 __imp_lineGetNewCalls
  2760. 234 __imp_lineGetNumRings
  2761. 235 __imp_lineGetProviderList
  2762. 236 __imp_lineGetStatusMessages
  2763. 211 __imp_lineGetTranslateCaps
  2764. 237 __imp_lineHandoff
  2765. 238 __imp_lineHold
  2766. 212 __imp_lineInitialize
  2767. 239 __imp_lineInitializeEx
  2768. 213 __imp_lineMakeCall
  2769. 23A __imp_lineMonitorDigits
  2770. 23B __imp_lineMonitorMedia
  2771. 214 __imp_lineNegotiateAPIVersion
  2772. 23C __imp_lineNegotiateExtVersion
  2773. 215 __imp_lineOpen
  2774. 23D __imp_linePickup
  2775. 23E __imp_linePrepareAddToConference
  2776. 23F __imp_lineRedirect
  2777. 240 __imp_lineReleaseUserUserInfo
  2778. 241 __imp_lineRemoveFromConference
  2779. 242 __imp_lineSendUserUserInfo
  2780. 243 __imp_lineSetAppPriority
  2781. 244 __imp_lineSetCallParams
  2782. 245 __imp_lineSetCallPrivilege
  2783. 21E __imp_lineSetCurrentLocation
  2784. 216 __imp_lineSetDevConfig
  2785. 246 __imp_lineSetMediaMode
  2786. 247 __imp_lineSetNumRings
  2787. 217 __imp_lineSetStatusMessages
  2788. 248 __imp_lineSetTerminal
  2789. 249 __imp_lineSetTollList
  2790. 24A __imp_lineSetupConference
  2791. 24B __imp_lineSetupTransfer
  2792. 218 __imp_lineShutdown
  2793. 24C __imp_lineSwapHold
  2794. 219 __imp_lineTranslateAddress
  2795. 21B __imp_lineTranslateDialog
  2796. 24D __imp_lineUnhold
  2797. 586 __imp_log
  2798. 587 __imp_log10
  2799. 589 __imp_longjmp
  2800. 143 __imp_lstrcmpW
  2801. 144 __imp_lstrcmpiW
  2802. 58E __imp_malloc
  2803. 66 __imp_mbstowcs
  2804. 2B __imp_memchr
  2805. 591 __imp_memcmp
  2806. 592 __imp_memcpy
  2807. 594 __imp_memmove
  2808. 595 __imp_memset
  2809. 2B2 __imp_mixerClose
  2810. 2A9 __imp_mixerGetControlDetails
  2811. 2AA __imp_mixerGetDevCaps
  2812. 2AB __imp_mixerGetID
  2813. 2AC __imp_mixerGetLineControls
  2814. 2AD __imp_mixerGetLineInfo
  2815. 2AE __imp_mixerGetNumDevs
  2816. 2AF __imp_mixerMessage
  2817. 2B0 __imp_mixerOpen
  2818. 2B1 __imp_mixerSetControlDetails
  2819. 596 __imp_modf
  2820. 483 __imp_mouse_event
  2821. 24E __imp_phoneClose
  2822. 24F __imp_phoneConfigDialog
  2823. 250 __imp_phoneDevSpecific
  2824. 251 __imp_phoneGetDevCaps
  2825. 252 __imp_phoneGetGain
  2826. 253 __imp_phoneGetHookSwitch
  2827. 255 __imp_phoneGetID
  2828. 254 __imp_phoneGetIcon
  2829. 256 __imp_phoneGetMessage
  2830. 257 __imp_phoneGetRing
  2831. 258 __imp_phoneGetStatus
  2832. 259 __imp_phoneGetStatusMessages
  2833. 25A __imp_phoneGetVolume
  2834. 25B __imp_phoneInitializeEx
  2835. 25C __imp_phoneNegotiateAPIVersion
  2836. 25D __imp_phoneNegotiateExtVersion
  2837. 25E __imp_phoneOpen
  2838. 25F __imp_phoneSetGain
  2839. 260 __imp_phoneSetHookSwitch
  2840. 261 __imp_phoneSetRing
  2841. 262 __imp_phoneSetStatusMessages
  2842. 263 __imp_phoneSetVolume
  2843. 264 __imp_phoneShutdown
  2844. 599 __imp_pow
  2845. 60D __imp_printf
  2846. 610 __imp_putchar
  2847. 612 __imp_puts
  2848. 635 __imp_putwchar
  2849. 59A __imp_qsort
  2850. 59B __imp_rand
  2851. 59C __imp_realloc
  2852. 60C __imp_scanf
  2853. 601 __imp_setjmp
  2854. 62F __imp_setvbuf
  2855. 5A0 __imp_sin
  2856. 5A1 __imp_sinh
  2857. 266 __imp_sndPlaySoundW
  2858. 608 __imp_sprintf
  2859. 5A2 __imp_sqrt
  2860. 68E __imp_sqrtf
  2861. 5A3 __imp_srand
  2862. 607 __imp_sscanf
  2863. 5A5 __imp_strcat
  2864. 5A6 __imp_strchr
  2865. 5A7 __imp_strcmp
  2866. 5A8 __imp_strcpy
  2867. 5A9 __imp_strcspn
  2868. 5AA __imp_strlen
  2869. 5AB __imp_strncat
  2870. 5AC __imp_strncmp
  2871. 5AD __imp_strncpy
  2872. 6E __imp_strpbrk
  2873. 6F __imp_strrchr
  2874. 70 __imp_strspn
  2875. 5AE __imp_strstr
  2876. 6B __imp_strtod
  2877. 5AF __imp_strtok
  2878. 6C __imp_strtol
  2879. 6D __imp_strtoul
  2880. 603 __imp_swprintf
  2881. 630 __imp_swscanf
  2882. 5B1 __imp_tan
  2883. 5B2 __imp_tanh
  2884. 5BF __imp_tolower
  2885. 5C0 __imp_toupper
  2886. 121 __imp_towlower
  2887. 122 __imp_towupper
  2888. 617 __imp_ungetc
  2889. 63A __imp_ungetwc
  2890. 61B __imp_vfprintf
  2891. 640 __imp_vfwprintf
  2892. 60E __imp_vprintf
  2893. 609 __imp_vsprintf
  2894. 604 __imp_vswprintf
  2895. 633 __imp_vwprintf
  2896. 283 __imp_waveInAddBuffer
  2897. 280 __imp_waveInClose
  2898. 27E __imp_waveInGetDevCaps
  2899. 27F __imp_waveInGetErrorText
  2900. 288 __imp_waveInGetID
  2901. 27D __imp_waveInGetNumDevs
  2902. 287 __imp_waveInGetPosition
  2903. 289 __imp_waveInMessage
  2904. 28A __imp_waveInOpen
  2905. 281 __imp_waveInPrepareHeader
  2906. 286 __imp_waveInReset
  2907. 284 __imp_waveInStart
  2908. 285 __imp_waveInStop
  2909. 282 __imp_waveInUnprepareHeader
  2910. 274 __imp_waveOutBreakLoop
  2911. 26D __imp_waveOutClose
  2912. 269 __imp_waveOutGetDevCaps
  2913. 26C __imp_waveOutGetErrorText
  2914. 27A __imp_waveOutGetID
  2915. 268 __imp_waveOutGetNumDevs
  2916. 276 __imp_waveOutGetPitch
  2917. 278 __imp_waveOutGetPlaybackRate
  2918. 275 __imp_waveOutGetPosition
  2919. 26A __imp_waveOutGetVolume
  2920. 27B __imp_waveOutMessage
  2921. 27C __imp_waveOutOpen
  2922. 271 __imp_waveOutPause
  2923. 26E __imp_waveOutPrepareHeader
  2924. 273 __imp_waveOutReset
  2925. 272 __imp_waveOutRestart
  2926. 277 __imp_waveOutSetPitch
  2927. 279 __imp_waveOutSetPlaybackRate
  2928. 26B __imp_waveOutSetVolume
  2929. 26F __imp_waveOutUnprepareHeader
  2930. 270 __imp_waveOutWrite
  2931. 54 __imp_wcscat
  2932. 55 __imp_wcschr
  2933. 56 __imp_wcscmp
  2934. 57 __imp_wcscpy
  2935. 58 __imp_wcscspn
  2936. 59 __imp_wcslen
  2937. 5A __imp_wcsncat
  2938. 5B __imp_wcsncmp
  2939. 5C __imp_wcsncpy
  2940. 5E __imp_wcspbrk
  2941. 5F __imp_wcsrchr
  2942. 62 __imp_wcsspn
  2943. 63 __imp_wcsstr
  2944. 5B5 __imp_wcstod
  2945. 67 __imp_wcstok
  2946. 5B6 __imp_wcstol
  2947. 65 __imp_wcstombs
  2948. 5B7 __imp_wcstoul
  2949. 632 __imp_wprintf
  2950. 631 __imp_wscanf
  2951. 52 __imp_wsprintfW
  2952. 53 __imp_wvsprintfW
  2953. 5EC __itod
  2954. 5EB __itos
  2955. 5EA __led
  2956. 5E9 __les
  2957. 5E8 __ltd
  2958. 5E7 __lts
  2959. 5E6 __muld
  2960. 5E5 __muls
  2961. 5E4 __ned
  2962. 5E3 __negd
  2963. 5E2 __negs
  2964. 5E1 __nes
  2965. 5D1 __rt_sdiv
  2966. 5D2 __rt_sdiv10
  2967. 5CD __rt_sdiv64by64
  2968. 5CE __rt_srem64by64
  2969. 5D5 __rt_srsh
  2970. 5D3 __rt_udiv
  2971. 5D4 __rt_udiv10
  2972. 5CF __rt_udiv64by64
  2973. 5D0 __rt_urem64by64
  2974. 5D6 __rt_ursh
  2975. 5E0 __stod
  2976. 5DF __stoi
  2977. 5DE __stoi64
  2978. 5DD __stou
  2979. 5DC __stou64
  2980. 5BE __strgtold12
  2981. 5DB __subd
  2982. 5DA __subs
  2983. 5D9 __u64tod
  2984. 5D8 __u64tos
  2985. 5D7 __utod
  2986. 5FF __utos
  2987. 677 _abs64
  2988. 561 _atodbl
  2989. 562 _atoflt
  2990. 6A _atoi64
  2991. 678 _byteswap_uint64
  2992. 679 _byteswap_ulong
  2993. 67A _byteswap_ushort
  2994. 563 _cabs
  2995. 565 _chgsign
  2996. 566 _clearfp
  2997. 567 _controlfp
  2998. 568 _copysign
  2999. 56D _ecvt
  3000. 621 _fcloseall
  3001. 570 _fcvt
  3002. 626 _fileno
  3003. 571 _finite
  3004. 5C2 _fltused
  3005. 625 _flushall
  3006. 574 _fpclass
  3007. 575 _fpieee_flt
  3008. 576 _fpreset
  3009. 57A _frnd
  3010. 57B _fsqrt
  3011. 57C _gcvt
  3012. 61D _getstdfilex
  3013. 636 _getws
  3014. 57D _hypot
  3015. 120 _isctype
  3016. 57E _isnan
  3017. 683 _isnanf
  3018. 684 _isunordered
  3019. 685 _isunorderedf
  3020. 57F _itoa
  3021. 578 _itow
  3022. 580 _j0
  3023. 581 _j1
  3024. 582 _jn
  3025. 5BC _ld12tod
  3026. 5BD _ld12tof
  3027. 588 _logb
  3028. 58A _lrotl
  3029. 58B _lrotr
  3030. 58C _ltoa
  3031. 58D _ltow
  3032. 602 _mbmemset
  3033. 590 _memccpy
  3034. 593 _memicmp
  3035. 597 _msize
  3036. 598 _nextafter
  3037. 5C1 _purecall
  3038. 637 _putws
  3039. 59D _rotl
  3040. 688 _rotl64
  3041. 59E _rotr
  3042. 689 _rotr64
  3043. 59F _scalb
  3044. 62E _setmode
  3045. 60A _snprintf
  3046. 605 _snwprintf
  3047. 5A4 _statusfp
  3048. 71 _strdup
  3049. 77 _stricmp
  3050. 75 _strlwr
  3051. 78 _strnicmp
  3052. 72 _strnset
  3053. 73 _strrev
  3054. 74 _strset
  3055. 76 _strupr
  3056. 5B0 _swab
  3057. 5B3 _ultoa
  3058. 5B4 _ultow
  3059. 60B _vsnprintf
  3060. 606 _vsnwprintf
  3061. 64 _wcsdup
  3062. 146 _wcsicmp
  3063. 147 _wcslwr
  3064. 145 _wcsnicmp
  3065. 5D _wcsnset
  3066. 60 _wcsrev
  3067. 61 _wcsset
  3068. 148 _wcsupr
  3069. 61E _wfdopen
  3070. 63D _wfopen
  3071. 61F _wfreopen
  3072. 68 _wtol
  3073. 69 _wtoll
  3074. 5B8 _y0
  3075. 5B9 _y1
  3076. 5BA _yn
  3077. 559 abs
  3078. 28B acmDriverAdd
  3079. 28C acmDriverClose
  3080. 28D acmDriverDetails
  3081. 28E acmDriverEnum
  3082. 28F acmDriverID
  3083. 290 acmDriverMessage
  3084. 291 acmDriverOpen
  3085. 292 acmDriverPriority
  3086. 293 acmDriverRemove
  3087. 2A8 acmFilterChoose
  3088. 294 acmFilterDetails
  3089. 295 acmFilterEnum
  3090. 296 acmFilterTagDetails
  3091. 297 acmFilterTagEnum
  3092. 2A7 acmFormatChoose
  3093. 298 acmFormatDetails
  3094. 299 acmFormatEnum
  3095. 29A acmFormatSuggest
  3096. 29B acmFormatTagDetails
  3097. 29C acmFormatTagEnum
  3098. 2A5 acmGetVersion
  3099. 2A6 acmMetrics
  3100. 29D acmStreamClose
  3101. 29E acmStreamConvert
  3102. 29F acmStreamMessage
  3103. 2A0 acmStreamOpen
  3104. 2A1 acmStreamPrepareHeader
  3105. 2A2 acmStreamReset
  3106. 2A3 acmStreamSize
  3107. 2A4 acmStreamUnprepareHeader
  3108. 55A acos
  3109. 55B asin
  3110. 55C atan
  3111. 55D atan2
  3112. 560 atof
  3113. 55E atoi
  3114. 55F atol
  3115. 58F calloc
  3116. 564 ceil
  3117. 68A ceilf
  3118. 629 clearerr
  3119. 569 cos
  3120. 56A cosh
  3121. 56B difftime
  3122. 56C div
  3123. 56E exp
  3124. 56F fabs
  3125. 68B fabsf
  3126. 620 fclose
  3127. 627 feof
  3128. 628 ferror
  3129. 624 fflush
  3130. 613 fgetc
  3131. 62A fgetpos
  3132. 614 fgets
  3133. 638 fgetwc
  3134. 63B fgetws
  3135. 572 floor
  3136. 68C floorf
  3137. 573 fmod
  3138. 68D fmodf
  3139. 618 fopen
  3140. 61A fprintf
  3141. 615 fputc
  3142. 616 fputs
  3143. 639 fputwc
  3144. 63C fputws
  3145. 622 fread
  3146. 577 free
  3147. 579 frexp
  3148. 619 fscanf
  3149. 62C fseek
  3150. 62B fsetpos
  3151. 62D ftell
  3152. 63F fwprintf
  3153. 623 fwrite
  3154. 63E fwscanf
  3155. 60F getchar
  3156. 611 gets
  3157. 634 getwchar
  3158. 11F iswctype
  3159. 48E keybd_event
  3160. 583 labs
  3161. 584 ldexp
  3162. 585 ldiv
  3163. 21F lineAccept
  3164. 21D lineAddProvider
  3165. 220 lineAddToConference
  3166. 221 lineAnswer
  3167. 222 lineBlindTransfer
  3168. 20C lineClose
  3169. 223 lineCompleteTransfer
  3170. 21C lineConfigDialogEdit
  3171. 20D lineDeallocateCall
  3172. 224 lineDevSpecific
  3173. 225 lineDial
  3174. 20E lineDrop
  3175. 226 lineForward
  3176. 227 lineGenerateDigits
  3177. 228 lineGenerateTone
  3178. 229 lineGetAddressCaps
  3179. 22A lineGetAddressID
  3180. 22B lineGetAddressStatus
  3181. 22C lineGetAppPriority
  3182. 22D lineGetCallInfo
  3183. 22E lineGetCallStatus
  3184. 22F lineGetConfRelatedCalls
  3185. 20F lineGetDevCaps
  3186. 210 lineGetDevConfig
  3187. 21A lineGetID
  3188. 230 lineGetIcon
  3189. 231 lineGetLineDevStatus
  3190. 232 lineGetMessage
  3191. 233 lineGetNewCalls
  3192. 234 lineGetNumRings
  3193. 235 lineGetProviderList
  3194. 236 lineGetStatusMessages
  3195. 211 lineGetTranslateCaps
  3196. 237 lineHandoff
  3197. 238 lineHold
  3198. 212 lineInitialize
  3199. 239 lineInitializeEx
  3200. 213 lineMakeCall
  3201. 23A lineMonitorDigits
  3202. 23B lineMonitorMedia
  3203. 214 lineNegotiateAPIVersion
  3204. 23C lineNegotiateExtVersion
  3205. 215 lineOpen
  3206. 23D linePickup
  3207. 23E linePrepareAddToConference
  3208. 23F lineRedirect
  3209. 240 lineReleaseUserUserInfo
  3210. 241 lineRemoveFromConference
  3211. 242 lineSendUserUserInfo
  3212. 243 lineSetAppPriority
  3213. 244 lineSetCallParams
  3214. 245 lineSetCallPrivilege
  3215. 21E lineSetCurrentLocation
  3216. 216 lineSetDevConfig
  3217. 246 lineSetMediaMode
  3218. 247 lineSetNumRings
  3219. 217 lineSetStatusMessages
  3220. 248 lineSetTerminal
  3221. 249 lineSetTollList
  3222. 24A lineSetupConference
  3223. 24B lineSetupTransfer
  3224. 218 lineShutdown
  3225. 24C lineSwapHold
  3226. 219 lineTranslateAddress
  3227. 21B lineTranslateDialog
  3228. 24D lineUnhold
  3229. 586 log
  3230. 587 log10
  3231. 589 longjmp
  3232. 143 lstrcmpW
  3233. 144 lstrcmpiW
  3234. 58E malloc
  3235. 66 mbstowcs
  3236. 2B memchr
  3237. 591 memcmp
  3238. 592 memcpy
  3239. 594 memmove
  3240. 595 memset
  3241. 2B2 mixerClose
  3242. 2A9 mixerGetControlDetails
  3243. 2AA mixerGetDevCaps
  3244. 2AB mixerGetID
  3245. 2AC mixerGetLineControls
  3246. 2AD mixerGetLineInfo
  3247. 2AE mixerGetNumDevs
  3248. 2AF mixerMessage
  3249. 2B0 mixerOpen
  3250. 2B1 mixerSetControlDetails
  3251. 596 modf
  3252. 483 mouse_event
  3253. 24E phoneClose
  3254. 24F phoneConfigDialog
  3255. 250 phoneDevSpecific
  3256. 251 phoneGetDevCaps
  3257. 252 phoneGetGain
  3258. 253 phoneGetHookSwitch
  3259. 255 phoneGetID
  3260. 254 phoneGetIcon
  3261. 256 phoneGetMessage
  3262. 257 phoneGetRing
  3263. 258 phoneGetStatus
  3264. 259 phoneGetStatusMessages
  3265. 25A phoneGetVolume
  3266. 25B phoneInitializeEx
  3267. 25C phoneNegotiateAPIVersion
  3268. 25D phoneNegotiateExtVersion
  3269. 25E phoneOpen
  3270. 25F phoneSetGain
  3271. 260 phoneSetHookSwitch
  3272. 261 phoneSetRing
  3273. 262 phoneSetStatusMessages
  3274. 263 phoneSetVolume
  3275. 264 phoneShutdown
  3276. 599 pow
  3277. 60D printf
  3278. 610 putchar
  3279. 612 puts
  3280. 635 putwchar
  3281. 59A qsort
  3282. 59B rand
  3283. 59C realloc
  3284. 60C scanf
  3285. 601 setjmp
  3286. 62F setvbuf
  3287. 5A0 sin
  3288. 5A1 sinh
  3289. 266 sndPlaySoundW
  3290. 608 sprintf
  3291. 5A2 sqrt
  3292. 68E sqrtf
  3293. 5A3 srand
  3294. 607 sscanf
  3295. 5A5 strcat
  3296. 5A6 strchr
  3297. 5A7 strcmp
  3298. 5A8 strcpy
  3299. 5A9 strcspn
  3300. 5AA strlen
  3301. 5AB strncat
  3302. 5AC strncmp
  3303. 5AD strncpy
  3304. 6E strpbrk
  3305. 6F strrchr
  3306. 70 strspn
  3307. 5AE strstr
  3308. 6B strtod
  3309. 5AF strtok
  3310. 6C strtol
  3311. 6D strtoul
  3312. 603 swprintf
  3313. 630 swscanf
  3314. 5B1 tan
  3315. 5B2 tanh
  3316. 5BF tolower
  3317. 5C0 toupper
  3318. 121 towlower
  3319. 122 towupper
  3320. 617 ungetc
  3321. 63A ungetwc
  3322. 61B vfprintf
  3323. 640 vfwprintf
  3324. 60E vprintf
  3325. 609 vsprintf
  3326. 604 vswprintf
  3327. 633 vwprintf
  3328. 283 waveInAddBuffer
  3329. 280 waveInClose
  3330. 27E waveInGetDevCaps
  3331. 27F waveInGetErrorText
  3332. 288 waveInGetID
  3333. 27D waveInGetNumDevs
  3334. 287 waveInGetPosition
  3335. 289 waveInMessage
  3336. 28A waveInOpen
  3337. 281 waveInPrepareHeader
  3338. 286 waveInReset
  3339. 284 waveInStart
  3340. 285 waveInStop
  3341. 282 waveInUnprepareHeader
  3342. 274 waveOutBreakLoop
  3343. 26D waveOutClose
  3344. 269 waveOutGetDevCaps
  3345. 26C waveOutGetErrorText
  3346. 27A waveOutGetID
  3347. 268 waveOutGetNumDevs
  3348. 276 waveOutGetPitch
  3349. 278 waveOutGetPlaybackRate
  3350. 275 waveOutGetPosition
  3351. 26A waveOutGetVolume
  3352. 27B waveOutMessage
  3353. 27C waveOutOpen
  3354. 271 waveOutPause
  3355. 26E waveOutPrepareHeader
  3356. 273 waveOutReset
  3357. 272 waveOutRestart
  3358. 277 waveOutSetPitch
  3359. 279 waveOutSetPlaybackRate
  3360. 26B waveOutSetVolume
  3361. 26F waveOutUnprepareHeader
  3362. 270 waveOutWrite
  3363. 54 wcscat
  3364. 55 wcschr
  3365. 56 wcscmp
  3366. 57 wcscpy
  3367. 58 wcscspn
  3368. 59 wcslen
  3369. 5A wcsncat
  3370. 5B wcsncmp
  3371. 5C wcsncpy
  3372. 5E wcspbrk
  3373. 5F wcsrchr
  3374. 62 wcsspn
  3375. 63 wcsstr
  3376. 5B5 wcstod
  3377. 67 wcstok
  3378. 5B6 wcstol
  3379. 65 wcstombs
  3380. 5B7 wcstoul
  3381. 632 wprintf
  3382. 631 wscanf
  3383. 52 wsprintfW
  3384. 53 wvsprintfW
  3385. 3 COREDLL_NULL_THUNK_DATA
  3386. }
  3387. {$ifdef read_interface}
  3388. //*****************************************************************************
  3389. // consts
  3390. //*****************************************************************************
  3391. //*****************************************************************************
  3392. // types
  3393. //*****************************************************************************
  3394. //*****************************************************************************
  3395. // functions
  3396. //*****************************************************************************
  3397. //function ChangeDisplaySettingsEx(lpszDeviceName: LPCTSTR; lpDevMode: LPDEVMODE; hwnd: HWND; dwflags: DWORD ; lParam: LPVOID ): LONG; external KernelDLL name 'ChangeDisplaySettingsEx';
  3398. {$endif read_interface}
  3399. {$ifdef read_implementation}
  3400. {$endif read_implementation}