triton-windows 3.5.1.post21__cp313-cp313-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.
- triton/_C/libtriton.pyd +0 -0
- triton/__init__.py +82 -0
- triton/_filecheck.py +97 -0
- triton/_internal_testing.py +255 -0
- triton/_utils.py +126 -0
- triton/backends/__init__.py +47 -0
- triton/backends/amd/__init__.py +0 -0
- triton/backends/amd/compiler.py +461 -0
- triton/backends/amd/driver.c +283 -0
- triton/backends/amd/driver.py +724 -0
- triton/backends/amd/lib/asanrtl.bc +0 -0
- triton/backends/amd/lib/ockl.bc +0 -0
- triton/backends/amd/lib/ocml.bc +0 -0
- triton/backends/compiler.py +90 -0
- triton/backends/driver.py +66 -0
- triton/backends/nvidia/__init__.py +0 -0
- triton/backends/nvidia/bin/ptxas.exe +0 -0
- triton/backends/nvidia/compiler.py +533 -0
- triton/backends/nvidia/driver.c +517 -0
- triton/backends/nvidia/driver.py +799 -0
- triton/backends/nvidia/include/cuda.h +26280 -0
- triton/backends/nvidia/lib/libdevice.10.bc +0 -0
- triton/backends/nvidia/lib/x64/cuda.lib +0 -0
- triton/compiler/__init__.py +7 -0
- triton/compiler/code_generator.py +1614 -0
- triton/compiler/compiler.py +509 -0
- triton/compiler/errors.py +51 -0
- triton/compiler/make_launcher.py +0 -0
- triton/errors.py +5 -0
- triton/experimental/__init__.py +0 -0
- triton/experimental/gluon/__init__.py +5 -0
- triton/experimental/gluon/_compiler.py +0 -0
- triton/experimental/gluon/_runtime.py +102 -0
- triton/experimental/gluon/language/__init__.py +119 -0
- triton/experimental/gluon/language/_core.py +490 -0
- triton/experimental/gluon/language/_layouts.py +583 -0
- triton/experimental/gluon/language/_math.py +20 -0
- triton/experimental/gluon/language/_semantic.py +380 -0
- triton/experimental/gluon/language/_standard.py +80 -0
- triton/experimental/gluon/language/amd/__init__.py +4 -0
- triton/experimental/gluon/language/amd/_layouts.py +96 -0
- triton/experimental/gluon/language/amd/cdna3/__init__.py +100 -0
- triton/experimental/gluon/language/amd/cdna4/__init__.py +48 -0
- triton/experimental/gluon/language/amd/cdna4/async_copy.py +151 -0
- triton/experimental/gluon/language/extra/__init__.py +3 -0
- triton/experimental/gluon/language/nvidia/__init__.py +4 -0
- triton/experimental/gluon/language/nvidia/ampere/__init__.py +3 -0
- triton/experimental/gluon/language/nvidia/ampere/async_copy.py +74 -0
- triton/experimental/gluon/language/nvidia/ampere/mbarrier.py +80 -0
- triton/experimental/gluon/language/nvidia/blackwell/__init__.py +387 -0
- triton/experimental/gluon/language/nvidia/blackwell/tma.py +52 -0
- triton/experimental/gluon/language/nvidia/hopper/__init__.py +132 -0
- triton/experimental/gluon/language/nvidia/hopper/mbarrier.py +34 -0
- triton/experimental/gluon/language/nvidia/hopper/tma.py +97 -0
- triton/experimental/gluon/nvidia/__init__.py +4 -0
- triton/experimental/gluon/nvidia/blackwell.py +3 -0
- triton/experimental/gluon/nvidia/hopper.py +45 -0
- triton/knobs.py +546 -0
- triton/language/__init__.py +342 -0
- triton/language/core.py +3405 -0
- triton/language/extra/__init__.py +26 -0
- triton/language/extra/cuda/__init__.py +16 -0
- triton/language/extra/cuda/gdc.py +42 -0
- triton/language/extra/cuda/libdevice.py +1629 -0
- triton/language/extra/cuda/utils.py +109 -0
- triton/language/extra/hip/__init__.py +5 -0
- triton/language/extra/hip/libdevice.py +491 -0
- triton/language/extra/hip/utils.py +35 -0
- triton/language/extra/libdevice.py +790 -0
- triton/language/math.py +249 -0
- triton/language/random.py +218 -0
- triton/language/semantic.py +1939 -0
- triton/language/standard.py +534 -0
- triton/language/target_info.py +54 -0
- triton/runtime/__init__.py +23 -0
- triton/runtime/_allocation.py +44 -0
- triton/runtime/_async_compile.py +55 -0
- triton/runtime/autotuner.py +476 -0
- triton/runtime/build.py +168 -0
- triton/runtime/cache.py +317 -0
- triton/runtime/driver.py +38 -0
- triton/runtime/errors.py +36 -0
- triton/runtime/interpreter.py +1414 -0
- triton/runtime/jit.py +1107 -0
- triton/runtime/tcc/include/_mingw.h +168 -0
- triton/runtime/tcc/include/assert.h +62 -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 +75 -0
- triton/runtime/tcc/include/inttypes.h +297 -0
- triton/runtime/tcc/include/io.h +418 -0
- triton/runtime/tcc/include/iso646.h +36 -0
- triton/runtime/tcc/include/limits.h +116 -0
- triton/runtime/tcc/include/locale.h +91 -0
- triton/runtime/tcc/include/malloc.h +181 -0
- triton/runtime/tcc/include/math.h +497 -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/stdalign.h +16 -0
- triton/runtime/tcc/include/stdarg.h +14 -0
- triton/runtime/tcc/include/stdatomic.h +171 -0
- triton/runtime/tcc/include/stdbool.h +11 -0
- triton/runtime/tcc/include/stddef.h +42 -0
- triton/runtime/tcc/include/stdint.h +212 -0
- triton/runtime/tcc/include/stdio.h +429 -0
- triton/runtime/tcc/include/stdlib.h +591 -0
- triton/runtime/tcc/include/stdnoreturn.h +7 -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 +123 -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 +618 -0
- triton/runtime/tcc/include/tccdefs.h +342 -0
- triton/runtime/tcc/include/tcclib.h +80 -0
- triton/runtime/tcc/include/tchar.h +1102 -0
- triton/runtime/tcc/include/tgmath.h +89 -0
- triton/runtime/tcc/include/time.h +287 -0
- triton/runtime/tcc/include/uchar.h +33 -0
- triton/runtime/tcc/include/unistd.h +1 -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/qos.h +72 -0
- triton/runtime/tcc/include/winapi/shellapi.h +59 -0
- triton/runtime/tcc/include/winapi/winbase.h +2958 -0
- triton/runtime/tcc/include/winapi/wincon.h +309 -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/winnls.h +778 -0
- triton/runtime/tcc/include/winapi/winnt.h +5837 -0
- triton/runtime/tcc/include/winapi/winreg.h +272 -0
- triton/runtime/tcc/include/winapi/winsock2.h +1474 -0
- triton/runtime/tcc/include/winapi/winuser.h +5651 -0
- triton/runtime/tcc/include/winapi/winver.h +160 -0
- triton/runtime/tcc/include/winapi/ws2ipdef.h +21 -0
- triton/runtime/tcc/include/winapi/ws2tcpip.h +391 -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.a +0 -0
- triton/runtime/tcc/lib/msvcrt.def +1399 -0
- triton/runtime/tcc/lib/python3.def +810 -0
- triton/runtime/tcc/lib/python310.def +1610 -0
- triton/runtime/tcc/lib/python311.def +1633 -0
- triton/runtime/tcc/lib/python312.def +1703 -0
- triton/runtime/tcc/lib/python313.def +1651 -0
- triton/runtime/tcc/lib/python313t.def +1656 -0
- triton/runtime/tcc/lib/python314.def +1800 -0
- triton/runtime/tcc/lib/python314t.def +1809 -0
- triton/runtime/tcc/lib/python39.def +1644 -0
- triton/runtime/tcc/lib/python3t.def +905 -0
- triton/runtime/tcc/lib/user32.def +658 -0
- triton/runtime/tcc/libtcc.dll +0 -0
- triton/runtime/tcc/tcc.exe +0 -0
- triton/testing.py +543 -0
- triton/tools/__init__.py +0 -0
- triton/tools/build_extern.py +365 -0
- triton/tools/compile.py +210 -0
- triton/tools/disasm.py +143 -0
- triton/tools/extra/cuda/compile.c +70 -0
- triton/tools/extra/cuda/compile.h +14 -0
- triton/tools/extra/hip/compile.cpp +66 -0
- triton/tools/extra/hip/compile.h +13 -0
- triton/tools/link.py +322 -0
- triton/tools/mxfp.py +301 -0
- triton/tools/ragged_tma.py +92 -0
- triton/tools/tensor_descriptor.py +34 -0
- triton/windows_utils.py +405 -0
- triton_windows-3.5.1.post21.dist-info/METADATA +46 -0
- triton_windows-3.5.1.post21.dist-info/RECORD +217 -0
- triton_windows-3.5.1.post21.dist-info/WHEEL +5 -0
- triton_windows-3.5.1.post21.dist-info/entry_points.txt +3 -0
- triton_windows-3.5.1.post21.dist-info/licenses/LICENSE +23 -0
- triton_windows-3.5.1.post21.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,770 @@
|
|
|
1
|
+
LIBRARY kernel32.dll
|
|
2
|
+
|
|
3
|
+
EXPORTS
|
|
4
|
+
AddAtomA
|
|
5
|
+
AddAtomW
|
|
6
|
+
AllocConsole
|
|
7
|
+
AllocLSCallback
|
|
8
|
+
AllocSLCallback
|
|
9
|
+
AreFileApisANSI
|
|
10
|
+
BackupRead
|
|
11
|
+
BackupSeek
|
|
12
|
+
BackupWrite
|
|
13
|
+
Beep
|
|
14
|
+
BeginUpdateResourceA
|
|
15
|
+
BeginUpdateResourceW
|
|
16
|
+
BuildCommDCBA
|
|
17
|
+
BuildCommDCBAndTimeoutsA
|
|
18
|
+
BuildCommDCBAndTimeoutsW
|
|
19
|
+
BuildCommDCBW
|
|
20
|
+
CallNamedPipeA
|
|
21
|
+
CallNamedPipeW
|
|
22
|
+
Callback12
|
|
23
|
+
Callback16
|
|
24
|
+
Callback20
|
|
25
|
+
Callback24
|
|
26
|
+
Callback28
|
|
27
|
+
Callback32
|
|
28
|
+
Callback36
|
|
29
|
+
Callback4
|
|
30
|
+
Callback40
|
|
31
|
+
Callback44
|
|
32
|
+
Callback48
|
|
33
|
+
Callback52
|
|
34
|
+
Callback56
|
|
35
|
+
Callback60
|
|
36
|
+
Callback64
|
|
37
|
+
Callback8
|
|
38
|
+
CancelDeviceWakeupRequest
|
|
39
|
+
CancelIo
|
|
40
|
+
CancelWaitableTimer
|
|
41
|
+
ClearCommBreak
|
|
42
|
+
ClearCommError
|
|
43
|
+
CloseHandle
|
|
44
|
+
CloseProfileUserMapping
|
|
45
|
+
CloseSystemHandle
|
|
46
|
+
CommConfigDialogA
|
|
47
|
+
CommConfigDialogW
|
|
48
|
+
CompareFileTime
|
|
49
|
+
CompareStringA
|
|
50
|
+
CompareStringW
|
|
51
|
+
ConnectNamedPipe
|
|
52
|
+
ContinueDebugEvent
|
|
53
|
+
ConvertDefaultLocale
|
|
54
|
+
ConvertThreadToFiber
|
|
55
|
+
ConvertToGlobalHandle
|
|
56
|
+
CopyFileA
|
|
57
|
+
CopyFileExA
|
|
58
|
+
CopyFileExW
|
|
59
|
+
CopyFileW
|
|
60
|
+
CreateConsoleScreenBuffer
|
|
61
|
+
CreateDirectoryA
|
|
62
|
+
CreateDirectoryExA
|
|
63
|
+
CreateDirectoryExW
|
|
64
|
+
CreateDirectoryW
|
|
65
|
+
CreateEventA
|
|
66
|
+
CreateEventW
|
|
67
|
+
CreateFiber
|
|
68
|
+
CreateFileA
|
|
69
|
+
CreateFileMappingA
|
|
70
|
+
CreateFileMappingW
|
|
71
|
+
CreateFileW
|
|
72
|
+
CreateIoCompletionPort
|
|
73
|
+
CreateKernelThread
|
|
74
|
+
CreateMailslotA
|
|
75
|
+
CreateMailslotW
|
|
76
|
+
CreateMutexA
|
|
77
|
+
CreateMutexW
|
|
78
|
+
CreateNamedPipeA
|
|
79
|
+
CreateNamedPipeW
|
|
80
|
+
CreatePipe
|
|
81
|
+
CreateProcessA
|
|
82
|
+
CreateProcessW
|
|
83
|
+
CreateRemoteThread
|
|
84
|
+
CreateSemaphoreA
|
|
85
|
+
CreateSemaphoreW
|
|
86
|
+
CreateSocketHandle
|
|
87
|
+
CreateTapePartition
|
|
88
|
+
CreateThread
|
|
89
|
+
CreateToolhelp32Snapshot
|
|
90
|
+
CreateWaitableTimerA
|
|
91
|
+
CreateWaitableTimerW
|
|
92
|
+
DebugActiveProcess
|
|
93
|
+
DebugBreak
|
|
94
|
+
DefineDosDeviceA
|
|
95
|
+
DefineDosDeviceW
|
|
96
|
+
DeleteAtom
|
|
97
|
+
DeleteCriticalSection
|
|
98
|
+
DeleteFiber
|
|
99
|
+
DeleteFileA
|
|
100
|
+
DeleteFileW
|
|
101
|
+
DeviceIoControl
|
|
102
|
+
DisableThreadLibraryCalls
|
|
103
|
+
DisconnectNamedPipe
|
|
104
|
+
DosDateTimeToFileTime
|
|
105
|
+
DuplicateHandle
|
|
106
|
+
EndUpdateResourceA
|
|
107
|
+
EndUpdateResourceW
|
|
108
|
+
EnterCriticalSection
|
|
109
|
+
EnumCalendarInfoA
|
|
110
|
+
EnumCalendarInfoExA
|
|
111
|
+
EnumCalendarInfoExW
|
|
112
|
+
EnumCalendarInfoW
|
|
113
|
+
EnumDateFormatsA
|
|
114
|
+
EnumDateFormatsExA
|
|
115
|
+
EnumDateFormatsExW
|
|
116
|
+
EnumDateFormatsW
|
|
117
|
+
EnumLanguageGroupLocalesA
|
|
118
|
+
EnumLanguageGroupLocalesW
|
|
119
|
+
EnumResourceLanguagesA
|
|
120
|
+
EnumResourceLanguagesW
|
|
121
|
+
EnumResourceNamesA
|
|
122
|
+
EnumResourceNamesW
|
|
123
|
+
EnumResourceTypesA
|
|
124
|
+
EnumResourceTypesW
|
|
125
|
+
EnumSystemCodePagesA
|
|
126
|
+
EnumSystemCodePagesW
|
|
127
|
+
EnumSystemGeoID
|
|
128
|
+
EnumSystemLanguageGroupsA
|
|
129
|
+
EnumSystemLanguageGroupsW
|
|
130
|
+
EnumSystemLocalesA
|
|
131
|
+
EnumSystemLocalesW
|
|
132
|
+
EnumTimeFormatsA
|
|
133
|
+
EnumTimeFormatsW
|
|
134
|
+
EnumUILanguagesA
|
|
135
|
+
EnumUILanguagesW
|
|
136
|
+
EraseTape
|
|
137
|
+
EscapeCommFunction
|
|
138
|
+
ExitProcess
|
|
139
|
+
ExitThread
|
|
140
|
+
ExpandEnvironmentStringsA
|
|
141
|
+
ExpandEnvironmentStringsW
|
|
142
|
+
FT_Exit0
|
|
143
|
+
FT_Exit12
|
|
144
|
+
FT_Exit16
|
|
145
|
+
FT_Exit20
|
|
146
|
+
FT_Exit24
|
|
147
|
+
FT_Exit28
|
|
148
|
+
FT_Exit32
|
|
149
|
+
FT_Exit36
|
|
150
|
+
FT_Exit4
|
|
151
|
+
FT_Exit40
|
|
152
|
+
FT_Exit44
|
|
153
|
+
FT_Exit48
|
|
154
|
+
FT_Exit52
|
|
155
|
+
FT_Exit56
|
|
156
|
+
FT_Exit8
|
|
157
|
+
FT_Prolog
|
|
158
|
+
FT_Thunk
|
|
159
|
+
FatalAppExitA
|
|
160
|
+
FatalAppExitW
|
|
161
|
+
FatalExit
|
|
162
|
+
FileTimeToDosDateTime
|
|
163
|
+
FileTimeToLocalFileTime
|
|
164
|
+
FileTimeToSystemTime
|
|
165
|
+
FillConsoleOutputAttribute
|
|
166
|
+
FillConsoleOutputCharacterA
|
|
167
|
+
FillConsoleOutputCharacterW
|
|
168
|
+
FindAtomA
|
|
169
|
+
FindAtomW
|
|
170
|
+
FindClose
|
|
171
|
+
FindCloseChangeNotification
|
|
172
|
+
FindFirstChangeNotificationA
|
|
173
|
+
FindFirstChangeNotificationW
|
|
174
|
+
FindFirstFileA
|
|
175
|
+
FindFirstFileExA
|
|
176
|
+
FindFirstFileExW
|
|
177
|
+
FindFirstFileW
|
|
178
|
+
FindNextChangeNotification
|
|
179
|
+
FindNextFileA
|
|
180
|
+
FindNextFileW
|
|
181
|
+
FindResourceA
|
|
182
|
+
FindResourceExA
|
|
183
|
+
FindResourceExW
|
|
184
|
+
FindResourceW
|
|
185
|
+
FlushConsoleInputBuffer
|
|
186
|
+
FlushFileBuffers
|
|
187
|
+
FlushInstructionCache
|
|
188
|
+
FlushViewOfFile
|
|
189
|
+
FoldStringA
|
|
190
|
+
FoldStringW
|
|
191
|
+
FormatMessageA
|
|
192
|
+
FormatMessageW
|
|
193
|
+
FreeConsole
|
|
194
|
+
FreeEnvironmentStringsA
|
|
195
|
+
FreeEnvironmentStringsW
|
|
196
|
+
FreeLSCallback
|
|
197
|
+
FreeLibrary
|
|
198
|
+
FreeLibraryAndExitThread
|
|
199
|
+
FreeResource
|
|
200
|
+
FreeSLCallback
|
|
201
|
+
GenerateConsoleCtrlEvent
|
|
202
|
+
GetACP
|
|
203
|
+
GetAtomNameA
|
|
204
|
+
GetAtomNameW
|
|
205
|
+
GetBinaryType
|
|
206
|
+
GetBinaryTypeA
|
|
207
|
+
GetBinaryTypeW
|
|
208
|
+
GetCPInfo
|
|
209
|
+
GetCPInfoExA
|
|
210
|
+
GetCPInfoExW
|
|
211
|
+
GetCalendarInfoA
|
|
212
|
+
GetCalendarInfoW
|
|
213
|
+
GetCommConfig
|
|
214
|
+
GetCommMask
|
|
215
|
+
GetCommModemStatus
|
|
216
|
+
GetCommProperties
|
|
217
|
+
GetCommState
|
|
218
|
+
GetCommTimeouts
|
|
219
|
+
GetCommandLineA
|
|
220
|
+
GetCommandLineW
|
|
221
|
+
GetCompressedFileSizeA
|
|
222
|
+
GetCompressedFileSizeW
|
|
223
|
+
GetComputerNameA
|
|
224
|
+
GetComputerNameW
|
|
225
|
+
GetConsoleCP
|
|
226
|
+
GetConsoleCursorInfo
|
|
227
|
+
GetConsoleMode
|
|
228
|
+
GetConsoleOutputCP
|
|
229
|
+
GetConsoleScreenBufferInfo
|
|
230
|
+
GetConsoleTitleA
|
|
231
|
+
GetConsoleTitleW
|
|
232
|
+
GetCurrencyFormatA
|
|
233
|
+
GetCurrencyFormatW
|
|
234
|
+
GetCurrentDirectoryA
|
|
235
|
+
GetCurrentDirectoryW
|
|
236
|
+
GetCurrentProcess
|
|
237
|
+
GetCurrentProcessId
|
|
238
|
+
GetCurrentThread
|
|
239
|
+
GetCurrentThreadId
|
|
240
|
+
GetDateFormatA
|
|
241
|
+
GetDateFormatW
|
|
242
|
+
GetDaylightFlag
|
|
243
|
+
GetDefaultCommConfigA
|
|
244
|
+
GetDefaultCommConfigW
|
|
245
|
+
GetDevicePowerState
|
|
246
|
+
GetDiskFreeSpaceA
|
|
247
|
+
GetDiskFreeSpaceExA
|
|
248
|
+
GetDiskFreeSpaceExW
|
|
249
|
+
GetDiskFreeSpaceW
|
|
250
|
+
GetDriveTypeA
|
|
251
|
+
GetDriveTypeW
|
|
252
|
+
GetEnvironmentStrings
|
|
253
|
+
GetEnvironmentStringsA
|
|
254
|
+
GetEnvironmentStringsW
|
|
255
|
+
GetEnvironmentVariableA
|
|
256
|
+
GetEnvironmentVariableW
|
|
257
|
+
GetErrorMode
|
|
258
|
+
GetExitCodeProcess
|
|
259
|
+
GetExitCodeThread
|
|
260
|
+
GetFileAttributesA
|
|
261
|
+
GetFileAttributesExA
|
|
262
|
+
GetFileAttributesExW
|
|
263
|
+
GetFileAttributesW
|
|
264
|
+
GetFileInformationByHandle
|
|
265
|
+
GetFileSize
|
|
266
|
+
GetFileTime
|
|
267
|
+
GetFileType
|
|
268
|
+
GetFullPathNameA
|
|
269
|
+
GetFullPathNameW
|
|
270
|
+
GetGeoInfoA
|
|
271
|
+
GetGeoInfoW
|
|
272
|
+
GetHandleContext
|
|
273
|
+
GetHandleInformation
|
|
274
|
+
GetLSCallbackTarget
|
|
275
|
+
GetLSCallbackTemplate
|
|
276
|
+
GetLargestConsoleWindowSize
|
|
277
|
+
GetLastError
|
|
278
|
+
GetLocalTime
|
|
279
|
+
GetLocaleInfoA
|
|
280
|
+
GetLocaleInfoW
|
|
281
|
+
GetLogicalDriveStringsA
|
|
282
|
+
GetLogicalDriveStringsW
|
|
283
|
+
GetLogicalDrives
|
|
284
|
+
GetLongPathNameA
|
|
285
|
+
GetLongPathNameW
|
|
286
|
+
GetMailslotInfo
|
|
287
|
+
GetModuleFileNameA
|
|
288
|
+
GetModuleFileNameW
|
|
289
|
+
GetModuleHandleA
|
|
290
|
+
GetModuleHandleW
|
|
291
|
+
GetModuleHandleExA
|
|
292
|
+
GetModuleHandleExW
|
|
293
|
+
GetNamedPipeHandleStateA
|
|
294
|
+
GetNamedPipeHandleStateW
|
|
295
|
+
GetNamedPipeInfo
|
|
296
|
+
GetNumberFormatA
|
|
297
|
+
GetNumberFormatW
|
|
298
|
+
GetNumberOfConsoleInputEvents
|
|
299
|
+
GetNumberOfConsoleMouseButtons
|
|
300
|
+
GetOEMCP
|
|
301
|
+
GetOverlappedResult
|
|
302
|
+
GetPriorityClass
|
|
303
|
+
GetPrivateProfileIntA
|
|
304
|
+
GetPrivateProfileIntW
|
|
305
|
+
GetPrivateProfileSectionA
|
|
306
|
+
GetPrivateProfileSectionNamesA
|
|
307
|
+
GetPrivateProfileSectionNamesW
|
|
308
|
+
GetPrivateProfileSectionW
|
|
309
|
+
GetPrivateProfileStringA
|
|
310
|
+
GetPrivateProfileStringW
|
|
311
|
+
GetPrivateProfileStructA
|
|
312
|
+
GetPrivateProfileStructW
|
|
313
|
+
GetProcAddress
|
|
314
|
+
GetProcessAffinityMask
|
|
315
|
+
GetProcessFlags
|
|
316
|
+
GetProcessHeap
|
|
317
|
+
GetProcessHeaps
|
|
318
|
+
GetProcessPriorityBoost
|
|
319
|
+
GetProcessShutdownParameters
|
|
320
|
+
GetProcessTimes
|
|
321
|
+
GetProcessVersion
|
|
322
|
+
GetProcessWorkingSetSize
|
|
323
|
+
GetProductName
|
|
324
|
+
GetProfileIntA
|
|
325
|
+
GetProfileIntW
|
|
326
|
+
GetProfileSectionA
|
|
327
|
+
GetProfileSectionW
|
|
328
|
+
GetProfileStringA
|
|
329
|
+
GetProfileStringW
|
|
330
|
+
GetQueuedCompletionStatus
|
|
331
|
+
GetSLCallbackTarget
|
|
332
|
+
GetSLCallbackTemplate
|
|
333
|
+
GetShortPathNameA
|
|
334
|
+
GetShortPathNameW
|
|
335
|
+
GetStartupInfoA
|
|
336
|
+
GetStartupInfoW
|
|
337
|
+
GetStdHandle
|
|
338
|
+
GetStringTypeA
|
|
339
|
+
GetStringTypeExA
|
|
340
|
+
GetStringTypeExW
|
|
341
|
+
GetStringTypeW
|
|
342
|
+
GetSystemDefaultLCID
|
|
343
|
+
GetSystemDefaultLangID
|
|
344
|
+
GetSystemDefaultUILanguage
|
|
345
|
+
GetSystemDirectoryA
|
|
346
|
+
GetSystemDirectoryW
|
|
347
|
+
GetSystemInfo
|
|
348
|
+
GetSystemPowerStatus
|
|
349
|
+
GetSystemTime
|
|
350
|
+
GetSystemTimeAdjustment
|
|
351
|
+
GetSystemTimeAsFileTime
|
|
352
|
+
GetTapeParameters
|
|
353
|
+
GetTapePosition
|
|
354
|
+
GetTapeStatus
|
|
355
|
+
GetTempFileNameA
|
|
356
|
+
GetTempFileNameW
|
|
357
|
+
GetTempPathA
|
|
358
|
+
GetTempPathW
|
|
359
|
+
GetThreadContext
|
|
360
|
+
GetThreadLocale
|
|
361
|
+
GetThreadPriority
|
|
362
|
+
GetThreadPriorityBoost
|
|
363
|
+
GetThreadSelectorEntry
|
|
364
|
+
GetThreadTimes
|
|
365
|
+
GetTickCount
|
|
366
|
+
GetTimeFormatA
|
|
367
|
+
GetTimeFormatW
|
|
368
|
+
GetTimeZoneInformation
|
|
369
|
+
GetUserDefaultLCID
|
|
370
|
+
GetUserDefaultLangID
|
|
371
|
+
GetUserDefaultUILanguage
|
|
372
|
+
GetUserGeoID
|
|
373
|
+
GetVersion
|
|
374
|
+
GetVersionExA
|
|
375
|
+
GetVersionExW
|
|
376
|
+
GetVolumeInformationA
|
|
377
|
+
GetVolumeInformationW
|
|
378
|
+
GetWindowsDirectoryA
|
|
379
|
+
GetWindowsDirectoryW
|
|
380
|
+
GetWriteWatch
|
|
381
|
+
GlobalAddAtomA
|
|
382
|
+
GlobalAddAtomW
|
|
383
|
+
GlobalAlloc
|
|
384
|
+
GlobalCompact
|
|
385
|
+
GlobalDeleteAtom
|
|
386
|
+
GlobalFindAtomA
|
|
387
|
+
GlobalFindAtomW
|
|
388
|
+
GlobalFix
|
|
389
|
+
GlobalFlags
|
|
390
|
+
GlobalFree
|
|
391
|
+
GlobalGetAtomNameA
|
|
392
|
+
GlobalGetAtomNameW
|
|
393
|
+
GlobalHandle
|
|
394
|
+
GlobalLock
|
|
395
|
+
GlobalMemoryStatus
|
|
396
|
+
GlobalReAlloc
|
|
397
|
+
GlobalSize
|
|
398
|
+
GlobalUnWire
|
|
399
|
+
GlobalUnfix
|
|
400
|
+
GlobalUnlock
|
|
401
|
+
GlobalWire
|
|
402
|
+
Heap32First
|
|
403
|
+
Heap32ListFirst
|
|
404
|
+
Heap32ListNext
|
|
405
|
+
Heap32Next
|
|
406
|
+
HeapAlloc
|
|
407
|
+
HeapCompact
|
|
408
|
+
HeapCreate
|
|
409
|
+
HeapDestroy
|
|
410
|
+
HeapFree
|
|
411
|
+
HeapLock
|
|
412
|
+
HeapReAlloc
|
|
413
|
+
HeapSetFlags
|
|
414
|
+
HeapSize
|
|
415
|
+
HeapUnlock
|
|
416
|
+
HeapValidate
|
|
417
|
+
HeapWalk
|
|
418
|
+
InitAtomTable
|
|
419
|
+
InitializeCriticalSection
|
|
420
|
+
InitializeCriticalSectionAndSpinCount
|
|
421
|
+
InterlockedCompareExchange
|
|
422
|
+
InterlockedDecrement
|
|
423
|
+
InterlockedExchange
|
|
424
|
+
InterlockedExchangeAdd
|
|
425
|
+
InterlockedIncrement
|
|
426
|
+
InvalidateNLSCache
|
|
427
|
+
IsBadCodePtr
|
|
428
|
+
IsBadHugeReadPtr
|
|
429
|
+
IsBadHugeWritePtr
|
|
430
|
+
IsBadReadPtr
|
|
431
|
+
IsBadStringPtrA
|
|
432
|
+
IsBadStringPtrW
|
|
433
|
+
IsBadWritePtr
|
|
434
|
+
IsDBCSLeadByte
|
|
435
|
+
IsDBCSLeadByteEx
|
|
436
|
+
IsDebuggerPresent
|
|
437
|
+
IsLSCallback
|
|
438
|
+
IsProcessorFeaturePresent
|
|
439
|
+
IsSLCallback
|
|
440
|
+
IsSystemResumeAutomatic
|
|
441
|
+
IsValidCodePage
|
|
442
|
+
IsValidLanguageGroup
|
|
443
|
+
IsValidLocale
|
|
444
|
+
K32Thk1632Epilog
|
|
445
|
+
K32Thk1632Prolog
|
|
446
|
+
K32_NtCreateFile
|
|
447
|
+
K32_RtlNtStatusToDosError
|
|
448
|
+
LCMapStringA
|
|
449
|
+
LCMapStringW
|
|
450
|
+
LeaveCriticalSection
|
|
451
|
+
LoadLibraryA
|
|
452
|
+
LoadLibraryExA
|
|
453
|
+
LoadLibraryExW
|
|
454
|
+
LoadLibraryW
|
|
455
|
+
LoadModule
|
|
456
|
+
LoadResource
|
|
457
|
+
LocalAlloc
|
|
458
|
+
LocalCompact
|
|
459
|
+
LocalFileTimeToFileTime
|
|
460
|
+
LocalFlags
|
|
461
|
+
LocalFree
|
|
462
|
+
LocalHandle
|
|
463
|
+
LocalLock
|
|
464
|
+
LocalReAlloc
|
|
465
|
+
LocalShrink
|
|
466
|
+
LocalSize
|
|
467
|
+
LocalUnlock
|
|
468
|
+
LockFile
|
|
469
|
+
LockFileEx
|
|
470
|
+
LockResource
|
|
471
|
+
MakeCriticalSectionGlobal
|
|
472
|
+
MapHInstLS
|
|
473
|
+
MapHInstLS_PN
|
|
474
|
+
MapHInstSL
|
|
475
|
+
MapHInstSL_PN
|
|
476
|
+
MapHModuleLS
|
|
477
|
+
MapHModuleSL
|
|
478
|
+
MapLS
|
|
479
|
+
MapSL
|
|
480
|
+
MapSLFix
|
|
481
|
+
MapViewOfFile
|
|
482
|
+
MapViewOfFileEx
|
|
483
|
+
Module32First
|
|
484
|
+
Module32Next
|
|
485
|
+
MoveFileA
|
|
486
|
+
MoveFileExA
|
|
487
|
+
MoveFileExW
|
|
488
|
+
MoveFileW
|
|
489
|
+
MulDiv
|
|
490
|
+
MultiByteToWideChar
|
|
491
|
+
NotifyNLSUserCache
|
|
492
|
+
OpenEventA
|
|
493
|
+
OpenEventW
|
|
494
|
+
OpenFile
|
|
495
|
+
OpenFileMappingA
|
|
496
|
+
OpenFileMappingW
|
|
497
|
+
OpenMutexA
|
|
498
|
+
OpenMutexW
|
|
499
|
+
OpenProcess
|
|
500
|
+
OpenProfileUserMapping
|
|
501
|
+
OpenSemaphoreA
|
|
502
|
+
OpenSemaphoreW
|
|
503
|
+
OpenThread
|
|
504
|
+
OpenVxDHandle
|
|
505
|
+
OpenWaitableTimerA
|
|
506
|
+
OpenWaitableTimerW
|
|
507
|
+
OutputDebugStringA
|
|
508
|
+
OutputDebugStringW
|
|
509
|
+
PeekConsoleInputA
|
|
510
|
+
PeekConsoleInputW
|
|
511
|
+
PeekNamedPipe
|
|
512
|
+
PostQueuedCompletionStatus
|
|
513
|
+
PrepareTape
|
|
514
|
+
Process32First
|
|
515
|
+
Process32Next
|
|
516
|
+
PulseEvent
|
|
517
|
+
PurgeComm
|
|
518
|
+
QT_Thunk
|
|
519
|
+
QueryDosDeviceA
|
|
520
|
+
QueryDosDeviceW
|
|
521
|
+
QueryNumberOfEventLogRecords
|
|
522
|
+
QueryOldestEventLogRecord
|
|
523
|
+
QueryPerformanceCounter
|
|
524
|
+
QueryPerformanceFrequency
|
|
525
|
+
QueueUserAPC
|
|
526
|
+
RaiseException
|
|
527
|
+
ReadConsoleA
|
|
528
|
+
ReadConsoleInputA
|
|
529
|
+
ReadConsoleInputW
|
|
530
|
+
ReadConsoleOutputA
|
|
531
|
+
ReadConsoleOutputAttribute
|
|
532
|
+
ReadConsoleOutputCharacterA
|
|
533
|
+
ReadConsoleOutputCharacterW
|
|
534
|
+
ReadConsoleOutputW
|
|
535
|
+
ReadConsoleW
|
|
536
|
+
ReadDirectoryChangesW
|
|
537
|
+
ReadFile
|
|
538
|
+
ReadFileEx
|
|
539
|
+
ReadFileScatter
|
|
540
|
+
ReadProcessMemory
|
|
541
|
+
RegisterServiceProcess
|
|
542
|
+
RegisterSysMsgHandler
|
|
543
|
+
ReinitializeCriticalSection
|
|
544
|
+
ReleaseMutex
|
|
545
|
+
ReleaseSemaphore
|
|
546
|
+
RemoveDirectoryA
|
|
547
|
+
RemoveDirectoryW
|
|
548
|
+
RequestDeviceWakeup
|
|
549
|
+
RequestWakeupLatency
|
|
550
|
+
ResetEvent
|
|
551
|
+
ResetNLSUserInfoCache
|
|
552
|
+
ResetWriteWatch
|
|
553
|
+
ResumeThread
|
|
554
|
+
RtlAddFunctionTable
|
|
555
|
+
RtlDeleteFunctionTable
|
|
556
|
+
RtlFillMemory
|
|
557
|
+
RtlInstallFunctionTableCallback
|
|
558
|
+
RtlMoveMemory
|
|
559
|
+
RtlUnwind
|
|
560
|
+
RtlUnwindEx
|
|
561
|
+
RtlZeroMemory
|
|
562
|
+
SMapLS
|
|
563
|
+
SMapLS_IP_EBP_12
|
|
564
|
+
SMapLS_IP_EBP_16
|
|
565
|
+
SMapLS_IP_EBP_20
|
|
566
|
+
SMapLS_IP_EBP_24
|
|
567
|
+
SMapLS_IP_EBP_28
|
|
568
|
+
SMapLS_IP_EBP_32
|
|
569
|
+
SMapLS_IP_EBP_36
|
|
570
|
+
SMapLS_IP_EBP_40
|
|
571
|
+
SMapLS_IP_EBP_8
|
|
572
|
+
SUnMapLS
|
|
573
|
+
SUnMapLS_IP_EBP_12
|
|
574
|
+
SUnMapLS_IP_EBP_16
|
|
575
|
+
SUnMapLS_IP_EBP_20
|
|
576
|
+
SUnMapLS_IP_EBP_24
|
|
577
|
+
SUnMapLS_IP_EBP_28
|
|
578
|
+
SUnMapLS_IP_EBP_32
|
|
579
|
+
SUnMapLS_IP_EBP_36
|
|
580
|
+
SUnMapLS_IP_EBP_40
|
|
581
|
+
SUnMapLS_IP_EBP_8
|
|
582
|
+
ScrollConsoleScreenBufferA
|
|
583
|
+
ScrollConsoleScreenBufferW
|
|
584
|
+
SearchPathA
|
|
585
|
+
SearchPathW
|
|
586
|
+
SetCalendarInfoA
|
|
587
|
+
SetCalendarInfoW
|
|
588
|
+
SetCommBreak
|
|
589
|
+
SetCommConfig
|
|
590
|
+
SetCommMask
|
|
591
|
+
SetCommState
|
|
592
|
+
SetCommTimeouts
|
|
593
|
+
SetComputerNameA
|
|
594
|
+
SetComputerNameW
|
|
595
|
+
SetConsoleActiveScreenBuffer
|
|
596
|
+
SetConsoleCP
|
|
597
|
+
SetConsoleCtrlHandler
|
|
598
|
+
SetConsoleCursorInfo
|
|
599
|
+
SetConsoleCursorPosition
|
|
600
|
+
SetConsoleMode
|
|
601
|
+
SetConsoleOutputCP
|
|
602
|
+
SetConsoleScreenBufferSize
|
|
603
|
+
SetConsoleTextAttribute
|
|
604
|
+
SetConsoleTitleA
|
|
605
|
+
SetConsoleTitleW
|
|
606
|
+
SetConsoleWindowInfo
|
|
607
|
+
SetCriticalSectionSpinCount
|
|
608
|
+
SetCurrentDirectoryA
|
|
609
|
+
SetCurrentDirectoryW
|
|
610
|
+
SetDaylightFlag
|
|
611
|
+
SetDefaultCommConfigA
|
|
612
|
+
SetDefaultCommConfigW
|
|
613
|
+
SetEndOfFile
|
|
614
|
+
SetEnvironmentVariableA
|
|
615
|
+
SetEnvironmentVariableW
|
|
616
|
+
SetErrorMode
|
|
617
|
+
SetEvent
|
|
618
|
+
SetFileApisToANSI
|
|
619
|
+
SetFileApisToOEM
|
|
620
|
+
SetFileAttributesA
|
|
621
|
+
SetFileAttributesW
|
|
622
|
+
SetFilePointer
|
|
623
|
+
SetFilePointerEx
|
|
624
|
+
SetFileTime
|
|
625
|
+
SetHandleContext
|
|
626
|
+
SetHandleCount
|
|
627
|
+
SetHandleInformation
|
|
628
|
+
SetLastError
|
|
629
|
+
SetLocalTime
|
|
630
|
+
SetLocaleInfoA
|
|
631
|
+
SetLocaleInfoW
|
|
632
|
+
SetMailslotInfo
|
|
633
|
+
SetMessageWaitingIndicator
|
|
634
|
+
SetNamedPipeHandleState
|
|
635
|
+
SetPriorityClass
|
|
636
|
+
SetProcessAffinityMask
|
|
637
|
+
SetProcessPriorityBoost
|
|
638
|
+
SetProcessShutdownParameters
|
|
639
|
+
SetProcessWorkingSetSize
|
|
640
|
+
SetStdHandle
|
|
641
|
+
SetSystemPowerState
|
|
642
|
+
SetSystemTime
|
|
643
|
+
SetSystemTimeAdjustment
|
|
644
|
+
SetTapeParameters
|
|
645
|
+
SetTapePosition
|
|
646
|
+
SetThreadAffinityMask
|
|
647
|
+
SetThreadContext
|
|
648
|
+
SetThreadExecutionState
|
|
649
|
+
SetThreadIdealProcessor
|
|
650
|
+
SetThreadLocale
|
|
651
|
+
SetThreadPriority
|
|
652
|
+
SetThreadPriorityBoost
|
|
653
|
+
SetTimeZoneInformation
|
|
654
|
+
SetUnhandledExceptionFilter
|
|
655
|
+
SetUserGeoID
|
|
656
|
+
SetVolumeLabelA
|
|
657
|
+
SetVolumeLabelW
|
|
658
|
+
SetWaitableTimer
|
|
659
|
+
SetupComm
|
|
660
|
+
SignalObjectAndWait
|
|
661
|
+
SignalSysMsgHandlers
|
|
662
|
+
SizeofResource
|
|
663
|
+
Sleep
|
|
664
|
+
SleepEx
|
|
665
|
+
SuspendThread
|
|
666
|
+
SwitchToFiber
|
|
667
|
+
SwitchToThread
|
|
668
|
+
SystemTimeToFileTime
|
|
669
|
+
SystemTimeToTzSpecificLocalTime
|
|
670
|
+
TerminateProcess
|
|
671
|
+
TerminateThread
|
|
672
|
+
Thread32First
|
|
673
|
+
Thread32Next
|
|
674
|
+
ThunkConnect32
|
|
675
|
+
TlsAlloc
|
|
676
|
+
TlsAllocInternal
|
|
677
|
+
TlsFree
|
|
678
|
+
TlsFreeInternal
|
|
679
|
+
TlsGetValue
|
|
680
|
+
TlsSetValue
|
|
681
|
+
Toolhelp32ReadProcessMemory
|
|
682
|
+
TransactNamedPipe
|
|
683
|
+
TransmitCommChar
|
|
684
|
+
TryEnterCriticalSection
|
|
685
|
+
UTRegister
|
|
686
|
+
UTUnRegister
|
|
687
|
+
UnMapLS
|
|
688
|
+
UnMapSLFixArray
|
|
689
|
+
UnhandledExceptionFilter
|
|
690
|
+
UninitializeCriticalSection
|
|
691
|
+
UnlockFile
|
|
692
|
+
UnlockFileEx
|
|
693
|
+
UnmapViewOfFile
|
|
694
|
+
UpdateResourceA
|
|
695
|
+
UpdateResourceW
|
|
696
|
+
VerLanguageNameA
|
|
697
|
+
VerLanguageNameW
|
|
698
|
+
VirtualAlloc
|
|
699
|
+
VirtualAllocEx
|
|
700
|
+
VirtualFree
|
|
701
|
+
VirtualFreeEx
|
|
702
|
+
VirtualLock
|
|
703
|
+
VirtualProtect
|
|
704
|
+
VirtualProtectEx
|
|
705
|
+
VirtualQuery
|
|
706
|
+
VirtualQueryEx
|
|
707
|
+
VirtualUnlock
|
|
708
|
+
WaitCommEvent
|
|
709
|
+
WaitForDebugEvent
|
|
710
|
+
WaitForMultipleObjects
|
|
711
|
+
WaitForMultipleObjectsEx
|
|
712
|
+
WaitForSingleObject
|
|
713
|
+
WaitForSingleObjectEx
|
|
714
|
+
WaitNamedPipeA
|
|
715
|
+
WaitNamedPipeW
|
|
716
|
+
WideCharToMultiByte
|
|
717
|
+
WinExec
|
|
718
|
+
WriteConsoleA
|
|
719
|
+
WriteConsoleInputA
|
|
720
|
+
WriteConsoleInputW
|
|
721
|
+
WriteConsoleOutputA
|
|
722
|
+
WriteConsoleOutputAttribute
|
|
723
|
+
WriteConsoleOutputCharacterA
|
|
724
|
+
WriteConsoleOutputCharacterW
|
|
725
|
+
WriteConsoleOutputW
|
|
726
|
+
WriteConsoleW
|
|
727
|
+
WriteFile
|
|
728
|
+
WriteFileEx
|
|
729
|
+
WriteFileGather
|
|
730
|
+
WritePrivateProfileSectionA
|
|
731
|
+
WritePrivateProfileSectionW
|
|
732
|
+
WritePrivateProfileStringA
|
|
733
|
+
WritePrivateProfileStringW
|
|
734
|
+
WritePrivateProfileStructA
|
|
735
|
+
WritePrivateProfileStructW
|
|
736
|
+
WriteProcessMemory
|
|
737
|
+
WriteProfileSectionA
|
|
738
|
+
WriteProfileSectionW
|
|
739
|
+
WriteProfileStringA
|
|
740
|
+
WriteProfileStringW
|
|
741
|
+
WriteTapemark
|
|
742
|
+
_DebugOut
|
|
743
|
+
_DebugPrintf
|
|
744
|
+
_hread
|
|
745
|
+
_hwrite
|
|
746
|
+
_lclose
|
|
747
|
+
_lcreat
|
|
748
|
+
_llseek
|
|
749
|
+
_lopen
|
|
750
|
+
_lread
|
|
751
|
+
_lwrite
|
|
752
|
+
dprintf
|
|
753
|
+
lstrcat
|
|
754
|
+
lstrcatA
|
|
755
|
+
lstrcatW
|
|
756
|
+
lstrcmp
|
|
757
|
+
lstrcmpA
|
|
758
|
+
lstrcmpW
|
|
759
|
+
lstrcmpi
|
|
760
|
+
lstrcmpiA
|
|
761
|
+
lstrcmpiW
|
|
762
|
+
lstrcpy
|
|
763
|
+
lstrcpyA
|
|
764
|
+
lstrcpyW
|
|
765
|
+
lstrcpyn
|
|
766
|
+
lstrcpynA
|
|
767
|
+
lstrcpynW
|
|
768
|
+
lstrlen
|
|
769
|
+
lstrlenA
|
|
770
|
+
lstrlenW
|