triton-windows 3.3.0a0.post12__cp312-cp312-win_amd64.whl → 3.3.0a0.post13__cp312-cp312-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of triton-windows might be problematic. Click here for more details.
- triton/_C/libtriton.pyd +0 -0
- triton/__init__.py +0 -12
- triton/backends/nvidia/compiler.py +3 -1
- triton/compiler/compiler.py +4 -4
- triton/runtime/build.py +29 -10
- triton/runtime/tcc/include/_mingw.h +170 -0
- triton/runtime/tcc/include/assert.h +57 -0
- triton/runtime/tcc/include/conio.h +409 -0
- triton/runtime/tcc/include/ctype.h +281 -0
- triton/runtime/tcc/include/dir.h +31 -0
- triton/runtime/tcc/include/direct.h +68 -0
- triton/runtime/tcc/include/dirent.h +135 -0
- triton/runtime/tcc/include/dos.h +55 -0
- triton/runtime/tcc/include/errno.h +75 -0
- triton/runtime/tcc/include/excpt.h +123 -0
- triton/runtime/tcc/include/fcntl.h +52 -0
- triton/runtime/tcc/include/fenv.h +108 -0
- triton/runtime/tcc/include/float.h +57 -0
- triton/runtime/tcc/include/inttypes.h +297 -0
- triton/runtime/tcc/include/io.h +418 -0
- triton/runtime/tcc/include/limits.h +111 -0
- triton/runtime/tcc/include/locale.h +91 -0
- triton/runtime/tcc/include/malloc.h +181 -0
- triton/runtime/tcc/include/math.h +737 -0
- triton/runtime/tcc/include/mem.h +13 -0
- triton/runtime/tcc/include/memory.h +40 -0
- triton/runtime/tcc/include/process.h +176 -0
- triton/runtime/tcc/include/sec_api/conio_s.h +42 -0
- triton/runtime/tcc/include/sec_api/crtdbg_s.h +19 -0
- triton/runtime/tcc/include/sec_api/io_s.h +33 -0
- triton/runtime/tcc/include/sec_api/mbstring_s.h +52 -0
- triton/runtime/tcc/include/sec_api/search_s.h +25 -0
- triton/runtime/tcc/include/sec_api/stdio_s.h +145 -0
- triton/runtime/tcc/include/sec_api/stdlib_s.h +67 -0
- triton/runtime/tcc/include/sec_api/stralign_s.h +30 -0
- triton/runtime/tcc/include/sec_api/string_s.h +41 -0
- triton/runtime/tcc/include/sec_api/sys/timeb_s.h +34 -0
- triton/runtime/tcc/include/sec_api/tchar_s.h +266 -0
- triton/runtime/tcc/include/sec_api/time_s.h +61 -0
- triton/runtime/tcc/include/sec_api/wchar_s.h +128 -0
- triton/runtime/tcc/include/setjmp.h +160 -0
- triton/runtime/tcc/include/share.h +28 -0
- triton/runtime/tcc/include/signal.h +63 -0
- triton/runtime/tcc/include/stdarg.h +79 -0
- triton/runtime/tcc/include/stdbool.h +11 -0
- triton/runtime/tcc/include/stddef.h +54 -0
- triton/runtime/tcc/include/stdint.h +212 -0
- triton/runtime/tcc/include/stdio.h +429 -0
- triton/runtime/tcc/include/stdlib.h +580 -0
- triton/runtime/tcc/include/string.h +164 -0
- triton/runtime/tcc/include/sys/fcntl.h +13 -0
- triton/runtime/tcc/include/sys/file.h +14 -0
- triton/runtime/tcc/include/sys/locking.h +30 -0
- triton/runtime/tcc/include/sys/stat.h +290 -0
- triton/runtime/tcc/include/sys/time.h +69 -0
- triton/runtime/tcc/include/sys/timeb.h +133 -0
- triton/runtime/tcc/include/sys/types.h +118 -0
- triton/runtime/tcc/include/sys/unistd.h +14 -0
- triton/runtime/tcc/include/sys/utime.h +146 -0
- triton/runtime/tcc/include/tcc/tcc_libm.h +201 -0
- triton/runtime/tcc/include/tcclib.h +80 -0
- triton/runtime/tcc/include/tchar.h +1102 -0
- triton/runtime/tcc/include/time.h +287 -0
- triton/runtime/tcc/include/vadefs.h +11 -0
- triton/runtime/tcc/include/values.h +4 -0
- triton/runtime/tcc/include/varargs.h +12 -0
- triton/runtime/tcc/include/wchar.h +873 -0
- triton/runtime/tcc/include/wctype.h +172 -0
- triton/runtime/tcc/include/winapi/basetsd.h +149 -0
- triton/runtime/tcc/include/winapi/basetyps.h +85 -0
- triton/runtime/tcc/include/winapi/guiddef.h +156 -0
- triton/runtime/tcc/include/winapi/poppack.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack1.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack2.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack4.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack8.h +8 -0
- triton/runtime/tcc/include/winapi/winbase.h +2951 -0
- triton/runtime/tcc/include/winapi/wincon.h +301 -0
- triton/runtime/tcc/include/winapi/windef.h +293 -0
- triton/runtime/tcc/include/winapi/windows.h +127 -0
- triton/runtime/tcc/include/winapi/winerror.h +3166 -0
- triton/runtime/tcc/include/winapi/wingdi.h +4080 -0
- triton/runtime/tcc/include/winapi/winnt.h +5835 -0
- triton/runtime/tcc/include/winapi/winreg.h +272 -0
- triton/runtime/tcc/include/winapi/winuser.h +5651 -0
- triton/runtime/tcc/include/winapi/winver.h +160 -0
- triton/runtime/tcc/lib/cuda.def +697 -0
- triton/runtime/tcc/lib/gdi32.def +337 -0
- triton/runtime/tcc/lib/kernel32.def +770 -0
- triton/runtime/tcc/lib/libtcc1-64.a +0 -0
- triton/runtime/tcc/lib/msvcrt.def +1399 -0
- triton/runtime/tcc/lib/python3.def +810 -0
- triton/runtime/tcc/lib/user32.def +658 -0
- triton/runtime/tcc/libtcc.dll +0 -0
- triton/runtime/tcc/tcc.exe +0 -0
- {triton_windows-3.3.0a0.post12.dist-info → triton_windows-3.3.0a0.post13.dist-info}/METADATA +1 -1
- {triton_windows-3.3.0a0.post12.dist-info → triton_windows-3.3.0a0.post13.dist-info}/RECORD +99 -9
- {triton_windows-3.3.0a0.post12.dist-info → triton_windows-3.3.0a0.post13.dist-info}/WHEEL +0 -0
- {triton_windows-3.3.0a0.post12.dist-info → triton_windows-3.3.0a0.post13.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,658 @@
|
|
|
1
|
+
LIBRARY user32.dll
|
|
2
|
+
|
|
3
|
+
EXPORTS
|
|
4
|
+
ActivateKeyboardLayout
|
|
5
|
+
AdjustWindowRect
|
|
6
|
+
AdjustWindowRectEx
|
|
7
|
+
AlignRects
|
|
8
|
+
AllowSetForegroundWindow
|
|
9
|
+
AnimateWindow
|
|
10
|
+
AnyPopup
|
|
11
|
+
AppendMenuA
|
|
12
|
+
AppendMenuW
|
|
13
|
+
ArrangeIconicWindows
|
|
14
|
+
AttachThreadInput
|
|
15
|
+
BeginDeferWindowPos
|
|
16
|
+
BeginPaint
|
|
17
|
+
BlockInput
|
|
18
|
+
BringWindowToTop
|
|
19
|
+
BroadcastSystemMessage
|
|
20
|
+
BroadcastSystemMessageA
|
|
21
|
+
BroadcastSystemMessageW
|
|
22
|
+
CalcChildScroll
|
|
23
|
+
CallMsgFilter
|
|
24
|
+
CallMsgFilterA
|
|
25
|
+
CallMsgFilterW
|
|
26
|
+
CallNextHookEx
|
|
27
|
+
CallWindowProcA
|
|
28
|
+
CallWindowProcW
|
|
29
|
+
CascadeChildWindows
|
|
30
|
+
CascadeWindows
|
|
31
|
+
ChangeClipboardChain
|
|
32
|
+
ChangeDisplaySettingsA
|
|
33
|
+
ChangeDisplaySettingsExA
|
|
34
|
+
ChangeDisplaySettingsExW
|
|
35
|
+
ChangeDisplaySettingsW
|
|
36
|
+
ChangeMenuA
|
|
37
|
+
ChangeMenuW
|
|
38
|
+
CharLowerA
|
|
39
|
+
CharLowerBuffA
|
|
40
|
+
CharLowerBuffW
|
|
41
|
+
CharLowerW
|
|
42
|
+
CharNextA
|
|
43
|
+
CharNextExA
|
|
44
|
+
CharNextExW
|
|
45
|
+
CharNextW
|
|
46
|
+
CharPrevA
|
|
47
|
+
CharPrevExA
|
|
48
|
+
CharPrevExW
|
|
49
|
+
CharPrevW
|
|
50
|
+
CharToOemA
|
|
51
|
+
CharToOemBuffA
|
|
52
|
+
CharToOemBuffW
|
|
53
|
+
CharToOemW
|
|
54
|
+
CharUpperA
|
|
55
|
+
CharUpperBuffA
|
|
56
|
+
CharUpperBuffW
|
|
57
|
+
CharUpperW
|
|
58
|
+
CheckDlgButton
|
|
59
|
+
CheckMenuItem
|
|
60
|
+
CheckMenuRadioItem
|
|
61
|
+
CheckRadioButton
|
|
62
|
+
ChildWindowFromPoint
|
|
63
|
+
ChildWindowFromPointEx
|
|
64
|
+
ClientThreadConnect
|
|
65
|
+
ClientToScreen
|
|
66
|
+
ClipCursor
|
|
67
|
+
CloseClipboard
|
|
68
|
+
CloseDesktop
|
|
69
|
+
CloseWindow
|
|
70
|
+
CloseWindowStation
|
|
71
|
+
CopyAcceleratorTableA
|
|
72
|
+
CopyAcceleratorTableW
|
|
73
|
+
CopyIcon
|
|
74
|
+
CopyImage
|
|
75
|
+
CopyRect
|
|
76
|
+
CountClipboardFormats
|
|
77
|
+
CreateAcceleratorTableA
|
|
78
|
+
CreateAcceleratorTableW
|
|
79
|
+
CreateCaret
|
|
80
|
+
CreateCursor
|
|
81
|
+
CreateDesktopA
|
|
82
|
+
CreateDesktopW
|
|
83
|
+
CreateDialogIndirectParamA
|
|
84
|
+
CreateDialogIndirectParamW
|
|
85
|
+
CreateDialogParamA
|
|
86
|
+
CreateDialogParamW
|
|
87
|
+
CreateIcon
|
|
88
|
+
CreateIconFromResource
|
|
89
|
+
CreateIconFromResourceEx
|
|
90
|
+
CreateIconIndirect
|
|
91
|
+
CreateMDIWindowA
|
|
92
|
+
CreateMDIWindowW
|
|
93
|
+
CreateMenu
|
|
94
|
+
CreatePopupMenu
|
|
95
|
+
CreateWindowExA
|
|
96
|
+
CreateWindowExW
|
|
97
|
+
CreateWindowStationA
|
|
98
|
+
CreateWindowStationW
|
|
99
|
+
DdeAbandonTransaction
|
|
100
|
+
DdeAccessData
|
|
101
|
+
DdeAddData
|
|
102
|
+
DdeClientTransaction
|
|
103
|
+
DdeCmpStringHandles
|
|
104
|
+
DdeConnect
|
|
105
|
+
DdeConnectList
|
|
106
|
+
DdeCreateDataHandle
|
|
107
|
+
DdeCreateStringHandleA
|
|
108
|
+
DdeCreateStringHandleW
|
|
109
|
+
DdeDisconnect
|
|
110
|
+
DdeDisconnectList
|
|
111
|
+
DdeEnableCallback
|
|
112
|
+
DdeFreeDataHandle
|
|
113
|
+
DdeFreeStringHandle
|
|
114
|
+
DdeGetData
|
|
115
|
+
DdeGetLastError
|
|
116
|
+
DdeImpersonateClient
|
|
117
|
+
DdeInitializeA
|
|
118
|
+
DdeInitializeW
|
|
119
|
+
DdeKeepStringHandle
|
|
120
|
+
DdeNameService
|
|
121
|
+
DdePostAdvise
|
|
122
|
+
DdeQueryConvInfo
|
|
123
|
+
DdeQueryNextServer
|
|
124
|
+
DdeQueryStringA
|
|
125
|
+
DdeQueryStringW
|
|
126
|
+
DdeReconnect
|
|
127
|
+
DdeSetQualityOfService
|
|
128
|
+
DdeSetUserHandle
|
|
129
|
+
DdeUnaccessData
|
|
130
|
+
DdeUninitialize
|
|
131
|
+
DefDlgProcA
|
|
132
|
+
DefDlgProcW
|
|
133
|
+
DefFrameProcA
|
|
134
|
+
DefFrameProcW
|
|
135
|
+
DefMDIChildProcA
|
|
136
|
+
DefMDIChildProcW
|
|
137
|
+
DefWindowProcA
|
|
138
|
+
DefWindowProcW
|
|
139
|
+
DeferWindowPos
|
|
140
|
+
DeleteMenu
|
|
141
|
+
DestroyAcceleratorTable
|
|
142
|
+
DestroyCaret
|
|
143
|
+
DestroyCursor
|
|
144
|
+
DestroyIcon
|
|
145
|
+
DestroyMenu
|
|
146
|
+
DestroyWindow
|
|
147
|
+
DialogBoxIndirectParamA
|
|
148
|
+
DialogBoxIndirectParamW
|
|
149
|
+
DialogBoxParamA
|
|
150
|
+
DialogBoxParamW
|
|
151
|
+
DispatchMessageA
|
|
152
|
+
DispatchMessageW
|
|
153
|
+
DlgDirListA
|
|
154
|
+
DlgDirListComboBoxA
|
|
155
|
+
DlgDirListComboBoxW
|
|
156
|
+
DlgDirListW
|
|
157
|
+
DlgDirSelectComboBoxExA
|
|
158
|
+
DlgDirSelectComboBoxExW
|
|
159
|
+
DlgDirSelectExA
|
|
160
|
+
DlgDirSelectExW
|
|
161
|
+
DragDetect
|
|
162
|
+
DragObject
|
|
163
|
+
DrawAnimatedRects
|
|
164
|
+
DrawCaption
|
|
165
|
+
DrawCaptionTempA
|
|
166
|
+
DrawCaptionTempW
|
|
167
|
+
DrawEdge
|
|
168
|
+
DrawFocusRect
|
|
169
|
+
DrawFrame
|
|
170
|
+
DrawFrameControl
|
|
171
|
+
DrawIcon
|
|
172
|
+
DrawIconEx
|
|
173
|
+
DrawMenuBar
|
|
174
|
+
DrawMenuBarTemp
|
|
175
|
+
DrawStateA
|
|
176
|
+
DrawStateW
|
|
177
|
+
DrawTextA
|
|
178
|
+
DrawTextExA
|
|
179
|
+
DrawTextExW
|
|
180
|
+
DrawTextW
|
|
181
|
+
EditWndProc
|
|
182
|
+
EmptyClipboard
|
|
183
|
+
EnableMenuItem
|
|
184
|
+
EnableScrollBar
|
|
185
|
+
EnableWindow
|
|
186
|
+
EndDeferWindowPos
|
|
187
|
+
EndDialog
|
|
188
|
+
EndMenu
|
|
189
|
+
EndPaint
|
|
190
|
+
EndTask
|
|
191
|
+
EnumChildWindows
|
|
192
|
+
EnumClipboardFormats
|
|
193
|
+
EnumDesktopWindows
|
|
194
|
+
EnumDesktopsA
|
|
195
|
+
EnumDesktopsW
|
|
196
|
+
EnumDisplayDevicesA
|
|
197
|
+
EnumDisplayDevicesW
|
|
198
|
+
EnumDisplayMonitors
|
|
199
|
+
EnumDisplaySettingsA
|
|
200
|
+
EnumDisplaySettingsExA
|
|
201
|
+
EnumDisplaySettingsExW
|
|
202
|
+
EnumDisplaySettingsW
|
|
203
|
+
EnumPropsA
|
|
204
|
+
EnumPropsExA
|
|
205
|
+
EnumPropsExW
|
|
206
|
+
EnumPropsW
|
|
207
|
+
EnumThreadWindows
|
|
208
|
+
EnumWindowStationsA
|
|
209
|
+
EnumWindowStationsW
|
|
210
|
+
EnumWindows
|
|
211
|
+
EqualRect
|
|
212
|
+
ExcludeUpdateRgn
|
|
213
|
+
ExitWindowsEx
|
|
214
|
+
FillRect
|
|
215
|
+
FindWindowA
|
|
216
|
+
FindWindowExA
|
|
217
|
+
FindWindowExW
|
|
218
|
+
FindWindowW
|
|
219
|
+
FlashWindow
|
|
220
|
+
FlashWindowEx
|
|
221
|
+
FrameRect
|
|
222
|
+
FreeDDElParam
|
|
223
|
+
GetActiveWindow
|
|
224
|
+
GetAltTabInfo
|
|
225
|
+
GetAncestor
|
|
226
|
+
GetAsyncKeyState
|
|
227
|
+
GetCapture
|
|
228
|
+
GetCaretBlinkTime
|
|
229
|
+
GetCaretPos
|
|
230
|
+
GetClassInfoA
|
|
231
|
+
GetClassInfoExA
|
|
232
|
+
GetClassInfoExW
|
|
233
|
+
GetClassInfoW
|
|
234
|
+
GetClassLongA
|
|
235
|
+
GetClassLongW
|
|
236
|
+
GetClassNameA
|
|
237
|
+
GetClassNameW
|
|
238
|
+
GetClassWord
|
|
239
|
+
GetClientRect
|
|
240
|
+
GetClipCursor
|
|
241
|
+
GetClipboardData
|
|
242
|
+
GetClipboardFormatNameA
|
|
243
|
+
GetClipboardFormatNameW
|
|
244
|
+
GetClipboardOwner
|
|
245
|
+
GetClipboardSequenceNumber
|
|
246
|
+
GetClipboardViewer
|
|
247
|
+
GetComboBoxInfo
|
|
248
|
+
GetCursor
|
|
249
|
+
GetCursorInfo
|
|
250
|
+
GetCursorPos
|
|
251
|
+
GetDC
|
|
252
|
+
GetDCEx
|
|
253
|
+
GetDesktopWindow
|
|
254
|
+
GetDialogBaseUnits
|
|
255
|
+
GetDlgCtrlID
|
|
256
|
+
GetDlgItem
|
|
257
|
+
GetDlgItemInt
|
|
258
|
+
GetDlgItemTextA
|
|
259
|
+
GetDlgItemTextW
|
|
260
|
+
GetDoubleClickTime
|
|
261
|
+
GetFocus
|
|
262
|
+
GetForegroundWindow
|
|
263
|
+
GetGUIThreadInfo
|
|
264
|
+
GetGuiResources
|
|
265
|
+
GetIconInfo
|
|
266
|
+
GetInputDesktop
|
|
267
|
+
GetInputState
|
|
268
|
+
GetInternalWindowPos
|
|
269
|
+
GetKBCodePage
|
|
270
|
+
GetKeyNameTextA
|
|
271
|
+
GetKeyNameTextW
|
|
272
|
+
GetKeyState
|
|
273
|
+
GetKeyboardLayout
|
|
274
|
+
GetKeyboardLayoutList
|
|
275
|
+
GetKeyboardLayoutNameA
|
|
276
|
+
GetKeyboardLayoutNameW
|
|
277
|
+
GetKeyboardState
|
|
278
|
+
GetKeyboardType
|
|
279
|
+
GetLastActivePopup
|
|
280
|
+
GetListBoxInfo
|
|
281
|
+
GetMenu
|
|
282
|
+
GetMenuBarInfo
|
|
283
|
+
GetMenuCheckMarkDimensions
|
|
284
|
+
GetMenuContextHelpId
|
|
285
|
+
GetMenuDefaultItem
|
|
286
|
+
GetMenuInfo
|
|
287
|
+
GetMenuItemCount
|
|
288
|
+
GetMenuItemID
|
|
289
|
+
GetMenuItemInfoA
|
|
290
|
+
GetMenuItemInfoW
|
|
291
|
+
GetMenuItemRect
|
|
292
|
+
GetMenuState
|
|
293
|
+
GetMenuStringA
|
|
294
|
+
GetMenuStringW
|
|
295
|
+
GetMessageA
|
|
296
|
+
GetMessageExtraInfo
|
|
297
|
+
GetMessagePos
|
|
298
|
+
GetMessageTime
|
|
299
|
+
GetMessageW
|
|
300
|
+
GetMonitorInfoA
|
|
301
|
+
GetMonitorInfoW
|
|
302
|
+
GetMouseMovePoints
|
|
303
|
+
GetMouseMovePointsEx
|
|
304
|
+
GetNextDlgGroupItem
|
|
305
|
+
GetNextDlgTabItem
|
|
306
|
+
GetNextQueueWindow
|
|
307
|
+
GetOpenClipboardWindow
|
|
308
|
+
GetParent
|
|
309
|
+
GetPriorityClipboardFormat
|
|
310
|
+
GetProcessDefaultLayout
|
|
311
|
+
GetProcessWindowStation
|
|
312
|
+
GetPropA
|
|
313
|
+
GetPropW
|
|
314
|
+
GetQueueStatus
|
|
315
|
+
GetScrollBarInfo
|
|
316
|
+
GetScrollInfo
|
|
317
|
+
GetScrollPos
|
|
318
|
+
GetScrollRange
|
|
319
|
+
GetShellWindow
|
|
320
|
+
GetSubMenu
|
|
321
|
+
GetSysColor
|
|
322
|
+
GetSysColorBrush
|
|
323
|
+
GetSystemMenu
|
|
324
|
+
GetSystemMetrics
|
|
325
|
+
GetTabbedTextExtentA
|
|
326
|
+
GetTabbedTextExtentW
|
|
327
|
+
GetThreadDesktop
|
|
328
|
+
GetTitleBarInfo
|
|
329
|
+
GetTopWindow
|
|
330
|
+
GetUpdateRect
|
|
331
|
+
GetUpdateRgn
|
|
332
|
+
GetUserObjectInformationA
|
|
333
|
+
GetUserObjectInformationW
|
|
334
|
+
GetUserObjectSecurity
|
|
335
|
+
GetWindow
|
|
336
|
+
GetWindowContextHelpId
|
|
337
|
+
GetWindowDC
|
|
338
|
+
GetWindowInfo
|
|
339
|
+
GetWindowLongPtrA
|
|
340
|
+
GetWindowLongPtrW
|
|
341
|
+
SetWindowLongPtrA
|
|
342
|
+
SetWindowLongPtrW
|
|
343
|
+
GetWindowLongA
|
|
344
|
+
GetWindowLongW
|
|
345
|
+
GetWindowModuleFileNameA
|
|
346
|
+
GetWindowModuleFileNameW
|
|
347
|
+
GetWindowPlacement
|
|
348
|
+
GetWindowRect
|
|
349
|
+
GetWindowRgn
|
|
350
|
+
GetWindowTextA
|
|
351
|
+
GetWindowTextLengthA
|
|
352
|
+
GetWindowTextLengthW
|
|
353
|
+
GetWindowTextW
|
|
354
|
+
GetWindowThreadProcessId
|
|
355
|
+
GetWindowWord
|
|
356
|
+
GrayStringA
|
|
357
|
+
GrayStringW
|
|
358
|
+
HasSystemSleepStarted
|
|
359
|
+
HideCaret
|
|
360
|
+
HiliteMenuItem
|
|
361
|
+
IMPGetIMEA
|
|
362
|
+
IMPGetIMEW
|
|
363
|
+
IMPQueryIMEA
|
|
364
|
+
IMPQueryIMEW
|
|
365
|
+
IMPSetIMEA
|
|
366
|
+
IMPSetIMEW
|
|
367
|
+
ImpersonateDdeClientWindow
|
|
368
|
+
InSendMessage
|
|
369
|
+
InSendMessageEx
|
|
370
|
+
InflateRect
|
|
371
|
+
InitSharedTable
|
|
372
|
+
InitTask
|
|
373
|
+
InsertMenuA
|
|
374
|
+
InsertMenuItemA
|
|
375
|
+
InsertMenuItemW
|
|
376
|
+
InsertMenuW
|
|
377
|
+
InternalGetWindowText
|
|
378
|
+
IntersectRect
|
|
379
|
+
InvalidateRect
|
|
380
|
+
InvalidateRgn
|
|
381
|
+
InvertRect
|
|
382
|
+
IsCharAlphaA
|
|
383
|
+
IsCharAlphaNumericA
|
|
384
|
+
IsCharAlphaNumericW
|
|
385
|
+
IsCharAlphaW
|
|
386
|
+
IsCharLowerA
|
|
387
|
+
IsCharLowerW
|
|
388
|
+
IsCharUpperA
|
|
389
|
+
IsCharUpperW
|
|
390
|
+
IsChild
|
|
391
|
+
IsClipboardFormatAvailable
|
|
392
|
+
IsDialogMessage
|
|
393
|
+
IsDialogMessageA
|
|
394
|
+
IsDialogMessageW
|
|
395
|
+
IsDlgButtonChecked
|
|
396
|
+
IsHungThread
|
|
397
|
+
IsIconic
|
|
398
|
+
IsMenu
|
|
399
|
+
IsRectEmpty
|
|
400
|
+
IsWindow
|
|
401
|
+
IsWindowEnabled
|
|
402
|
+
IsWindowUnicode
|
|
403
|
+
IsWindowVisible
|
|
404
|
+
IsZoomed
|
|
405
|
+
KillTimer
|
|
406
|
+
LoadAcceleratorsA
|
|
407
|
+
LoadAcceleratorsW
|
|
408
|
+
LoadBitmapA
|
|
409
|
+
LoadBitmapW
|
|
410
|
+
LoadCursorA
|
|
411
|
+
LoadCursorFromFileA
|
|
412
|
+
LoadCursorFromFileW
|
|
413
|
+
LoadCursorW
|
|
414
|
+
LoadIconA
|
|
415
|
+
LoadIconW
|
|
416
|
+
LoadImageA
|
|
417
|
+
LoadImageW
|
|
418
|
+
LoadKeyboardLayoutA
|
|
419
|
+
LoadKeyboardLayoutW
|
|
420
|
+
LoadMenuA
|
|
421
|
+
LoadMenuIndirectA
|
|
422
|
+
LoadMenuIndirectW
|
|
423
|
+
LoadMenuW
|
|
424
|
+
LoadStringA
|
|
425
|
+
LoadStringW
|
|
426
|
+
LockSetForegroundWindow
|
|
427
|
+
LockWindowStation
|
|
428
|
+
LockWindowUpdate
|
|
429
|
+
LookupIconIdFromDirectory
|
|
430
|
+
LookupIconIdFromDirectoryEx
|
|
431
|
+
MapDialogRect
|
|
432
|
+
MapVirtualKeyA
|
|
433
|
+
MapVirtualKeyExA
|
|
434
|
+
MapVirtualKeyExW
|
|
435
|
+
MapVirtualKeyW
|
|
436
|
+
MapWindowPoints
|
|
437
|
+
MenuItemFromPoint
|
|
438
|
+
MessageBeep
|
|
439
|
+
MessageBoxA
|
|
440
|
+
MessageBoxExA
|
|
441
|
+
MessageBoxExW
|
|
442
|
+
MessageBoxIndirectA
|
|
443
|
+
MessageBoxIndirectW
|
|
444
|
+
MessageBoxW
|
|
445
|
+
ModifyAccess
|
|
446
|
+
ModifyMenuA
|
|
447
|
+
ModifyMenuW
|
|
448
|
+
MonitorFromPoint
|
|
449
|
+
MonitorFromRect
|
|
450
|
+
MonitorFromWindow
|
|
451
|
+
MoveWindow
|
|
452
|
+
MsgWaitForMultipleObjects
|
|
453
|
+
MsgWaitForMultipleObjectsEx
|
|
454
|
+
NotifyWinEvent
|
|
455
|
+
OemKeyScan
|
|
456
|
+
OemToCharA
|
|
457
|
+
OemToCharBuffA
|
|
458
|
+
OemToCharBuffW
|
|
459
|
+
OemToCharW
|
|
460
|
+
OffsetRect
|
|
461
|
+
OpenClipboard
|
|
462
|
+
OpenDesktopA
|
|
463
|
+
OpenDesktopW
|
|
464
|
+
OpenIcon
|
|
465
|
+
OpenInputDesktop
|
|
466
|
+
OpenWindowStationA
|
|
467
|
+
OpenWindowStationW
|
|
468
|
+
PackDDElParam
|
|
469
|
+
PaintDesktop
|
|
470
|
+
PeekMessageA
|
|
471
|
+
PeekMessageW
|
|
472
|
+
PlaySoundEvent
|
|
473
|
+
PostMessageA
|
|
474
|
+
PostMessageW
|
|
475
|
+
PostQuitMessage
|
|
476
|
+
PostThreadMessageA
|
|
477
|
+
PostThreadMessageW
|
|
478
|
+
PtInRect
|
|
479
|
+
RealChildWindowFromPoint
|
|
480
|
+
RealGetWindowClass
|
|
481
|
+
RedrawWindow
|
|
482
|
+
RegisterClassA
|
|
483
|
+
RegisterClassExA
|
|
484
|
+
RegisterClassExW
|
|
485
|
+
RegisterClassW
|
|
486
|
+
RegisterClipboardFormatA
|
|
487
|
+
RegisterClipboardFormatW
|
|
488
|
+
RegisterDeviceNotificationA
|
|
489
|
+
RegisterDeviceNotificationW
|
|
490
|
+
RegisterHotKey
|
|
491
|
+
RegisterLogonProcess
|
|
492
|
+
RegisterNetworkCapabilities
|
|
493
|
+
RegisterSystemThread
|
|
494
|
+
RegisterTasklist
|
|
495
|
+
RegisterWindowMessageA
|
|
496
|
+
RegisterWindowMessageW
|
|
497
|
+
ReleaseCapture
|
|
498
|
+
ReleaseDC
|
|
499
|
+
RemoveMenu
|
|
500
|
+
RemovePropA
|
|
501
|
+
RemovePropW
|
|
502
|
+
ReplyMessage
|
|
503
|
+
ReuseDDElParam
|
|
504
|
+
ScreenToClient
|
|
505
|
+
ScrollDC
|
|
506
|
+
ScrollWindow
|
|
507
|
+
ScrollWindowEx
|
|
508
|
+
SendDlgItemMessageA
|
|
509
|
+
SendDlgItemMessageW
|
|
510
|
+
SendIMEMessageExA
|
|
511
|
+
SendIMEMessageExW
|
|
512
|
+
SendInput
|
|
513
|
+
SendMessageA
|
|
514
|
+
SendMessageCallbackA
|
|
515
|
+
SendMessageCallbackW
|
|
516
|
+
SendMessageTimeoutA
|
|
517
|
+
SendMessageTimeoutW
|
|
518
|
+
SendMessageW
|
|
519
|
+
SendNotifyMessageA
|
|
520
|
+
SendNotifyMessageW
|
|
521
|
+
SetActiveWindow
|
|
522
|
+
SetCapture
|
|
523
|
+
SetCaretBlinkTime
|
|
524
|
+
SetCaretPos
|
|
525
|
+
SetClassLongA
|
|
526
|
+
SetClassLongW
|
|
527
|
+
SetClassWord
|
|
528
|
+
SetClipboardData
|
|
529
|
+
SetClipboardViewer
|
|
530
|
+
SetCursor
|
|
531
|
+
SetCursorPos
|
|
532
|
+
SetDebugErrorLevel
|
|
533
|
+
SetDeskWallpaper
|
|
534
|
+
SetDesktopBitmap
|
|
535
|
+
SetDlgItemInt
|
|
536
|
+
SetDlgItemTextA
|
|
537
|
+
SetDlgItemTextW
|
|
538
|
+
SetDoubleClickTime
|
|
539
|
+
SetFocus
|
|
540
|
+
SetForegroundWindow
|
|
541
|
+
SetInternalWindowPos
|
|
542
|
+
SetKeyboardState
|
|
543
|
+
SetLastErrorEx
|
|
544
|
+
SetLogonNotifyWindow
|
|
545
|
+
SetMenu
|
|
546
|
+
SetMenuContextHelpId
|
|
547
|
+
SetMenuDefaultItem
|
|
548
|
+
SetMenuInfo
|
|
549
|
+
SetMenuItemBitmaps
|
|
550
|
+
SetMenuItemInfoA
|
|
551
|
+
SetMenuItemInfoW
|
|
552
|
+
SetMessageExtraInfo
|
|
553
|
+
SetMessageQueue
|
|
554
|
+
SetParent
|
|
555
|
+
SetProcessDefaultLayout
|
|
556
|
+
SetProcessWindowStation
|
|
557
|
+
SetPropA
|
|
558
|
+
SetPropW
|
|
559
|
+
SetRect
|
|
560
|
+
SetRectEmpty
|
|
561
|
+
SetScrollInfo
|
|
562
|
+
SetScrollPos
|
|
563
|
+
SetScrollRange
|
|
564
|
+
SetShellWindow
|
|
565
|
+
SetSysColors
|
|
566
|
+
SetSysColorsTemp
|
|
567
|
+
SetSystemCursor
|
|
568
|
+
SetThreadDesktop
|
|
569
|
+
SetTimer
|
|
570
|
+
SetUserObjectInformationA
|
|
571
|
+
SetUserObjectInformationW
|
|
572
|
+
SetUserObjectSecurity
|
|
573
|
+
SetWinEventHook
|
|
574
|
+
SetWindowContextHelpId
|
|
575
|
+
SetWindowFullScreenState
|
|
576
|
+
SetWindowLongA
|
|
577
|
+
SetWindowLongW
|
|
578
|
+
SetWindowPlacement
|
|
579
|
+
SetWindowPos
|
|
580
|
+
SetWindowRgn
|
|
581
|
+
SetWindowTextA
|
|
582
|
+
SetWindowTextW
|
|
583
|
+
SetWindowWord
|
|
584
|
+
SetWindowsHookA
|
|
585
|
+
SetWindowsHookExA
|
|
586
|
+
SetWindowsHookExW
|
|
587
|
+
SetWindowsHookW
|
|
588
|
+
ShowCaret
|
|
589
|
+
ShowCursor
|
|
590
|
+
ShowOwnedPopups
|
|
591
|
+
ShowScrollBar
|
|
592
|
+
ShowWindow
|
|
593
|
+
ShowWindowAsync
|
|
594
|
+
SubtractRect
|
|
595
|
+
SwapMouseButton
|
|
596
|
+
SwitchDesktop
|
|
597
|
+
SwitchToThisWindow
|
|
598
|
+
SysErrorBox
|
|
599
|
+
SystemParametersInfoA
|
|
600
|
+
SystemParametersInfoW
|
|
601
|
+
TabbedTextOutA
|
|
602
|
+
TabbedTextOutW
|
|
603
|
+
TileChildWindows
|
|
604
|
+
TileWindows
|
|
605
|
+
ToAscii
|
|
606
|
+
ToAsciiEx
|
|
607
|
+
ToUnicode
|
|
608
|
+
ToUnicodeEx
|
|
609
|
+
TrackMouseEvent
|
|
610
|
+
TrackPopupMenu
|
|
611
|
+
TrackPopupMenuEx
|
|
612
|
+
TranslateAccelerator
|
|
613
|
+
TranslateAcceleratorA
|
|
614
|
+
TranslateAcceleratorW
|
|
615
|
+
TranslateMDISysAccel
|
|
616
|
+
TranslateMessage
|
|
617
|
+
UnhookWinEvent
|
|
618
|
+
UnhookWindowsHook
|
|
619
|
+
UnhookWindowsHookEx
|
|
620
|
+
UnionRect
|
|
621
|
+
UnloadKeyboardLayout
|
|
622
|
+
UnlockWindowStation
|
|
623
|
+
UnpackDDElParam
|
|
624
|
+
UnregisterClassA
|
|
625
|
+
UnregisterClassW
|
|
626
|
+
UnregisterDeviceNotification
|
|
627
|
+
UnregisterHotKey
|
|
628
|
+
UpdateWindow
|
|
629
|
+
UserClientDllInitialize
|
|
630
|
+
UserIsSystemResumeAutomatic
|
|
631
|
+
UserSetDeviceHoldState
|
|
632
|
+
UserSignalProc
|
|
633
|
+
UserTickleTimer
|
|
634
|
+
ValidateRect
|
|
635
|
+
ValidateRgn
|
|
636
|
+
VkKeyScanA
|
|
637
|
+
VkKeyScanExA
|
|
638
|
+
VkKeyScanExW
|
|
639
|
+
VkKeyScanW
|
|
640
|
+
WINNLSEnableIME
|
|
641
|
+
WINNLSGetEnableStatus
|
|
642
|
+
WINNLSGetIMEHotkey
|
|
643
|
+
WNDPROC_CALLBACK
|
|
644
|
+
WaitForInputIdle
|
|
645
|
+
WaitMessage
|
|
646
|
+
WinHelpA
|
|
647
|
+
WinHelpW
|
|
648
|
+
WinOldAppHackoMatic
|
|
649
|
+
WindowFromDC
|
|
650
|
+
WindowFromPoint
|
|
651
|
+
YieldTask
|
|
652
|
+
_SetProcessDefaultLayout
|
|
653
|
+
keybd_event
|
|
654
|
+
mouse_event
|
|
655
|
+
wsprintfA
|
|
656
|
+
wsprintfW
|
|
657
|
+
wvsprintfA
|
|
658
|
+
wvsprintfW
|
|
Binary file
|
|
Binary file
|