diff --git a/Makefile b/Makefile index da7cb8eae..47519f3b5 100644 --- a/Makefile +++ b/Makefile @@ -88,7 +88,8 @@ o/$(MODE): \ ifneq ($(LANDLOCKMAKE_VERSION),) ifeq ($(wildcard /usr/bin/ape),) -$(error please run ape/apeinstall.sh if you intend to use landlock make) +$(warning please run ape/apeinstall.sh if you intend to use landlock make) +$(shell sleep .5) endif ifeq ($(USE_SYSTEM_TOOLCHAIN),) .STRICT = 1 @@ -344,7 +345,6 @@ COSMOPOLITAN_OBJECTS = \ LIBC_NT_PDH \ LIBC_NT_GDI32 \ LIBC_NT_COMDLG32 \ - LIBC_NT_URL \ LIBC_NT_USER32 \ LIBC_NT_NTDLL \ LIBC_NT_ADVAPI32 \ @@ -425,6 +425,7 @@ $(SRCS): \ libc/integral/lp64.inc .PHONY: toolchain +ifeq ($(ARCH), x86_64) toolchain: o/cosmopolitan.h \ o/$(MODE)/ape/public/ape.lds \ o/$(MODE)/libc/crt/crt.o \ @@ -435,6 +436,14 @@ toolchain: o/cosmopolitan.h \ o/$(MODE)/third_party/libcxx/libcxx.a \ o/$(MODE)/tool/build/fixupobj.com \ o/$(MODE)/tool/build/zipcopy.com +else +toolchain: o/$(MODE)/ape/aarch64.lds \ + o/$(MODE)/libc/crt/crt.o \ + o/$(MODE)/cosmopolitan.a \ + o/$(MODE)/third_party/libcxx/libcxx.a \ + o/$(MODE)/tool/build/fixupobj.com \ + o/$(MODE)/tool/build/zipcopy.com +endif aarch64: private .INTERNET = true aarch64: private .UNSANDBOXED = true diff --git a/ape/idata.internal.h b/ape/idata.internal.h index 9e649c915..918e39bc3 100644 --- a/ape/idata.internal.h +++ b/ape/idata.internal.h @@ -31,7 +31,7 @@ // @see libc/nt/master.sh // @see ape/ape.lds // @see winimp -.macro .imp dll:req fn:req actual:req hint +.macro .imp dll:req fn:req actual:req #ifdef __x86_64__ .dll "\dll" .section ".piro.data.sort.iat.2.\dll\().2.\actual","aw",@progbits @@ -50,11 +50,7 @@ .previous .section ".idata.ro.hnt.\dll\().2.\actual","a",@progbits "\dll\().\actual": - .ifnb \hint // hint i.e. guess function ordinal - .short \hint - .else - .short 0 - .endif + .short 0 // hint .asciz "\actual" .align 2 // documented requirement .globl "\dll\().\actual" diff --git a/build/rules.mk b/build/rules.mk index 55328fc01..6d11c6da3 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -116,10 +116,6 @@ o/$(MODE)/%.lua: %.lua o/$(MODE)/third_party/lua/luac.com $(VM) o/$(MODE)/%.lua.runs: %.lua o/$(MODE)/tool/net/redbean.com $(VM) @$(COMPILE) -wALUA -tT$@ $(VM) o/$(MODE)/tool/net/redbean.com $(LUAFLAGS) -i $< -o/$(MODE)/%: o/$(MODE)/%.com o/$(MODE)/tool/build/cp.com o/$(MODE)/tool/build/assimilate.com $(VM) - @$(COMPILE) -wACP -T$@ $(VM) o/$(MODE)/tool/build/cp.com $< $@ - @$(COMPILE) -wAASSIMILATE -T$@ $(VM) o/$(MODE)/tool/build/assimilate.com $@ - ################################################################################ # LOCAL UNIT TESTS # @@ -247,7 +243,7 @@ o/$(MODE)/%-clang.asm: %.c @$(COMPILE) -AOBJECTIFY.c $(OBJECTIFY.c) -S -g0 $(OUTPUT_OPTION) $< # TODO(jart): Make intrinsics support Clang. -# o/$(MODE)/%-clang.asm: CC = $(CLANG) +o/$(MODE)/%-clang.asm: CC = $(CLANG) o/$(MODE)/%-clang.asm: private .UNSANDBOXED = 1 o/$(MODE)/%-clang.asm: %.cc @$(COMPILE) -AOBJECTIFY.c $(OBJECTIFY.cxx) -S -g0 $(OUTPUT_OPTION) $< diff --git a/examples/greenbean.c b/examples/greenbean.c index 7641ba57e..a66f84e36 100644 --- a/examples/greenbean.c +++ b/examples/greenbean.c @@ -189,7 +189,7 @@ void *Worker(void *id) { // we're not terrible concerned when errors happen here if ((got = read(client, inbuf, sizeof(inbuf))) <= 0) break; // check that client message wasn't fragmented into more reads - if (!(inmsglen = ParseHttpMessage(&msg, inbuf, got))) break; + if ((inmsglen = ParseHttpMessage(&msg, inbuf, got)) <= 0) break; ++messages; #if LOGGING diff --git a/libc/calls/fchmodat-linux.c b/libc/calls/fchmodat-linux.c new file mode 100644 index 000000000..5e6b1f392 --- /dev/null +++ b/libc/calls/fchmodat-linux.c @@ -0,0 +1,81 @@ +/*-*- mode:c;indent-tabs-mode:t;c-basic-offset:8;tab-width:8;coding:utf-8 -*-│ +│vi: set et ft=c ts=8 tw=8 fenc=utf-8 :vi│ +╚──────────────────────────────────────────────────────────────────────────────╝ +│ │ +│ Musl Libc │ +│ Copyright © 2005-2014 Rich Felker, et al. │ +│ │ +│ Permission is hereby granted, free of charge, to any person obtaining │ +│ a copy of this software and associated documentation files (the │ +│ "Software"), to deal in the Software without restriction, including │ +│ without limitation the rights to use, copy, modify, merge, publish, │ +│ distribute, sublicense, and/or sell copies of the Software, and to │ +│ permit persons to whom the Software is furnished to do so, subject to │ +│ the following conditions: │ +│ │ +│ The above copyright notice and this permission notice shall be │ +│ included in all copies or substantial portions of the Software. │ +│ │ +│ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, │ +│ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF │ +│ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. │ +│ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY │ +│ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, │ +│ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE │ +│ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. │ +│ │ +╚─────────────────────────────────────────────────────────────────────────────*/ +#include "libc/calls/struct/stat.internal.h" +#include "libc/calls/syscall-sysv.internal.h" +#include "libc/errno.h" +#include "libc/sysv/consts/at.h" +#include "libc/sysv/consts/o.h" +#include "libc/sysv/consts/s.h" +#include "libc/sysv/errfuns.h" + +asm(".ident\t\"\\n\\n\ +Musl libc (MIT License)\\n\ +Copyright 2005-2014 Rich Felker, et. al.\""); +asm(".include \"libc/disclaimer.inc\""); +// clang-format off + +static void __procfdname(char *buf, unsigned fd) { + unsigned i, j; + for (i = 0; (buf[i] = "/proc/self/fd/"[i]); i++); + if (!fd) { + buf[i] = '0'; + buf[i + 1] = 0; + return; + } + for (j = fd; j; j /= 10, i++); + buf[i] = 0; + for (; fd; fd /= 10) buf[--i] = '0' + fd % 10; +} + +int sys_fchmodat_linux(int fd, const char *path, unsigned mode, int flag) { + struct stat st; + int ret, fd2; + char proc[15 + 3 * sizeof(int)]; + if (flag != AT_SYMLINK_NOFOLLOW) + return einval(); + if (sys_fstatat(fd, path, &st, flag)) + return -1; + if (S_ISLNK(st.st_mode)) + return eopnotsupp(); + if ((fd2 = sys_openat(fd, path, (O_RDONLY | O_PATH | O_NOFOLLOW | + O_NOCTTY | O_CLOEXEC), 0)) < 0) { + if (fd2 == -ELOOP) + return eopnotsupp(); + return fd2; + } + __procfdname(proc, fd2); + ret = sys_fstatat(AT_FDCWD, proc, &st, 0); + if (!ret) { + if (S_ISLNK(st.st_mode)) + ret = eopnotsupp(); + else + ret = sys_fchmodat(AT_FDCWD, proc, mode, 0); + } + sys_close(fd2); + return ret; +} diff --git a/libc/calls/fchmodat.c b/libc/calls/fchmodat.c index 6dbf00637..1b4de8647 100644 --- a/libc/calls/fchmodat.c +++ b/libc/calls/fchmodat.c @@ -27,6 +27,8 @@ #include "libc/sysv/errfuns.h" #include "libc/zipos/zipos.internal.h" +int sys_fchmodat_linux(int, const char *, unsigned, int); + /** * Changes permissions on file, e.g.: * @@ -50,7 +52,11 @@ int fchmodat(int dirfd, const char *path, uint32_t mode, int flags) { (rc = __zipos_notat(dirfd, path)) == -1) { rc = enotsup(); } else if (!IsWindows()) { - rc = sys_fchmodat(dirfd, path, mode, flags); + if (IsLinux() && flags) { + rc = sys_fchmodat_linux(dirfd, path, mode, flags); + } else { + rc = sys_fchmodat(dirfd, path, mode, flags); + } } else { rc = sys_fchmodat_nt(dirfd, path, mode, flags); } diff --git a/libc/calls/mkntenvblock.c b/libc/calls/mkntenvblock.c index e3fbefa9d..0c5d10d88 100644 --- a/libc/calls/mkntenvblock.c +++ b/libc/calls/mkntenvblock.c @@ -18,11 +18,13 @@ ╚─────────────────────────────────────────────────────────────────────────────*/ #include "libc/calls/ntspawn.h" #include "libc/fmt/conv.h" +#include "libc/intrin/_getenv.internal.h" #include "libc/intrin/bits.h" #include "libc/macros.internal.h" #include "libc/mem/alloca.h" #include "libc/mem/arraylist2.internal.h" #include "libc/mem/mem.h" +#include "libc/runtime/runtime.h" #include "libc/str/str.h" #include "libc/str/thompike.h" #include "libc/str/utf16.h" @@ -91,12 +93,15 @@ static textwindows void FixPath(char *path) { } static textwindows void InsertString(char **a, size_t i, char *s, - char buf[ARG_MAX], size_t *bufi) { + char buf[ARG_MAX], size_t *bufi, + bool *have_systemroot) { char *v; size_t j, k; + v = StrChr(s, '='); + // apply fixups to var=/c/... - if ((v = StrChr(s, '=')) && v[1] == '/' && IsAlpha(v[2]) && v[3] == '/') { + if (v && v[1] == '/' && IsAlpha(v[2]) && v[3] == '/') { v = buf + *bufi; for (k = 0; s[k]; ++k) { if (*bufi + 1 < ARG_MAX) { @@ -136,11 +141,25 @@ textwindows int mkntenvblock(char16_t envvars[ARG_MAX / 2], char *const envp[], uint64_t w; char **vars; wint_t x, y; + bool have_systemroot = false; size_t i, j, k, n, m, bufi = 0; for (n = 0; envp[n];) n++; vars = alloca((n + 1) * sizeof(char *)); - for (i = 0; i < n; ++i) InsertString(vars, i, envp[i], buf, &bufi); - if (extravar) InsertString(vars, n++, extravar, buf, &bufi); + for (i = 0; i < n; ++i) { + InsertString(vars, i, envp[i], buf, &bufi, &have_systemroot); + } + if (extravar) { + InsertString(vars, n++, extravar, buf, &bufi, &have_systemroot); + } + if (!have_systemroot && environ) { + // https://jpassing.com/2009/12/28/the-hidden-danger-of-forgetting-to-specify-systemroot-in-a-custom-environment-block/ + struct Env systemroot; + systemroot = _getenv(environ, "SYSTEMROOT"); + if (systemroot.s) { + InsertString(vars, n++, environ[systemroot.i], buf, &bufi, + &have_systemroot); + } + } for (k = i = 0; i < n; ++i) { j = 0; v = false; diff --git a/libc/calls/wincrash.c b/libc/calls/wincrash.c index 05c3f4c2d..49f9edb7b 100644 --- a/libc/calls/wincrash.c +++ b/libc/calls/wincrash.c @@ -44,20 +44,20 @@ unsigned __wincrash(struct NtExceptionPointers *ep) { static bool noreentry; noreentry = true; + STRACE("wincrash rip %x bt %s", ep->ContextRecord->Rip, + DescribeBacktrace((struct StackFrame *)ep->ContextRecord->Rbp)); + if ((tib = __tls_enabled ? __get_tls_privileged() : 0)) { if (~tib->tib_flags & TIB_FLAG_WINCRASHING) { tib->tib_flags |= TIB_FLAG_WINCRASHING; } else { - WincrashPanic: - STRACE("panic: wincrash reentry: rip %x bt %s", ep->ContextRecord->Rip, - DescribeBacktrace((struct StackFrame *)ep->ContextRecord->Rbp)); ExitProcess(89); } } else { if (!noreentry) { noreentry = true; } else { - goto WincrashPanic; + ExitProcess(89); } } diff --git a/libc/elf/getelfsectionaddress.c b/libc/elf/getelfsectionaddress.c index 2db192053..8c5f4168e 100644 --- a/libc/elf/getelfsectionaddress.c +++ b/libc/elf/getelfsectionaddress.c @@ -31,17 +31,15 @@ * @param shdr is from GetElfSectionHeaderAddress(), or null * @return pointer to section data within image, or null if * 1. `shdr` was null, or - * 2. `sh_size` was zero, or - * 3, `sh_type` was `SHT_NOBITS`, or - * 4. content wasn't contained within `[elf,elf+mapsize)`, or - * 5. an arithmetic overflow occurred + * 2. content wasn't contained within `[elf,elf+mapsize)`, or + * 3. an arithmetic overflow occurred */ void *GetElfSectionAddress(const Elf64_Ehdr *elf, // validated size_t mapsize, // validated const Elf64_Shdr *shdr) { // foreign Elf64_Off last; if (!shdr) return 0; - if (shdr->sh_size <= 0) return 0; + if (!shdr->sh_size) return elf; if (shdr->sh_type == SHT_NOBITS) return 0; if (ckd_add(&last, shdr->sh_offset, shdr->sh_size)) return 0; if (last > mapsize) return 0; diff --git a/libc/intrin/describentpipeopenflags.c b/libc/intrin/describentpipeopenflags.c index ebb81c990..8ef16ddff 100644 --- a/libc/intrin/describentpipeopenflags.c +++ b/libc/intrin/describentpipeopenflags.c @@ -18,16 +18,24 @@ ╚─────────────────────────────────────────────────────────────────────────────*/ #include "libc/intrin/describeflags.internal.h" #include "libc/macros.internal.h" +#include "libc/nt/enum/accessmask.h" +#include "libc/nt/enum/fileflagandattributes.h" #include "libc/nt/enum/filemapflags.h" #include "libc/nt/ipc.h" static const struct DescribeFlags kPipeOpenFlags[] = { - {kNtPipeAccessDuplex, "Duplex"}, // 0x00000003 - {kNtPipeAccessOutbound, "Outbound"}, // 0x00000002 - {kNtPipeAccessInbound, "Inbound"}, // 0x00000001 + {kNtPipeAccessDuplex, "kNtPipeAccessDuplex"}, + {kNtPipeAccessOutbound, "kNtPipeAccessOutbound"}, + {kNtPipeAccessInbound, "kNtPipeAccessInbound"}, + {kNtFileFlagOverlapped, "kNtFileFlagOverlapped"}, + {kNtFileFlagFirstPipeInstance, "kNtFileFlagFirstPipeInstance"}, + {kNtFileFlagWriteThrough, "kNtFileFlagWriteThrough"}, + {kNtWriteDac, "kNtWriteDac"}, + {kNtWriteOwner, "kNtWriteOwner"}, + {kNtAccessSystemSecurity, "kNtAccessSystemSecurity"}, }; const char *(DescribeNtPipeOpenFlags)(char buf[64], uint32_t x) { - return DescribeFlags(buf, 64, kPipeOpenFlags, ARRAYLEN(kPipeOpenFlags), - "kNtPipeAccess", x); + return DescribeFlags(buf, 64, kPipeOpenFlags, ARRAYLEN(kPipeOpenFlags), "", + x); } diff --git a/libc/intrin/describentsecurityattributes.c b/libc/intrin/describentsecurityattributes.c index 141483677..5e1cd0eef 100644 --- a/libc/intrin/describentsecurityattributes.c +++ b/libc/intrin/describentsecurityattributes.c @@ -17,10 +17,13 @@ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ #include "libc/calls/state.internal.h" +#include "libc/fmt/itoa.h" #include "libc/intrin/describeflags.internal.h" #include "libc/nt/struct/securityattributes.h" -const char *DescribeNtSecurityAttributes(struct NtSecurityAttributes *p) { +const char *(DescribeNtSecurityAttributes)(char buf[32], + struct NtSecurityAttributes *p) { if (p == &kNtIsInheritable) return "&kNtIsInheritable"; - return "0"; + FormatInt64(buf, (uintptr_t)p); + return buf; } diff --git a/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WaitOnAddress.S b/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WaitOnAddress.S index a215d0701..a553304de 100644 --- a/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WaitOnAddress.S +++ b/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WaitOnAddress.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp API-MS-Win-Core-Synch-l1-2-0,__imp_WaitOnAddress,WaitOnAddress,111 +.imp API-MS-Win-Core-Synch-l1-2-0,__imp_WaitOnAddress,WaitOnAddress .text.windows .ftrace1 diff --git a/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WakeByAddressAll.S b/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WakeByAddressAll.S index 34455d03d..e4322b1e7 100644 --- a/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WakeByAddressAll.S +++ b/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WakeByAddressAll.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp API-MS-Win-Core-Synch-l1-2-0,__imp_WakeByAddressAll,WakeByAddressAll,113 +.imp API-MS-Win-Core-Synch-l1-2-0,__imp_WakeByAddressAll,WakeByAddressAll .text.windows .ftrace1 diff --git a/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WakeByAddressSingle.S b/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WakeByAddressSingle.S index a2bac452b..32f0d572c 100644 --- a/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WakeByAddressSingle.S +++ b/libc/nt/API-MS-Win-Core-Synch-l1-2-0/WakeByAddressSingle.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp API-MS-Win-Core-Synch-l1-2-0,__imp_WakeByAddressSingle,WakeByAddressSingle,116 +.imp API-MS-Win-Core-Synch-l1-2-0,__imp_WakeByAddressSingle,WakeByAddressSingle .text.windows .ftrace1 diff --git a/libc/nt/MsWSock/AcceptEx.S b/libc/nt/MsWSock/AcceptEx.S index cf9be7bb7..1a8682c81 100644 --- a/libc/nt/MsWSock/AcceptEx.S +++ b/libc/nt/MsWSock/AcceptEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp MsWSock,__imp_AcceptEx,AcceptEx,0 +.imp MsWSock,__imp_AcceptEx,AcceptEx .text.windows .ftrace1 diff --git a/libc/nt/MsWSock/DisconnectEx.S b/libc/nt/MsWSock/DisconnectEx.S index 7218c7ea9..1f01c7f50 100644 --- a/libc/nt/MsWSock/DisconnectEx.S +++ b/libc/nt/MsWSock/DisconnectEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp MsWSock,__imp_DisconnectEx,DisconnectEx,0 +.imp MsWSock,__imp_DisconnectEx,DisconnectEx .text.windows .ftrace1 diff --git a/libc/nt/MsWSock/GetAcceptExSockaddrs.S b/libc/nt/MsWSock/GetAcceptExSockaddrs.S index b4bef418b..573531c3a 100644 --- a/libc/nt/MsWSock/GetAcceptExSockaddrs.S +++ b/libc/nt/MsWSock/GetAcceptExSockaddrs.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp MsWSock,__imp_GetAcceptExSockaddrs,GetAcceptExSockaddrs,0 +.imp MsWSock,__imp_GetAcceptExSockaddrs,GetAcceptExSockaddrs .text.windows .ftrace1 diff --git a/libc/nt/MsWSock/TransmitFile.S b/libc/nt/MsWSock/TransmitFile.S index af5e980d6..e80254f01 100644 --- a/libc/nt/MsWSock/TransmitFile.S +++ b/libc/nt/MsWSock/TransmitFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp MsWSock,__imp_TransmitFile,TransmitFile,0 +.imp MsWSock,__imp_TransmitFile,TransmitFile .text.windows .ftrace1 diff --git a/libc/nt/MsWSock/WSARecvEx.S b/libc/nt/MsWSock/WSARecvEx.S index 4dcdef603..a790dcfc5 100644 --- a/libc/nt/MsWSock/WSARecvEx.S +++ b/libc/nt/MsWSock/WSARecvEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp MsWSock,__imp_WSARecvEx,WSARecvEx,0 +.imp MsWSock,__imp_WSARecvEx,WSARecvEx .text.windows .ftrace1 diff --git a/libc/nt/PowrProf/SetSuspendState.S b/libc/nt/PowrProf/SetSuspendState.S index 56add1ead..8c491015f 100644 --- a/libc/nt/PowrProf/SetSuspendState.S +++ b/libc/nt/PowrProf/SetSuspendState.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp PowrProf,__imp_SetSuspendState,SetSuspendState,0 +.imp PowrProf,__imp_SetSuspendState,SetSuspendState .text.windows .ftrace1 diff --git a/libc/nt/advapi32/AbortSystemShutdownW.S b/libc/nt/advapi32/AbortSystemShutdownW.S deleted file mode 100644 index aa42a0669..000000000 --- a/libc/nt/advapi32/AbortSystemShutdownW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AbortSystemShutdownW,AbortSystemShutdownW,1006 diff --git a/libc/nt/advapi32/AccessCheck.S b/libc/nt/advapi32/AccessCheck.S index 8b265bc33..162dcb215 100644 --- a/libc/nt/advapi32/AccessCheck.S +++ b/libc/nt/advapi32/AccessCheck.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_AccessCheck,AccessCheck,0 +.imp advapi32,__imp_AccessCheck,AccessCheck .text.windows .ftrace1 diff --git a/libc/nt/advapi32/AccessCheckAndAuditAlarmW.S b/libc/nt/advapi32/AccessCheckAndAuditAlarmW.S deleted file mode 100644 index d6fef6295..000000000 --- a/libc/nt/advapi32/AccessCheckAndAuditAlarmW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AccessCheckAndAuditAlarmW,AccessCheckAndAuditAlarmW,0 diff --git a/libc/nt/advapi32/AccessCheckByType.S b/libc/nt/advapi32/AccessCheckByType.S deleted file mode 100644 index 5c6b23a1d..000000000 --- a/libc/nt/advapi32/AccessCheckByType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AccessCheckByType,AccessCheckByType,0 diff --git a/libc/nt/advapi32/AccessCheckByTypeAndAuditAlarmW.S b/libc/nt/advapi32/AccessCheckByTypeAndAuditAlarmW.S deleted file mode 100644 index 7307b9e9d..000000000 --- a/libc/nt/advapi32/AccessCheckByTypeAndAuditAlarmW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AccessCheckByTypeAndAuditAlarmW,AccessCheckByTypeAndAuditAlarmW,0 diff --git a/libc/nt/advapi32/AccessCheckByTypeResultList.S b/libc/nt/advapi32/AccessCheckByTypeResultList.S deleted file mode 100644 index d214bb1da..000000000 --- a/libc/nt/advapi32/AccessCheckByTypeResultList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AccessCheckByTypeResultList,AccessCheckByTypeResultList,0 diff --git a/libc/nt/advapi32/AccessCheckByTypeResultListAndAuditAlarmByHandleW.S b/libc/nt/advapi32/AccessCheckByTypeResultListAndAuditAlarmByHandleW.S deleted file mode 100644 index 414803a9d..000000000 --- a/libc/nt/advapi32/AccessCheckByTypeResultListAndAuditAlarmByHandleW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AccessCheckByTypeResultListAndAuditAlarmByHandleW,AccessCheckByTypeResultListAndAuditAlarmByHandleW,0 diff --git a/libc/nt/advapi32/AccessCheckByTypeResultListAndAuditAlarmW.S b/libc/nt/advapi32/AccessCheckByTypeResultListAndAuditAlarmW.S deleted file mode 100644 index 0b375ebc3..000000000 --- a/libc/nt/advapi32/AccessCheckByTypeResultListAndAuditAlarmW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AccessCheckByTypeResultListAndAuditAlarmW,AccessCheckByTypeResultListAndAuditAlarmW,0 diff --git a/libc/nt/advapi32/AddAccessAllowedAce.S b/libc/nt/advapi32/AddAccessAllowedAce.S deleted file mode 100644 index a167a1d98..000000000 --- a/libc/nt/advapi32/AddAccessAllowedAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAccessAllowedAce,AddAccessAllowedAce,0 diff --git a/libc/nt/advapi32/AddAccessAllowedAceEx.S b/libc/nt/advapi32/AddAccessAllowedAceEx.S deleted file mode 100644 index 200e32f76..000000000 --- a/libc/nt/advapi32/AddAccessAllowedAceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAccessAllowedAceEx,AddAccessAllowedAceEx,0 diff --git a/libc/nt/advapi32/AddAccessAllowedObjectAce.S b/libc/nt/advapi32/AddAccessAllowedObjectAce.S deleted file mode 100644 index af110a2a1..000000000 --- a/libc/nt/advapi32/AddAccessAllowedObjectAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAccessAllowedObjectAce,AddAccessAllowedObjectAce,0 diff --git a/libc/nt/advapi32/AddAccessDeniedAce.S b/libc/nt/advapi32/AddAccessDeniedAce.S deleted file mode 100644 index ccaa9e131..000000000 --- a/libc/nt/advapi32/AddAccessDeniedAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAccessDeniedAce,AddAccessDeniedAce,0 diff --git a/libc/nt/advapi32/AddAccessDeniedAceEx.S b/libc/nt/advapi32/AddAccessDeniedAceEx.S deleted file mode 100644 index edffb8c35..000000000 --- a/libc/nt/advapi32/AddAccessDeniedAceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAccessDeniedAceEx,AddAccessDeniedAceEx,0 diff --git a/libc/nt/advapi32/AddAccessDeniedObjectAce.S b/libc/nt/advapi32/AddAccessDeniedObjectAce.S deleted file mode 100644 index 8cb307a9f..000000000 --- a/libc/nt/advapi32/AddAccessDeniedObjectAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAccessDeniedObjectAce,AddAccessDeniedObjectAce,0 diff --git a/libc/nt/advapi32/AddAce.S b/libc/nt/advapi32/AddAce.S deleted file mode 100644 index b05b2280d..000000000 --- a/libc/nt/advapi32/AddAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAce,AddAce,0 diff --git a/libc/nt/advapi32/AddAuditAccessAce.S b/libc/nt/advapi32/AddAuditAccessAce.S deleted file mode 100644 index 65316dc5f..000000000 --- a/libc/nt/advapi32/AddAuditAccessAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAuditAccessAce,AddAuditAccessAce,0 diff --git a/libc/nt/advapi32/AddAuditAccessAceEx.S b/libc/nt/advapi32/AddAuditAccessAceEx.S deleted file mode 100644 index f33bcdebe..000000000 --- a/libc/nt/advapi32/AddAuditAccessAceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAuditAccessAceEx,AddAuditAccessAceEx,0 diff --git a/libc/nt/advapi32/AddAuditAccessObjectAce.S b/libc/nt/advapi32/AddAuditAccessObjectAce.S deleted file mode 100644 index eda1a489d..000000000 --- a/libc/nt/advapi32/AddAuditAccessObjectAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddAuditAccessObjectAce,AddAuditAccessObjectAce,0 diff --git a/libc/nt/advapi32/AddConditionalAce.S b/libc/nt/advapi32/AddConditionalAce.S deleted file mode 100644 index e62a821b6..000000000 --- a/libc/nt/advapi32/AddConditionalAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddConditionalAce,AddConditionalAce,1028 diff --git a/libc/nt/advapi32/AddMandatoryAce.S b/libc/nt/advapi32/AddMandatoryAce.S deleted file mode 100644 index bf38c88d7..000000000 --- a/libc/nt/advapi32/AddMandatoryAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddMandatoryAce,AddMandatoryAce,0 diff --git a/libc/nt/advapi32/AddUsersToEncryptedFile.S b/libc/nt/advapi32/AddUsersToEncryptedFile.S deleted file mode 100644 index 4cafe84c3..000000000 --- a/libc/nt/advapi32/AddUsersToEncryptedFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AddUsersToEncryptedFile,AddUsersToEncryptedFile,1030 diff --git a/libc/nt/advapi32/AdjustTokenGroups.S b/libc/nt/advapi32/AdjustTokenGroups.S deleted file mode 100644 index e667587cd..000000000 --- a/libc/nt/advapi32/AdjustTokenGroups.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AdjustTokenGroups,AdjustTokenGroups,0 diff --git a/libc/nt/advapi32/AdjustTokenPrivileges.S b/libc/nt/advapi32/AdjustTokenPrivileges.S index 50fc124ff..b6b7d4d2c 100644 --- a/libc/nt/advapi32/AdjustTokenPrivileges.S +++ b/libc/nt/advapi32/AdjustTokenPrivileges.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_AdjustTokenPrivileges,AdjustTokenPrivileges,0 +.imp advapi32,__imp_AdjustTokenPrivileges,AdjustTokenPrivileges .text.windows .ftrace1 diff --git a/libc/nt/advapi32/AllocateAndInitializeSid.S b/libc/nt/advapi32/AllocateAndInitializeSid.S deleted file mode 100644 index c56de0e8a..000000000 --- a/libc/nt/advapi32/AllocateAndInitializeSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AllocateAndInitializeSid,AllocateAndInitializeSid,0 diff --git a/libc/nt/advapi32/AllocateLocallyUniqueId.S b/libc/nt/advapi32/AllocateLocallyUniqueId.S deleted file mode 100644 index 9e10a152f..000000000 --- a/libc/nt/advapi32/AllocateLocallyUniqueId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AllocateLocallyUniqueId,AllocateLocallyUniqueId,0 diff --git a/libc/nt/advapi32/AreAllAccessesGranted.S b/libc/nt/advapi32/AreAllAccessesGranted.S deleted file mode 100644 index df3334745..000000000 --- a/libc/nt/advapi32/AreAllAccessesGranted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AreAllAccessesGranted,AreAllAccessesGranted,0 diff --git a/libc/nt/advapi32/AreAnyAccessesGranted.S b/libc/nt/advapi32/AreAnyAccessesGranted.S deleted file mode 100644 index 418ebcc24..000000000 --- a/libc/nt/advapi32/AreAnyAccessesGranted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AreAnyAccessesGranted,AreAnyAccessesGranted,0 diff --git a/libc/nt/advapi32/AuditComputeEffectivePolicyBySid.S b/libc/nt/advapi32/AuditComputeEffectivePolicyBySid.S deleted file mode 100644 index a4d852ffa..000000000 --- a/libc/nt/advapi32/AuditComputeEffectivePolicyBySid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditComputeEffectivePolicyBySid,AuditComputeEffectivePolicyBySid,1038 diff --git a/libc/nt/advapi32/AuditComputeEffectivePolicyByToken.S b/libc/nt/advapi32/AuditComputeEffectivePolicyByToken.S deleted file mode 100644 index b9f8c3b09..000000000 --- a/libc/nt/advapi32/AuditComputeEffectivePolicyByToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditComputeEffectivePolicyByToken,AuditComputeEffectivePolicyByToken,1039 diff --git a/libc/nt/advapi32/AuditEnumerateCategories.S b/libc/nt/advapi32/AuditEnumerateCategories.S deleted file mode 100644 index b8fbf25e8..000000000 --- a/libc/nt/advapi32/AuditEnumerateCategories.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditEnumerateCategories,AuditEnumerateCategories,1040 diff --git a/libc/nt/advapi32/AuditEnumeratePerUserPolicy.S b/libc/nt/advapi32/AuditEnumeratePerUserPolicy.S deleted file mode 100644 index 174f18860..000000000 --- a/libc/nt/advapi32/AuditEnumeratePerUserPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditEnumeratePerUserPolicy,AuditEnumeratePerUserPolicy,1041 diff --git a/libc/nt/advapi32/AuditEnumerateSubCategories.S b/libc/nt/advapi32/AuditEnumerateSubCategories.S deleted file mode 100644 index 12d18fc89..000000000 --- a/libc/nt/advapi32/AuditEnumerateSubCategories.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditEnumerateSubCategories,AuditEnumerateSubCategories,1042 diff --git a/libc/nt/advapi32/AuditFree.S b/libc/nt/advapi32/AuditFree.S deleted file mode 100644 index fadebe777..000000000 --- a/libc/nt/advapi32/AuditFree.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditFree,AuditFree,1043 diff --git a/libc/nt/advapi32/AuditLookupCategoryGuidFromCategoryId.S b/libc/nt/advapi32/AuditLookupCategoryGuidFromCategoryId.S deleted file mode 100644 index e386a6cf2..000000000 --- a/libc/nt/advapi32/AuditLookupCategoryGuidFromCategoryId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditLookupCategoryGuidFromCategoryId,AuditLookupCategoryGuidFromCategoryId,1044 diff --git a/libc/nt/advapi32/AuditLookupCategoryIdFromCategoryGuid.S b/libc/nt/advapi32/AuditLookupCategoryIdFromCategoryGuid.S deleted file mode 100644 index 5d50b7120..000000000 --- a/libc/nt/advapi32/AuditLookupCategoryIdFromCategoryGuid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditLookupCategoryIdFromCategoryGuid,AuditLookupCategoryIdFromCategoryGuid,1045 diff --git a/libc/nt/advapi32/AuditLookupCategoryNameW.S b/libc/nt/advapi32/AuditLookupCategoryNameW.S deleted file mode 100644 index 91209a65a..000000000 --- a/libc/nt/advapi32/AuditLookupCategoryNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditLookupCategoryNameW,AuditLookupCategoryNameW,1047 diff --git a/libc/nt/advapi32/AuditLookupSubCategoryNameW.S b/libc/nt/advapi32/AuditLookupSubCategoryNameW.S deleted file mode 100644 index eed47cb8a..000000000 --- a/libc/nt/advapi32/AuditLookupSubCategoryNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditLookupSubCategoryNameW,AuditLookupSubCategoryNameW,1049 diff --git a/libc/nt/advapi32/AuditQueryPerUserPolicy.S b/libc/nt/advapi32/AuditQueryPerUserPolicy.S deleted file mode 100644 index 86de742f9..000000000 --- a/libc/nt/advapi32/AuditQueryPerUserPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditQueryPerUserPolicy,AuditQueryPerUserPolicy,1052 diff --git a/libc/nt/advapi32/AuditQuerySecurity.S b/libc/nt/advapi32/AuditQuerySecurity.S deleted file mode 100644 index ada82e40d..000000000 --- a/libc/nt/advapi32/AuditQuerySecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditQuerySecurity,AuditQuerySecurity,1053 diff --git a/libc/nt/advapi32/AuditQuerySystemPolicy.S b/libc/nt/advapi32/AuditQuerySystemPolicy.S deleted file mode 100644 index 4e96c417d..000000000 --- a/libc/nt/advapi32/AuditQuerySystemPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditQuerySystemPolicy,AuditQuerySystemPolicy,1054 diff --git a/libc/nt/advapi32/AuditSetPerUserPolicy.S b/libc/nt/advapi32/AuditSetPerUserPolicy.S deleted file mode 100644 index 58da0e411..000000000 --- a/libc/nt/advapi32/AuditSetPerUserPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditSetPerUserPolicy,AuditSetPerUserPolicy,1057 diff --git a/libc/nt/advapi32/AuditSetSecurity.S b/libc/nt/advapi32/AuditSetSecurity.S deleted file mode 100644 index e95709108..000000000 --- a/libc/nt/advapi32/AuditSetSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditSetSecurity,AuditSetSecurity,1058 diff --git a/libc/nt/advapi32/AuditSetSystemPolicy.S b/libc/nt/advapi32/AuditSetSystemPolicy.S deleted file mode 100644 index 2c338e98d..000000000 --- a/libc/nt/advapi32/AuditSetSystemPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_AuditSetSystemPolicy,AuditSetSystemPolicy,1059 diff --git a/libc/nt/advapi32/BackupEventLogW.S b/libc/nt/advapi32/BackupEventLogW.S deleted file mode 100644 index 98208cc1b..000000000 --- a/libc/nt/advapi32/BackupEventLogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BackupEventLogW,BackupEventLogW,1061 diff --git a/libc/nt/advapi32/BuildExplicitAccessWithNameW.S b/libc/nt/advapi32/BuildExplicitAccessWithNameW.S deleted file mode 100644 index a6842681d..000000000 --- a/libc/nt/advapi32/BuildExplicitAccessWithNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BuildExplicitAccessWithNameW,BuildExplicitAccessWithNameW,1076 diff --git a/libc/nt/advapi32/BuildImpersonateExplicitAccessWithNameW.S b/libc/nt/advapi32/BuildImpersonateExplicitAccessWithNameW.S deleted file mode 100644 index 57885195e..000000000 --- a/libc/nt/advapi32/BuildImpersonateExplicitAccessWithNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BuildImpersonateExplicitAccessWithNameW,BuildImpersonateExplicitAccessWithNameW,1078 diff --git a/libc/nt/advapi32/BuildImpersonateTrusteeW.S b/libc/nt/advapi32/BuildImpersonateTrusteeW.S deleted file mode 100644 index 768be587d..000000000 --- a/libc/nt/advapi32/BuildImpersonateTrusteeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BuildImpersonateTrusteeW,BuildImpersonateTrusteeW,1080 diff --git a/libc/nt/advapi32/BuildSecurityDescriptorW.S b/libc/nt/advapi32/BuildSecurityDescriptorW.S deleted file mode 100644 index b907b09df..000000000 --- a/libc/nt/advapi32/BuildSecurityDescriptorW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BuildSecurityDescriptorW,BuildSecurityDescriptorW,1082 diff --git a/libc/nt/advapi32/BuildTrusteeWithNameW.S b/libc/nt/advapi32/BuildTrusteeWithNameW.S deleted file mode 100644 index f62fa5568..000000000 --- a/libc/nt/advapi32/BuildTrusteeWithNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BuildTrusteeWithNameW,BuildTrusteeWithNameW,1084 diff --git a/libc/nt/advapi32/BuildTrusteeWithObjectsAndNameW.S b/libc/nt/advapi32/BuildTrusteeWithObjectsAndNameW.S deleted file mode 100644 index 48a81e0df..000000000 --- a/libc/nt/advapi32/BuildTrusteeWithObjectsAndNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BuildTrusteeWithObjectsAndNameW,BuildTrusteeWithObjectsAndNameW,1086 diff --git a/libc/nt/advapi32/BuildTrusteeWithObjectsAndSidW.S b/libc/nt/advapi32/BuildTrusteeWithObjectsAndSidW.S deleted file mode 100644 index 646553497..000000000 --- a/libc/nt/advapi32/BuildTrusteeWithObjectsAndSidW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BuildTrusteeWithObjectsAndSidW,BuildTrusteeWithObjectsAndSidW,1088 diff --git a/libc/nt/advapi32/BuildTrusteeWithSidW.S b/libc/nt/advapi32/BuildTrusteeWithSidW.S deleted file mode 100644 index 5b9ff3329..000000000 --- a/libc/nt/advapi32/BuildTrusteeWithSidW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_BuildTrusteeWithSidW,BuildTrusteeWithSidW,1090 diff --git a/libc/nt/advapi32/ChangeServiceConfig2W.S b/libc/nt/advapi32/ChangeServiceConfig2W.S deleted file mode 100644 index 6e298e89d..000000000 --- a/libc/nt/advapi32/ChangeServiceConfig2W.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ChangeServiceConfig2W,ChangeServiceConfig2W,1093 diff --git a/libc/nt/advapi32/ChangeServiceConfigW.S b/libc/nt/advapi32/ChangeServiceConfigW.S deleted file mode 100644 index b979584bf..000000000 --- a/libc/nt/advapi32/ChangeServiceConfigW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ChangeServiceConfigW,ChangeServiceConfigW,1095 diff --git a/libc/nt/advapi32/CheckTokenMembership.S b/libc/nt/advapi32/CheckTokenMembership.S deleted file mode 100644 index a3a854485..000000000 --- a/libc/nt/advapi32/CheckTokenMembership.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CheckTokenMembership,CheckTokenMembership,0 diff --git a/libc/nt/advapi32/ClearEventLogW.S b/libc/nt/advapi32/ClearEventLogW.S deleted file mode 100644 index 2859f1fc7..000000000 --- a/libc/nt/advapi32/ClearEventLogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ClearEventLogW,ClearEventLogW,1099 diff --git a/libc/nt/advapi32/CloseEncryptedFileRaw.S b/libc/nt/advapi32/CloseEncryptedFileRaw.S deleted file mode 100644 index 3446e944f..000000000 --- a/libc/nt/advapi32/CloseEncryptedFileRaw.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CloseEncryptedFileRaw,CloseEncryptedFileRaw,1101 diff --git a/libc/nt/advapi32/CloseEventLog.S b/libc/nt/advapi32/CloseEventLog.S deleted file mode 100644 index e4cd793a9..000000000 --- a/libc/nt/advapi32/CloseEventLog.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CloseEventLog,CloseEventLog,1102 diff --git a/libc/nt/advapi32/CloseServiceHandle.S b/libc/nt/advapi32/CloseServiceHandle.S deleted file mode 100644 index 7e0eac839..000000000 --- a/libc/nt/advapi32/CloseServiceHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CloseServiceHandle,CloseServiceHandle,1103 diff --git a/libc/nt/advapi32/CloseThreadWaitChainSession.S b/libc/nt/advapi32/CloseThreadWaitChainSession.S deleted file mode 100644 index 8ec292e0a..000000000 --- a/libc/nt/advapi32/CloseThreadWaitChainSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CloseThreadWaitChainSession,CloseThreadWaitChainSession,1104 diff --git a/libc/nt/advapi32/CloseTrace.S b/libc/nt/advapi32/CloseTrace.S deleted file mode 100644 index ff66da4b4..000000000 --- a/libc/nt/advapi32/CloseTrace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CloseTrace,CloseTrace,1105 diff --git a/libc/nt/advapi32/ControlService.S b/libc/nt/advapi32/ControlService.S deleted file mode 100644 index bf7b8b85f..000000000 --- a/libc/nt/advapi32/ControlService.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ControlService,ControlService,1108 diff --git a/libc/nt/advapi32/ControlServiceExW.S b/libc/nt/advapi32/ControlServiceExW.S deleted file mode 100644 index 2e0ff52b3..000000000 --- a/libc/nt/advapi32/ControlServiceExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ControlServiceExW,ControlServiceExW,1110 diff --git a/libc/nt/advapi32/ControlTraceW.S b/libc/nt/advapi32/ControlTraceW.S deleted file mode 100644 index 3bc7b3500..000000000 --- a/libc/nt/advapi32/ControlTraceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ControlTraceW,ControlTraceW,1112 diff --git a/libc/nt/advapi32/ConvertSecurityDescriptorToStringSecurityDescriptorW.S b/libc/nt/advapi32/ConvertSecurityDescriptorToStringSecurityDescriptorW.S deleted file mode 100644 index 664a47185..000000000 --- a/libc/nt/advapi32/ConvertSecurityDescriptorToStringSecurityDescriptorW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ConvertSecurityDescriptorToStringSecurityDescriptorW,ConvertSecurityDescriptorToStringSecurityDescriptorW,1123 diff --git a/libc/nt/advapi32/ConvertSidToStringSidW.S b/libc/nt/advapi32/ConvertSidToStringSidW.S deleted file mode 100644 index 24755d928..000000000 --- a/libc/nt/advapi32/ConvertSidToStringSidW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ConvertSidToStringSidW,ConvertSidToStringSidW,1125 diff --git a/libc/nt/advapi32/ConvertStringSDToSDDomainW.S b/libc/nt/advapi32/ConvertStringSDToSDDomainW.S deleted file mode 100644 index 22a2c4f9a..000000000 --- a/libc/nt/advapi32/ConvertStringSDToSDDomainW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ConvertStringSDToSDDomainW,ConvertStringSDToSDDomainW,1127 diff --git a/libc/nt/advapi32/ConvertStringSecurityDescriptorToSecurityDescriptorW.S b/libc/nt/advapi32/ConvertStringSecurityDescriptorToSecurityDescriptorW.S deleted file mode 100644 index d493d8d0a..000000000 --- a/libc/nt/advapi32/ConvertStringSecurityDescriptorToSecurityDescriptorW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ConvertStringSecurityDescriptorToSecurityDescriptorW,ConvertStringSecurityDescriptorToSecurityDescriptorW,1131 diff --git a/libc/nt/advapi32/ConvertStringSidToSidW.S b/libc/nt/advapi32/ConvertStringSidToSidW.S deleted file mode 100644 index b78742020..000000000 --- a/libc/nt/advapi32/ConvertStringSidToSidW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ConvertStringSidToSidW,ConvertStringSidToSidW,1133 diff --git a/libc/nt/advapi32/ConvertToAutoInheritPrivateObjectSecurity.S b/libc/nt/advapi32/ConvertToAutoInheritPrivateObjectSecurity.S deleted file mode 100644 index 99409db38..000000000 --- a/libc/nt/advapi32/ConvertToAutoInheritPrivateObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ConvertToAutoInheritPrivateObjectSecurity,ConvertToAutoInheritPrivateObjectSecurity,0 diff --git a/libc/nt/advapi32/CopySid.S b/libc/nt/advapi32/CopySid.S deleted file mode 100644 index 27a2aeaee..000000000 --- a/libc/nt/advapi32/CopySid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CopySid,CopySid,0 diff --git a/libc/nt/advapi32/CreatePrivateObjectSecurity.S b/libc/nt/advapi32/CreatePrivateObjectSecurity.S deleted file mode 100644 index 2ce446157..000000000 --- a/libc/nt/advapi32/CreatePrivateObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreatePrivateObjectSecurity,CreatePrivateObjectSecurity,0 diff --git a/libc/nt/advapi32/CreatePrivateObjectSecurityEx.S b/libc/nt/advapi32/CreatePrivateObjectSecurityEx.S deleted file mode 100644 index 0242f41f7..000000000 --- a/libc/nt/advapi32/CreatePrivateObjectSecurityEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreatePrivateObjectSecurityEx,CreatePrivateObjectSecurityEx,0 diff --git a/libc/nt/advapi32/CreatePrivateObjectSecurityWithMultipleInheritance.S b/libc/nt/advapi32/CreatePrivateObjectSecurityWithMultipleInheritance.S deleted file mode 100644 index ce1300423..000000000 --- a/libc/nt/advapi32/CreatePrivateObjectSecurityWithMultipleInheritance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreatePrivateObjectSecurityWithMultipleInheritance,CreatePrivateObjectSecurityWithMultipleInheritance,0 diff --git a/libc/nt/advapi32/CreateProcessAsUserW.S b/libc/nt/advapi32/CreateProcessAsUserW.S index 6b26a5b97..2d33f18c7 100644 --- a/libc/nt/advapi32/CreateProcessAsUserW.S +++ b/libc/nt/advapi32/CreateProcessAsUserW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_CreateProcessAsUserW,CreateProcessAsUserW,0 +.imp advapi32,__imp_CreateProcessAsUserW,CreateProcessAsUserW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/CreateProcessWithLogonW.S b/libc/nt/advapi32/CreateProcessWithLogonW.S deleted file mode 100644 index 1ada794c6..000000000 --- a/libc/nt/advapi32/CreateProcessWithLogonW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreateProcessWithLogonW,CreateProcessWithLogonW,1142 diff --git a/libc/nt/advapi32/CreateProcessWithTokenW.S b/libc/nt/advapi32/CreateProcessWithTokenW.S deleted file mode 100644 index 1a1816e39..000000000 --- a/libc/nt/advapi32/CreateProcessWithTokenW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreateProcessWithTokenW,CreateProcessWithTokenW,1143 diff --git a/libc/nt/advapi32/CreateRestrictedToken.S b/libc/nt/advapi32/CreateRestrictedToken.S deleted file mode 100644 index 75d572de0..000000000 --- a/libc/nt/advapi32/CreateRestrictedToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreateRestrictedToken,CreateRestrictedToken,0 diff --git a/libc/nt/advapi32/CreateServiceW.S b/libc/nt/advapi32/CreateServiceW.S deleted file mode 100644 index a1a667575..000000000 --- a/libc/nt/advapi32/CreateServiceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreateServiceW,CreateServiceW,1147 diff --git a/libc/nt/advapi32/CreateTraceInstanceId.S b/libc/nt/advapi32/CreateTraceInstanceId.S deleted file mode 100644 index 4a94cfe81..000000000 --- a/libc/nt/advapi32/CreateTraceInstanceId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreateTraceInstanceId,CreateTraceInstanceId,0 diff --git a/libc/nt/advapi32/CreateWellKnownSid.S b/libc/nt/advapi32/CreateWellKnownSid.S deleted file mode 100644 index 43f663300..000000000 --- a/libc/nt/advapi32/CreateWellKnownSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CreateWellKnownSid,CreateWellKnownSid,0 diff --git a/libc/nt/advapi32/CredDeleteW.S b/libc/nt/advapi32/CredDeleteW.S deleted file mode 100644 index c439f8eb9..000000000 --- a/libc/nt/advapi32/CredDeleteW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredDeleteW,CredDeleteW,1152 diff --git a/libc/nt/advapi32/CredEnumerateW.S b/libc/nt/advapi32/CredEnumerateW.S deleted file mode 100644 index 9a6dc6a64..000000000 --- a/libc/nt/advapi32/CredEnumerateW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredEnumerateW,CredEnumerateW,1155 diff --git a/libc/nt/advapi32/CredFindBestCredentialW.S b/libc/nt/advapi32/CredFindBestCredentialW.S deleted file mode 100644 index 621b0cec4..000000000 --- a/libc/nt/advapi32/CredFindBestCredentialW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredFindBestCredentialW,CredFindBestCredentialW,1157 diff --git a/libc/nt/advapi32/CredFree.S b/libc/nt/advapi32/CredFree.S deleted file mode 100644 index 1077ed360..000000000 --- a/libc/nt/advapi32/CredFree.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredFree,CredFree,1158 diff --git a/libc/nt/advapi32/CredGetSessionTypes.S b/libc/nt/advapi32/CredGetSessionTypes.S deleted file mode 100644 index 3da0e5ae3..000000000 --- a/libc/nt/advapi32/CredGetSessionTypes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredGetSessionTypes,CredGetSessionTypes,1159 diff --git a/libc/nt/advapi32/CredGetTargetInfoW.S b/libc/nt/advapi32/CredGetTargetInfoW.S deleted file mode 100644 index 28c2f0256..000000000 --- a/libc/nt/advapi32/CredGetTargetInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredGetTargetInfoW,CredGetTargetInfoW,1161 diff --git a/libc/nt/advapi32/CredIsMarshaledCredentialW.S b/libc/nt/advapi32/CredIsMarshaledCredentialW.S deleted file mode 100644 index 1011ba4f3..000000000 --- a/libc/nt/advapi32/CredIsMarshaledCredentialW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredIsMarshaledCredentialW,CredIsMarshaledCredentialW,1163 diff --git a/libc/nt/advapi32/CredIsProtectedW.S b/libc/nt/advapi32/CredIsProtectedW.S deleted file mode 100644 index 0f3acb43d..000000000 --- a/libc/nt/advapi32/CredIsProtectedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredIsProtectedW,CredIsProtectedW,1165 diff --git a/libc/nt/advapi32/CredMarshalCredentialW.S b/libc/nt/advapi32/CredMarshalCredentialW.S deleted file mode 100644 index 1c5921e09..000000000 --- a/libc/nt/advapi32/CredMarshalCredentialW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredMarshalCredentialW,CredMarshalCredentialW,1167 diff --git a/libc/nt/advapi32/CredProtectW.S b/libc/nt/advapi32/CredProtectW.S deleted file mode 100644 index 8f1a6b7cc..000000000 --- a/libc/nt/advapi32/CredProtectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredProtectW,CredProtectW,1172 diff --git a/libc/nt/advapi32/CredReadDomainCredentialsW.S b/libc/nt/advapi32/CredReadDomainCredentialsW.S deleted file mode 100644 index 11bb0c7fb..000000000 --- a/libc/nt/advapi32/CredReadDomainCredentialsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredReadDomainCredentialsW,CredReadDomainCredentialsW,1176 diff --git a/libc/nt/advapi32/CredReadW.S b/libc/nt/advapi32/CredReadW.S deleted file mode 100644 index e9b52b06e..000000000 --- a/libc/nt/advapi32/CredReadW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredReadW,CredReadW,1177 diff --git a/libc/nt/advapi32/CredRenameW.S b/libc/nt/advapi32/CredRenameW.S deleted file mode 100644 index c606e3721..000000000 --- a/libc/nt/advapi32/CredRenameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredRenameW,CredRenameW,1179 diff --git a/libc/nt/advapi32/CredUnmarshalCredentialW.S b/libc/nt/advapi32/CredUnmarshalCredentialW.S deleted file mode 100644 index 42ac6cc00..000000000 --- a/libc/nt/advapi32/CredUnmarshalCredentialW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredUnmarshalCredentialW,CredUnmarshalCredentialW,1182 diff --git a/libc/nt/advapi32/CredUnprotectW.S b/libc/nt/advapi32/CredUnprotectW.S deleted file mode 100644 index 9ce814b41..000000000 --- a/libc/nt/advapi32/CredUnprotectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredUnprotectW,CredUnprotectW,1184 diff --git a/libc/nt/advapi32/CredWriteDomainCredentialsW.S b/libc/nt/advapi32/CredWriteDomainCredentialsW.S deleted file mode 100644 index 482873dc8..000000000 --- a/libc/nt/advapi32/CredWriteDomainCredentialsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredWriteDomainCredentialsW,CredWriteDomainCredentialsW,1187 diff --git a/libc/nt/advapi32/CredWriteW.S b/libc/nt/advapi32/CredWriteW.S deleted file mode 100644 index 73176595d..000000000 --- a/libc/nt/advapi32/CredWriteW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CredWriteW,CredWriteW,1188 diff --git a/libc/nt/advapi32/CryptAcquireContextW.S b/libc/nt/advapi32/CryptAcquireContextW.S deleted file mode 100644 index ed98c08e3..000000000 --- a/libc/nt/advapi32/CryptAcquireContextW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptAcquireContextW,CryptAcquireContextW,1196 diff --git a/libc/nt/advapi32/CryptContextAddRef.S b/libc/nt/advapi32/CryptContextAddRef.S deleted file mode 100644 index b6f884972..000000000 --- a/libc/nt/advapi32/CryptContextAddRef.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptContextAddRef,CryptContextAddRef,1197 diff --git a/libc/nt/advapi32/CryptCreateHash.S b/libc/nt/advapi32/CryptCreateHash.S deleted file mode 100644 index 04702aea3..000000000 --- a/libc/nt/advapi32/CryptCreateHash.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptCreateHash,CryptCreateHash,1198 diff --git a/libc/nt/advapi32/CryptDecrypt.S b/libc/nt/advapi32/CryptDecrypt.S deleted file mode 100644 index 557e14b63..000000000 --- a/libc/nt/advapi32/CryptDecrypt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptDecrypt,CryptDecrypt,1199 diff --git a/libc/nt/advapi32/CryptDeriveKey.S b/libc/nt/advapi32/CryptDeriveKey.S deleted file mode 100644 index fe94f77c5..000000000 --- a/libc/nt/advapi32/CryptDeriveKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptDeriveKey,CryptDeriveKey,1200 diff --git a/libc/nt/advapi32/CryptDestroyHash.S b/libc/nt/advapi32/CryptDestroyHash.S deleted file mode 100644 index ffa0a8e16..000000000 --- a/libc/nt/advapi32/CryptDestroyHash.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptDestroyHash,CryptDestroyHash,1201 diff --git a/libc/nt/advapi32/CryptDestroyKey.S b/libc/nt/advapi32/CryptDestroyKey.S deleted file mode 100644 index ae1d7b6d4..000000000 --- a/libc/nt/advapi32/CryptDestroyKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptDestroyKey,CryptDestroyKey,1202 diff --git a/libc/nt/advapi32/CryptDuplicateHash.S b/libc/nt/advapi32/CryptDuplicateHash.S deleted file mode 100644 index 51f6a77e9..000000000 --- a/libc/nt/advapi32/CryptDuplicateHash.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptDuplicateHash,CryptDuplicateHash,1203 diff --git a/libc/nt/advapi32/CryptDuplicateKey.S b/libc/nt/advapi32/CryptDuplicateKey.S deleted file mode 100644 index 3ca308f47..000000000 --- a/libc/nt/advapi32/CryptDuplicateKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptDuplicateKey,CryptDuplicateKey,1204 diff --git a/libc/nt/advapi32/CryptEncrypt.S b/libc/nt/advapi32/CryptEncrypt.S deleted file mode 100644 index c4cdd608d..000000000 --- a/libc/nt/advapi32/CryptEncrypt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptEncrypt,CryptEncrypt,1205 diff --git a/libc/nt/advapi32/CryptEnumProviderTypesW.S b/libc/nt/advapi32/CryptEnumProviderTypesW.S deleted file mode 100644 index 4ea0e8d7d..000000000 --- a/libc/nt/advapi32/CryptEnumProviderTypesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptEnumProviderTypesW,CryptEnumProviderTypesW,1207 diff --git a/libc/nt/advapi32/CryptEnumProvidersW.S b/libc/nt/advapi32/CryptEnumProvidersW.S deleted file mode 100644 index cbae7e47f..000000000 --- a/libc/nt/advapi32/CryptEnumProvidersW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptEnumProvidersW,CryptEnumProvidersW,1209 diff --git a/libc/nt/advapi32/CryptExportKey.S b/libc/nt/advapi32/CryptExportKey.S deleted file mode 100644 index 64fddbc58..000000000 --- a/libc/nt/advapi32/CryptExportKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptExportKey,CryptExportKey,1210 diff --git a/libc/nt/advapi32/CryptGenKey.S b/libc/nt/advapi32/CryptGenKey.S deleted file mode 100644 index 8425af1d1..000000000 --- a/libc/nt/advapi32/CryptGenKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptGenKey,CryptGenKey,1211 diff --git a/libc/nt/advapi32/CryptGenRandom.S b/libc/nt/advapi32/CryptGenRandom.S deleted file mode 100644 index 2957d329f..000000000 --- a/libc/nt/advapi32/CryptGenRandom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptGenRandom,CryptGenRandom,1212 diff --git a/libc/nt/advapi32/CryptGetDefaultProviderW.S b/libc/nt/advapi32/CryptGetDefaultProviderW.S deleted file mode 100644 index d98a9804b..000000000 --- a/libc/nt/advapi32/CryptGetDefaultProviderW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptGetDefaultProviderW,CryptGetDefaultProviderW,1214 diff --git a/libc/nt/advapi32/CryptGetHashParam.S b/libc/nt/advapi32/CryptGetHashParam.S deleted file mode 100644 index c34f4c12a..000000000 --- a/libc/nt/advapi32/CryptGetHashParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptGetHashParam,CryptGetHashParam,1215 diff --git a/libc/nt/advapi32/CryptGetKeyParam.S b/libc/nt/advapi32/CryptGetKeyParam.S deleted file mode 100644 index a5e2f10fb..000000000 --- a/libc/nt/advapi32/CryptGetKeyParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptGetKeyParam,CryptGetKeyParam,1216 diff --git a/libc/nt/advapi32/CryptGetLocalKeyLimits.S b/libc/nt/advapi32/CryptGetLocalKeyLimits.S deleted file mode 100644 index 55fc9f10b..000000000 --- a/libc/nt/advapi32/CryptGetLocalKeyLimits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptGetLocalKeyLimits,CryptGetLocalKeyLimits,0 diff --git a/libc/nt/advapi32/CryptGetProvParam.S b/libc/nt/advapi32/CryptGetProvParam.S deleted file mode 100644 index 457a882d5..000000000 --- a/libc/nt/advapi32/CryptGetProvParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptGetProvParam,CryptGetProvParam,1217 diff --git a/libc/nt/advapi32/CryptGetUserKey.S b/libc/nt/advapi32/CryptGetUserKey.S deleted file mode 100644 index d4560bb59..000000000 --- a/libc/nt/advapi32/CryptGetUserKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptGetUserKey,CryptGetUserKey,1218 diff --git a/libc/nt/advapi32/CryptHashData.S b/libc/nt/advapi32/CryptHashData.S deleted file mode 100644 index 430e82a82..000000000 --- a/libc/nt/advapi32/CryptHashData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptHashData,CryptHashData,1219 diff --git a/libc/nt/advapi32/CryptHashSessionKey.S b/libc/nt/advapi32/CryptHashSessionKey.S deleted file mode 100644 index db191a231..000000000 --- a/libc/nt/advapi32/CryptHashSessionKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptHashSessionKey,CryptHashSessionKey,1220 diff --git a/libc/nt/advapi32/CryptImportKey.S b/libc/nt/advapi32/CryptImportKey.S deleted file mode 100644 index 8ad20f720..000000000 --- a/libc/nt/advapi32/CryptImportKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptImportKey,CryptImportKey,1221 diff --git a/libc/nt/advapi32/CryptReleaseContext.S b/libc/nt/advapi32/CryptReleaseContext.S deleted file mode 100644 index c19c1816f..000000000 --- a/libc/nt/advapi32/CryptReleaseContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptReleaseContext,CryptReleaseContext,1222 diff --git a/libc/nt/advapi32/CryptSetHashParam.S b/libc/nt/advapi32/CryptSetHashParam.S deleted file mode 100644 index ac89328dc..000000000 --- a/libc/nt/advapi32/CryptSetHashParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptSetHashParam,CryptSetHashParam,1223 diff --git a/libc/nt/advapi32/CryptSetKeyParam.S b/libc/nt/advapi32/CryptSetKeyParam.S deleted file mode 100644 index 2e7491a63..000000000 --- a/libc/nt/advapi32/CryptSetKeyParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptSetKeyParam,CryptSetKeyParam,1224 diff --git a/libc/nt/advapi32/CryptSetProvParam.S b/libc/nt/advapi32/CryptSetProvParam.S deleted file mode 100644 index 9f637a8c6..000000000 --- a/libc/nt/advapi32/CryptSetProvParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptSetProvParam,CryptSetProvParam,1225 diff --git a/libc/nt/advapi32/CryptSetProviderExW.S b/libc/nt/advapi32/CryptSetProviderExW.S deleted file mode 100644 index 4a05e8793..000000000 --- a/libc/nt/advapi32/CryptSetProviderExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptSetProviderExW,CryptSetProviderExW,1228 diff --git a/libc/nt/advapi32/CryptSetProviderW.S b/libc/nt/advapi32/CryptSetProviderW.S deleted file mode 100644 index 86b5f6d87..000000000 --- a/libc/nt/advapi32/CryptSetProviderW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptSetProviderW,CryptSetProviderW,1229 diff --git a/libc/nt/advapi32/CryptSignHashW.S b/libc/nt/advapi32/CryptSignHashW.S deleted file mode 100644 index 64e3a186f..000000000 --- a/libc/nt/advapi32/CryptSignHashW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptSignHashW,CryptSignHashW,1231 diff --git a/libc/nt/advapi32/CryptVerifySignatureW.S b/libc/nt/advapi32/CryptVerifySignatureW.S deleted file mode 100644 index 900b9322c..000000000 --- a/libc/nt/advapi32/CryptVerifySignatureW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_CryptVerifySignatureW,CryptVerifySignatureW,1233 diff --git a/libc/nt/advapi32/DecryptFileW.S b/libc/nt/advapi32/DecryptFileW.S deleted file mode 100644 index 15c06f48d..000000000 --- a/libc/nt/advapi32/DecryptFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_DecryptFileW,DecryptFileW,1236 diff --git a/libc/nt/advapi32/DeleteAce.S b/libc/nt/advapi32/DeleteAce.S deleted file mode 100644 index 122f67f7d..000000000 --- a/libc/nt/advapi32/DeleteAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_DeleteAce,DeleteAce,0 diff --git a/libc/nt/advapi32/DeleteService.S b/libc/nt/advapi32/DeleteService.S deleted file mode 100644 index 1a1f86a02..000000000 --- a/libc/nt/advapi32/DeleteService.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_DeleteService,DeleteService,1238 diff --git a/libc/nt/advapi32/DeregisterEventSource.S b/libc/nt/advapi32/DeregisterEventSource.S index 3ef7b82d5..4130882a1 100644 --- a/libc/nt/advapi32/DeregisterEventSource.S +++ b/libc/nt/advapi32/DeregisterEventSource.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_DeregisterEventSource,DeregisterEventSource,1239 +.imp advapi32,__imp_DeregisterEventSource,DeregisterEventSource .text.windows .ftrace1 diff --git a/libc/nt/advapi32/DestroyPrivateObjectSecurity.S b/libc/nt/advapi32/DestroyPrivateObjectSecurity.S deleted file mode 100644 index 9c8fa1196..000000000 --- a/libc/nt/advapi32/DestroyPrivateObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_DestroyPrivateObjectSecurity,DestroyPrivateObjectSecurity,0 diff --git a/libc/nt/advapi32/DuplicateEncryptionInfoFile.S b/libc/nt/advapi32/DuplicateEncryptionInfoFile.S deleted file mode 100644 index 109424c4a..000000000 --- a/libc/nt/advapi32/DuplicateEncryptionInfoFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_DuplicateEncryptionInfoFile,DuplicateEncryptionInfoFile,1241 diff --git a/libc/nt/advapi32/DuplicateToken.S b/libc/nt/advapi32/DuplicateToken.S index 8d4cb64d2..422d8e113 100644 --- a/libc/nt/advapi32/DuplicateToken.S +++ b/libc/nt/advapi32/DuplicateToken.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_DuplicateToken,DuplicateToken,0 +.imp advapi32,__imp_DuplicateToken,DuplicateToken .text.windows .ftrace1 diff --git a/libc/nt/advapi32/DuplicateTokenEx.S b/libc/nt/advapi32/DuplicateTokenEx.S index 95c1ba9c7..6517ef2ae 100644 --- a/libc/nt/advapi32/DuplicateTokenEx.S +++ b/libc/nt/advapi32/DuplicateTokenEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_DuplicateTokenEx,DuplicateTokenEx,0 +.imp advapi32,__imp_DuplicateTokenEx,DuplicateTokenEx .text.windows .ftrace1 diff --git a/libc/nt/advapi32/EnableTrace.S b/libc/nt/advapi32/EnableTrace.S deleted file mode 100644 index a41a37151..000000000 --- a/libc/nt/advapi32/EnableTrace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EnableTrace,EnableTrace,1265 diff --git a/libc/nt/advapi32/EnableTraceEx.S b/libc/nt/advapi32/EnableTraceEx.S deleted file mode 100644 index 44cfbe8f8..000000000 --- a/libc/nt/advapi32/EnableTraceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EnableTraceEx,EnableTraceEx,1266 diff --git a/libc/nt/advapi32/EnableTraceEx2.S b/libc/nt/advapi32/EnableTraceEx2.S deleted file mode 100644 index 5804dbb7b..000000000 --- a/libc/nt/advapi32/EnableTraceEx2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EnableTraceEx2,EnableTraceEx2,1267 diff --git a/libc/nt/advapi32/EncryptFileW.S b/libc/nt/advapi32/EncryptFileW.S deleted file mode 100644 index d7f89fbc8..000000000 --- a/libc/nt/advapi32/EncryptFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EncryptFileW,EncryptFileW,1269 diff --git a/libc/nt/advapi32/EncryptionDisable.S b/libc/nt/advapi32/EncryptionDisable.S deleted file mode 100644 index e8e8633dd..000000000 --- a/libc/nt/advapi32/EncryptionDisable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EncryptionDisable,EncryptionDisable,1271 diff --git a/libc/nt/advapi32/EnumDependentServicesW.S b/libc/nt/advapi32/EnumDependentServicesW.S deleted file mode 100644 index 37bbf4c11..000000000 --- a/libc/nt/advapi32/EnumDependentServicesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EnumDependentServicesW,EnumDependentServicesW,1273 diff --git a/libc/nt/advapi32/EnumServicesStatusExW.S b/libc/nt/advapi32/EnumServicesStatusExW.S deleted file mode 100644 index 4dfc43c0c..000000000 --- a/libc/nt/advapi32/EnumServicesStatusExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EnumServicesStatusExW,EnumServicesStatusExW,1278 diff --git a/libc/nt/advapi32/EnumServicesStatusW.S b/libc/nt/advapi32/EnumServicesStatusW.S deleted file mode 100644 index 75c5abeb3..000000000 --- a/libc/nt/advapi32/EnumServicesStatusW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EnumServicesStatusW,EnumServicesStatusW,1279 diff --git a/libc/nt/advapi32/EnumerateTraceGuids.S b/libc/nt/advapi32/EnumerateTraceGuids.S deleted file mode 100644 index 9a885ca00..000000000 --- a/libc/nt/advapi32/EnumerateTraceGuids.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EnumerateTraceGuids,EnumerateTraceGuids,1280 diff --git a/libc/nt/advapi32/EnumerateTraceGuidsEx.S b/libc/nt/advapi32/EnumerateTraceGuidsEx.S deleted file mode 100644 index 163cf8b98..000000000 --- a/libc/nt/advapi32/EnumerateTraceGuidsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EnumerateTraceGuidsEx,EnumerateTraceGuidsEx,1281 diff --git a/libc/nt/advapi32/EqualDomainSid.S b/libc/nt/advapi32/EqualDomainSid.S deleted file mode 100644 index 4a144cf74..000000000 --- a/libc/nt/advapi32/EqualDomainSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EqualDomainSid,EqualDomainSid,0 diff --git a/libc/nt/advapi32/EqualPrefixSid.S b/libc/nt/advapi32/EqualPrefixSid.S deleted file mode 100644 index 69b996d66..000000000 --- a/libc/nt/advapi32/EqualPrefixSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EqualPrefixSid,EqualPrefixSid,0 diff --git a/libc/nt/advapi32/EqualSid.S b/libc/nt/advapi32/EqualSid.S deleted file mode 100644 index 2e78457b9..000000000 --- a/libc/nt/advapi32/EqualSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EqualSid,EqualSid,0 diff --git a/libc/nt/advapi32/EventAccessControl.S b/libc/nt/advapi32/EventAccessControl.S deleted file mode 100644 index 790643e81..000000000 --- a/libc/nt/advapi32/EventAccessControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventAccessControl,EventAccessControl,1285 diff --git a/libc/nt/advapi32/EventAccessQuery.S b/libc/nt/advapi32/EventAccessQuery.S deleted file mode 100644 index fdf2fe54a..000000000 --- a/libc/nt/advapi32/EventAccessQuery.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventAccessQuery,EventAccessQuery,1286 diff --git a/libc/nt/advapi32/EventAccessRemove.S b/libc/nt/advapi32/EventAccessRemove.S deleted file mode 100644 index 29d0d49e3..000000000 --- a/libc/nt/advapi32/EventAccessRemove.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventAccessRemove,EventAccessRemove,1287 diff --git a/libc/nt/advapi32/EventActivityIdControl.S b/libc/nt/advapi32/EventActivityIdControl.S deleted file mode 100644 index 8175fc8e8..000000000 --- a/libc/nt/advapi32/EventActivityIdControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventActivityIdControl,EventActivityIdControl,0 diff --git a/libc/nt/advapi32/EventEnabled.S b/libc/nt/advapi32/EventEnabled.S deleted file mode 100644 index b44518e9e..000000000 --- a/libc/nt/advapi32/EventEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventEnabled,EventEnabled,0 diff --git a/libc/nt/advapi32/EventProviderEnabled.S b/libc/nt/advapi32/EventProviderEnabled.S deleted file mode 100644 index 5e0574fb3..000000000 --- a/libc/nt/advapi32/EventProviderEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventProviderEnabled,EventProviderEnabled,0 diff --git a/libc/nt/advapi32/EventRegister.S b/libc/nt/advapi32/EventRegister.S deleted file mode 100644 index cea882aa7..000000000 --- a/libc/nt/advapi32/EventRegister.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventRegister,EventRegister,0 diff --git a/libc/nt/advapi32/EventUnregister.S b/libc/nt/advapi32/EventUnregister.S deleted file mode 100644 index d3eca897e..000000000 --- a/libc/nt/advapi32/EventUnregister.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventUnregister,EventUnregister,0 diff --git a/libc/nt/advapi32/EventWrite.S b/libc/nt/advapi32/EventWrite.S deleted file mode 100644 index c17212198..000000000 --- a/libc/nt/advapi32/EventWrite.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventWrite,EventWrite,0 diff --git a/libc/nt/advapi32/EventWriteEx.S b/libc/nt/advapi32/EventWriteEx.S deleted file mode 100644 index 179fdd7ee..000000000 --- a/libc/nt/advapi32/EventWriteEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventWriteEx,EventWriteEx,0 diff --git a/libc/nt/advapi32/EventWriteString.S b/libc/nt/advapi32/EventWriteString.S deleted file mode 100644 index e094686ef..000000000 --- a/libc/nt/advapi32/EventWriteString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventWriteString,EventWriteString,0 diff --git a/libc/nt/advapi32/EventWriteTransfer.S b/libc/nt/advapi32/EventWriteTransfer.S deleted file mode 100644 index 35e903fbd..000000000 --- a/libc/nt/advapi32/EventWriteTransfer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_EventWriteTransfer,EventWriteTransfer,0 diff --git a/libc/nt/advapi32/FileEncryptionStatusW.S b/libc/nt/advapi32/FileEncryptionStatusW.S deleted file mode 100644 index 37bc446b7..000000000 --- a/libc/nt/advapi32/FileEncryptionStatusW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_FileEncryptionStatusW,FileEncryptionStatusW,1301 diff --git a/libc/nt/advapi32/FindFirstFreeAce.S b/libc/nt/advapi32/FindFirstFreeAce.S deleted file mode 100644 index 61bea476f..000000000 --- a/libc/nt/advapi32/FindFirstFreeAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_FindFirstFreeAce,FindFirstFreeAce,0 diff --git a/libc/nt/advapi32/FlushTraceW.S b/libc/nt/advapi32/FlushTraceW.S deleted file mode 100644 index 5e4fe0dd1..000000000 --- a/libc/nt/advapi32/FlushTraceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_FlushTraceW,FlushTraceW,1305 diff --git a/libc/nt/advapi32/FreeEncryptionCertificateHashList.S b/libc/nt/advapi32/FreeEncryptionCertificateHashList.S deleted file mode 100644 index a56fd3759..000000000 --- a/libc/nt/advapi32/FreeEncryptionCertificateHashList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_FreeEncryptionCertificateHashList,FreeEncryptionCertificateHashList,1308 diff --git a/libc/nt/advapi32/FreeInheritedFromArray.S b/libc/nt/advapi32/FreeInheritedFromArray.S deleted file mode 100644 index 17950e3a9..000000000 --- a/libc/nt/advapi32/FreeInheritedFromArray.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_FreeInheritedFromArray,FreeInheritedFromArray,1309 diff --git a/libc/nt/advapi32/FreeSid.S b/libc/nt/advapi32/FreeSid.S deleted file mode 100644 index 803c26ab3..000000000 --- a/libc/nt/advapi32/FreeSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_FreeSid,FreeSid,0 diff --git a/libc/nt/advapi32/GetAce.S b/libc/nt/advapi32/GetAce.S deleted file mode 100644 index b0e6d7e3a..000000000 --- a/libc/nt/advapi32/GetAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetAce,GetAce,0 diff --git a/libc/nt/advapi32/GetAclInformation.S b/libc/nt/advapi32/GetAclInformation.S deleted file mode 100644 index 1af9b5dd2..000000000 --- a/libc/nt/advapi32/GetAclInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetAclInformation,GetAclInformation,0 diff --git a/libc/nt/advapi32/GetAuditedPermissionsFromAclW.S b/libc/nt/advapi32/GetAuditedPermissionsFromAclW.S deleted file mode 100644 index 28ff5598a..000000000 --- a/libc/nt/advapi32/GetAuditedPermissionsFromAclW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetAuditedPermissionsFromAclW,GetAuditedPermissionsFromAclW,1316 diff --git a/libc/nt/advapi32/GetCurrentHwProfileW.S b/libc/nt/advapi32/GetCurrentHwProfileW.S deleted file mode 100644 index 719f927a0..000000000 --- a/libc/nt/advapi32/GetCurrentHwProfileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetCurrentHwProfileW,GetCurrentHwProfileW,1318 diff --git a/libc/nt/advapi32/GetEffectiveRightsFromAclW.S b/libc/nt/advapi32/GetEffectiveRightsFromAclW.S deleted file mode 100644 index fe29a111c..000000000 --- a/libc/nt/advapi32/GetEffectiveRightsFromAclW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetEffectiveRightsFromAclW,GetEffectiveRightsFromAclW,1321 diff --git a/libc/nt/advapi32/GetEventLogInformation.S b/libc/nt/advapi32/GetEventLogInformation.S deleted file mode 100644 index f72c80468..000000000 --- a/libc/nt/advapi32/GetEventLogInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetEventLogInformation,GetEventLogInformation,1323 diff --git a/libc/nt/advapi32/GetExplicitEntriesFromAclW.S b/libc/nt/advapi32/GetExplicitEntriesFromAclW.S deleted file mode 100644 index 5c9cbaa57..000000000 --- a/libc/nt/advapi32/GetExplicitEntriesFromAclW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetExplicitEntriesFromAclW,GetExplicitEntriesFromAclW,1325 diff --git a/libc/nt/advapi32/GetFileSecurityW.S b/libc/nt/advapi32/GetFileSecurityW.S index 904dbcd6f..417073aa1 100644 --- a/libc/nt/advapi32/GetFileSecurityW.S +++ b/libc/nt/advapi32/GetFileSecurityW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_GetFileSecurityW,GetFileSecurityW,0 +.imp advapi32,__imp_GetFileSecurityW,GetFileSecurityW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/GetInheritanceSourceW.S b/libc/nt/advapi32/GetInheritanceSourceW.S deleted file mode 100644 index 9f3459cfd..000000000 --- a/libc/nt/advapi32/GetInheritanceSourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetInheritanceSourceW,GetInheritanceSourceW,1331 diff --git a/libc/nt/advapi32/GetKernelObjectSecurity.S b/libc/nt/advapi32/GetKernelObjectSecurity.S deleted file mode 100644 index 02bffcfce..000000000 --- a/libc/nt/advapi32/GetKernelObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetKernelObjectSecurity,GetKernelObjectSecurity,0 diff --git a/libc/nt/advapi32/GetLengthSid.S b/libc/nt/advapi32/GetLengthSid.S deleted file mode 100644 index 1cfdba0c2..000000000 --- a/libc/nt/advapi32/GetLengthSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetLengthSid,GetLengthSid,0 diff --git a/libc/nt/advapi32/GetLocalManagedApplications.S b/libc/nt/advapi32/GetLocalManagedApplications.S deleted file mode 100644 index 8b8307ecf..000000000 --- a/libc/nt/advapi32/GetLocalManagedApplications.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetLocalManagedApplications,GetLocalManagedApplications,1335 diff --git a/libc/nt/advapi32/GetManagedApplicationCategories.S b/libc/nt/advapi32/GetManagedApplicationCategories.S deleted file mode 100644 index 737de9db9..000000000 --- a/libc/nt/advapi32/GetManagedApplicationCategories.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetManagedApplicationCategories,GetManagedApplicationCategories,1336 diff --git a/libc/nt/advapi32/GetManagedApplications.S b/libc/nt/advapi32/GetManagedApplications.S deleted file mode 100644 index 0ef6bc10a..000000000 --- a/libc/nt/advapi32/GetManagedApplications.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetManagedApplications,GetManagedApplications,1337 diff --git a/libc/nt/advapi32/GetMultipleTrusteeOperationW.S b/libc/nt/advapi32/GetMultipleTrusteeOperationW.S deleted file mode 100644 index 900788df2..000000000 --- a/libc/nt/advapi32/GetMultipleTrusteeOperationW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetMultipleTrusteeOperationW,GetMultipleTrusteeOperationW,1340 diff --git a/libc/nt/advapi32/GetMultipleTrusteeW.S b/libc/nt/advapi32/GetMultipleTrusteeW.S deleted file mode 100644 index f5a810ec5..000000000 --- a/libc/nt/advapi32/GetMultipleTrusteeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetMultipleTrusteeW,GetMultipleTrusteeW,1341 diff --git a/libc/nt/advapi32/GetNamedSecurityInfoW.S b/libc/nt/advapi32/GetNamedSecurityInfoW.S deleted file mode 100644 index 62ac78775..000000000 --- a/libc/nt/advapi32/GetNamedSecurityInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetNamedSecurityInfoW,GetNamedSecurityInfoW,1345 diff --git a/libc/nt/advapi32/GetNumberOfEventLogRecords.S b/libc/nt/advapi32/GetNumberOfEventLogRecords.S deleted file mode 100644 index 3965c1539..000000000 --- a/libc/nt/advapi32/GetNumberOfEventLogRecords.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetNumberOfEventLogRecords,GetNumberOfEventLogRecords,1346 diff --git a/libc/nt/advapi32/GetOldestEventLogRecord.S b/libc/nt/advapi32/GetOldestEventLogRecord.S deleted file mode 100644 index d06601783..000000000 --- a/libc/nt/advapi32/GetOldestEventLogRecord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetOldestEventLogRecord,GetOldestEventLogRecord,1347 diff --git a/libc/nt/advapi32/GetPrivateObjectSecurity.S b/libc/nt/advapi32/GetPrivateObjectSecurity.S deleted file mode 100644 index 53147d1ab..000000000 --- a/libc/nt/advapi32/GetPrivateObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetPrivateObjectSecurity,GetPrivateObjectSecurity,0 diff --git a/libc/nt/advapi32/GetSecurityDescriptorControl.S b/libc/nt/advapi32/GetSecurityDescriptorControl.S deleted file mode 100644 index 59f0ea936..000000000 --- a/libc/nt/advapi32/GetSecurityDescriptorControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSecurityDescriptorControl,GetSecurityDescriptorControl,0 diff --git a/libc/nt/advapi32/GetSecurityDescriptorDacl.S b/libc/nt/advapi32/GetSecurityDescriptorDacl.S deleted file mode 100644 index f09de4745..000000000 --- a/libc/nt/advapi32/GetSecurityDescriptorDacl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSecurityDescriptorDacl,GetSecurityDescriptorDacl,0 diff --git a/libc/nt/advapi32/GetSecurityDescriptorGroup.S b/libc/nt/advapi32/GetSecurityDescriptorGroup.S deleted file mode 100644 index ba3c38320..000000000 --- a/libc/nt/advapi32/GetSecurityDescriptorGroup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSecurityDescriptorGroup,GetSecurityDescriptorGroup,0 diff --git a/libc/nt/advapi32/GetSecurityDescriptorLength.S b/libc/nt/advapi32/GetSecurityDescriptorLength.S deleted file mode 100644 index 29adf11c7..000000000 --- a/libc/nt/advapi32/GetSecurityDescriptorLength.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSecurityDescriptorLength,GetSecurityDescriptorLength,0 diff --git a/libc/nt/advapi32/GetSecurityDescriptorOwner.S b/libc/nt/advapi32/GetSecurityDescriptorOwner.S deleted file mode 100644 index ec2ac9c9d..000000000 --- a/libc/nt/advapi32/GetSecurityDescriptorOwner.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSecurityDescriptorOwner,GetSecurityDescriptorOwner,0 diff --git a/libc/nt/advapi32/GetSecurityDescriptorRMControl.S b/libc/nt/advapi32/GetSecurityDescriptorRMControl.S deleted file mode 100644 index 0f0c51e31..000000000 --- a/libc/nt/advapi32/GetSecurityDescriptorRMControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSecurityDescriptorRMControl,GetSecurityDescriptorRMControl,0 diff --git a/libc/nt/advapi32/GetSecurityDescriptorSacl.S b/libc/nt/advapi32/GetSecurityDescriptorSacl.S deleted file mode 100644 index 9831ae142..000000000 --- a/libc/nt/advapi32/GetSecurityDescriptorSacl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSecurityDescriptorSacl,GetSecurityDescriptorSacl,0 diff --git a/libc/nt/advapi32/GetSecurityInfo.S b/libc/nt/advapi32/GetSecurityInfo.S deleted file mode 100644 index 18e96479c..000000000 --- a/libc/nt/advapi32/GetSecurityInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSecurityInfo,GetSecurityInfo,1357 diff --git a/libc/nt/advapi32/GetServiceDisplayNameW.S b/libc/nt/advapi32/GetServiceDisplayNameW.S deleted file mode 100644 index 0d87329b0..000000000 --- a/libc/nt/advapi32/GetServiceDisplayNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetServiceDisplayNameW,GetServiceDisplayNameW,1361 diff --git a/libc/nt/advapi32/GetServiceKeyNameW.S b/libc/nt/advapi32/GetServiceKeyNameW.S deleted file mode 100644 index d788579d1..000000000 --- a/libc/nt/advapi32/GetServiceKeyNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetServiceKeyNameW,GetServiceKeyNameW,1363 diff --git a/libc/nt/advapi32/GetSidIdentifierAuthority.S b/libc/nt/advapi32/GetSidIdentifierAuthority.S deleted file mode 100644 index b18920036..000000000 --- a/libc/nt/advapi32/GetSidIdentifierAuthority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSidIdentifierAuthority,GetSidIdentifierAuthority,0 diff --git a/libc/nt/advapi32/GetSidLengthRequired.S b/libc/nt/advapi32/GetSidLengthRequired.S deleted file mode 100644 index ba8a7dff3..000000000 --- a/libc/nt/advapi32/GetSidLengthRequired.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSidLengthRequired,GetSidLengthRequired,0 diff --git a/libc/nt/advapi32/GetSidSubAuthority.S b/libc/nt/advapi32/GetSidSubAuthority.S deleted file mode 100644 index 510c8de8e..000000000 --- a/libc/nt/advapi32/GetSidSubAuthority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSidSubAuthority,GetSidSubAuthority,0 diff --git a/libc/nt/advapi32/GetSidSubAuthorityCount.S b/libc/nt/advapi32/GetSidSubAuthorityCount.S deleted file mode 100644 index e8c685ba6..000000000 --- a/libc/nt/advapi32/GetSidSubAuthorityCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetSidSubAuthorityCount,GetSidSubAuthorityCount,0 diff --git a/libc/nt/advapi32/GetThreadWaitChain.S b/libc/nt/advapi32/GetThreadWaitChain.S deleted file mode 100644 index bfbbc06c1..000000000 --- a/libc/nt/advapi32/GetThreadWaitChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetThreadWaitChain,GetThreadWaitChain,1369 diff --git a/libc/nt/advapi32/GetTokenInformation.S b/libc/nt/advapi32/GetTokenInformation.S deleted file mode 100644 index c9d14a8e1..000000000 --- a/libc/nt/advapi32/GetTokenInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetTokenInformation,GetTokenInformation,0 diff --git a/libc/nt/advapi32/GetTraceEnableFlags.S b/libc/nt/advapi32/GetTraceEnableFlags.S deleted file mode 100644 index 4fb5a72fb..000000000 --- a/libc/nt/advapi32/GetTraceEnableFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetTraceEnableFlags,GetTraceEnableFlags,0 diff --git a/libc/nt/advapi32/GetTraceEnableLevel.S b/libc/nt/advapi32/GetTraceEnableLevel.S deleted file mode 100644 index f0610e8fe..000000000 --- a/libc/nt/advapi32/GetTraceEnableLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetTraceEnableLevel,GetTraceEnableLevel,0 diff --git a/libc/nt/advapi32/GetTraceLoggerHandle.S b/libc/nt/advapi32/GetTraceLoggerHandle.S deleted file mode 100644 index 89da63ee6..000000000 --- a/libc/nt/advapi32/GetTraceLoggerHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetTraceLoggerHandle,GetTraceLoggerHandle,0 diff --git a/libc/nt/advapi32/GetTrusteeFormW.S b/libc/nt/advapi32/GetTrusteeFormW.S deleted file mode 100644 index a63ea0315..000000000 --- a/libc/nt/advapi32/GetTrusteeFormW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetTrusteeFormW,GetTrusteeFormW,1375 diff --git a/libc/nt/advapi32/GetTrusteeNameW.S b/libc/nt/advapi32/GetTrusteeNameW.S deleted file mode 100644 index a78fb2edd..000000000 --- a/libc/nt/advapi32/GetTrusteeNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetTrusteeNameW,GetTrusteeNameW,1377 diff --git a/libc/nt/advapi32/GetTrusteeTypeW.S b/libc/nt/advapi32/GetTrusteeTypeW.S deleted file mode 100644 index c1a425e11..000000000 --- a/libc/nt/advapi32/GetTrusteeTypeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetTrusteeTypeW,GetTrusteeTypeW,1379 diff --git a/libc/nt/advapi32/GetUserNameW.S b/libc/nt/advapi32/GetUserNameW.S index 58358f9e5..e50fac47e 100644 --- a/libc/nt/advapi32/GetUserNameW.S +++ b/libc/nt/advapi32/GetUserNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_GetUserNameW,GetUserNameW,1381 +.imp advapi32,__imp_GetUserNameW,GetUserNameW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/GetWindowsAccountDomainSid.S b/libc/nt/advapi32/GetWindowsAccountDomainSid.S deleted file mode 100644 index 0554c2ddb..000000000 --- a/libc/nt/advapi32/GetWindowsAccountDomainSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_GetWindowsAccountDomainSid,GetWindowsAccountDomainSid,0 diff --git a/libc/nt/advapi32/ImpersonateAnonymousToken.S b/libc/nt/advapi32/ImpersonateAnonymousToken.S deleted file mode 100644 index dba7b0d6d..000000000 --- a/libc/nt/advapi32/ImpersonateAnonymousToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ImpersonateAnonymousToken,ImpersonateAnonymousToken,0 diff --git a/libc/nt/advapi32/ImpersonateLoggedOnUser.S b/libc/nt/advapi32/ImpersonateLoggedOnUser.S deleted file mode 100644 index 6b18828b0..000000000 --- a/libc/nt/advapi32/ImpersonateLoggedOnUser.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ImpersonateLoggedOnUser,ImpersonateLoggedOnUser,0 diff --git a/libc/nt/advapi32/ImpersonateNamedPipeClient.S b/libc/nt/advapi32/ImpersonateNamedPipeClient.S deleted file mode 100644 index 5f45e79d8..000000000 --- a/libc/nt/advapi32/ImpersonateNamedPipeClient.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ImpersonateNamedPipeClient,ImpersonateNamedPipeClient,0 diff --git a/libc/nt/advapi32/ImpersonateSelf.S b/libc/nt/advapi32/ImpersonateSelf.S index bc4098722..7cbbf1480 100644 --- a/libc/nt/advapi32/ImpersonateSelf.S +++ b/libc/nt/advapi32/ImpersonateSelf.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_ImpersonateSelf,ImpersonateSelf,0 +.imp advapi32,__imp_ImpersonateSelf,ImpersonateSelf .text.windows .ftrace1 diff --git a/libc/nt/advapi32/InitializeAcl.S b/libc/nt/advapi32/InitializeAcl.S deleted file mode 100644 index 8a548653d..000000000 --- a/libc/nt/advapi32/InitializeAcl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_InitializeAcl,InitializeAcl,0 diff --git a/libc/nt/advapi32/InitializeSecurityDescriptor.S b/libc/nt/advapi32/InitializeSecurityDescriptor.S deleted file mode 100644 index 206c2a2e2..000000000 --- a/libc/nt/advapi32/InitializeSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_InitializeSecurityDescriptor,InitializeSecurityDescriptor,0 diff --git a/libc/nt/advapi32/InitializeSid.S b/libc/nt/advapi32/InitializeSid.S deleted file mode 100644 index b3a9480e9..000000000 --- a/libc/nt/advapi32/InitializeSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_InitializeSid,InitializeSid,0 diff --git a/libc/nt/advapi32/InitiateShutdownW.S b/libc/nt/advapi32/InitiateShutdownW.S index 347de183b..29bca0ac6 100644 --- a/libc/nt/advapi32/InitiateShutdownW.S +++ b/libc/nt/advapi32/InitiateShutdownW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_InitiateShutdownW,InitiateShutdownW,1403 +.imp advapi32,__imp_InitiateShutdownW,InitiateShutdownW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/InitiateSystemShutdownExW.S b/libc/nt/advapi32/InitiateSystemShutdownExW.S deleted file mode 100644 index de34e02c5..000000000 --- a/libc/nt/advapi32/InitiateSystemShutdownExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_InitiateSystemShutdownExW,InitiateSystemShutdownExW,1406 diff --git a/libc/nt/advapi32/InitiateSystemShutdownW.S b/libc/nt/advapi32/InitiateSystemShutdownW.S deleted file mode 100644 index d47a0a6e4..000000000 --- a/libc/nt/advapi32/InitiateSystemShutdownW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_InitiateSystemShutdownW,InitiateSystemShutdownW,1407 diff --git a/libc/nt/advapi32/InstallApplication.S b/libc/nt/advapi32/InstallApplication.S deleted file mode 100644 index ae5804182..000000000 --- a/libc/nt/advapi32/InstallApplication.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_InstallApplication,InstallApplication,1408 diff --git a/libc/nt/advapi32/IsTextUnicode.S b/libc/nt/advapi32/IsTextUnicode.S deleted file mode 100644 index e1120336f..000000000 --- a/libc/nt/advapi32/IsTextUnicode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_IsTextUnicode,IsTextUnicode,1409 diff --git a/libc/nt/advapi32/IsTokenRestricted.S b/libc/nt/advapi32/IsTokenRestricted.S deleted file mode 100644 index c27f9c622..000000000 --- a/libc/nt/advapi32/IsTokenRestricted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_IsTokenRestricted,IsTokenRestricted,0 diff --git a/libc/nt/advapi32/IsValidAcl.S b/libc/nt/advapi32/IsValidAcl.S deleted file mode 100644 index 53c570443..000000000 --- a/libc/nt/advapi32/IsValidAcl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_IsValidAcl,IsValidAcl,0 diff --git a/libc/nt/advapi32/IsValidSecurityDescriptor.S b/libc/nt/advapi32/IsValidSecurityDescriptor.S deleted file mode 100644 index 28063184c..000000000 --- a/libc/nt/advapi32/IsValidSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_IsValidSecurityDescriptor,IsValidSecurityDescriptor,0 diff --git a/libc/nt/advapi32/IsValidSid.S b/libc/nt/advapi32/IsValidSid.S deleted file mode 100644 index c08c6456c..000000000 --- a/libc/nt/advapi32/IsValidSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_IsValidSid,IsValidSid,0 diff --git a/libc/nt/advapi32/IsWellKnownSid.S b/libc/nt/advapi32/IsWellKnownSid.S deleted file mode 100644 index 33bbe3230..000000000 --- a/libc/nt/advapi32/IsWellKnownSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_IsWellKnownSid,IsWellKnownSid,0 diff --git a/libc/nt/advapi32/LockServiceDatabase.S b/libc/nt/advapi32/LockServiceDatabase.S deleted file mode 100644 index 063efbd39..000000000 --- a/libc/nt/advapi32/LockServiceDatabase.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LockServiceDatabase,LockServiceDatabase,1417 diff --git a/libc/nt/advapi32/LogonUserExExW.S b/libc/nt/advapi32/LogonUserExExW.S deleted file mode 100644 index 2fdeb6b69..000000000 --- a/libc/nt/advapi32/LogonUserExExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LogonUserExExW,LogonUserExExW,1420 diff --git a/libc/nt/advapi32/LogonUserExW.S b/libc/nt/advapi32/LogonUserExW.S deleted file mode 100644 index 7cb9e9409..000000000 --- a/libc/nt/advapi32/LogonUserExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LogonUserExW,LogonUserExW,1421 diff --git a/libc/nt/advapi32/LogonUserW.S b/libc/nt/advapi32/LogonUserW.S deleted file mode 100644 index c09f27aa8..000000000 --- a/libc/nt/advapi32/LogonUserW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LogonUserW,LogonUserW,1422 diff --git a/libc/nt/advapi32/LookupAccountNameW.S b/libc/nt/advapi32/LookupAccountNameW.S deleted file mode 100644 index 2fff8e41f..000000000 --- a/libc/nt/advapi32/LookupAccountNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LookupAccountNameW,LookupAccountNameW,1424 diff --git a/libc/nt/advapi32/LookupAccountSidW.S b/libc/nt/advapi32/LookupAccountSidW.S deleted file mode 100644 index 16f41f511..000000000 --- a/libc/nt/advapi32/LookupAccountSidW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LookupAccountSidW,LookupAccountSidW,1426 diff --git a/libc/nt/advapi32/LookupPrivilegeDisplayNameW.S b/libc/nt/advapi32/LookupPrivilegeDisplayNameW.S deleted file mode 100644 index b0fd02de0..000000000 --- a/libc/nt/advapi32/LookupPrivilegeDisplayNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LookupPrivilegeDisplayNameW,LookupPrivilegeDisplayNameW,1428 diff --git a/libc/nt/advapi32/LookupPrivilegeNameW.S b/libc/nt/advapi32/LookupPrivilegeNameW.S deleted file mode 100644 index 76dab8dab..000000000 --- a/libc/nt/advapi32/LookupPrivilegeNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LookupPrivilegeNameW,LookupPrivilegeNameW,1430 diff --git a/libc/nt/advapi32/LookupPrivilegeValueW.S b/libc/nt/advapi32/LookupPrivilegeValueW.S index 8e2b6203d..e1df0b364 100644 --- a/libc/nt/advapi32/LookupPrivilegeValueW.S +++ b/libc/nt/advapi32/LookupPrivilegeValueW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_LookupPrivilegeValueW,LookupPrivilegeValueW,1432 +.imp advapi32,__imp_LookupPrivilegeValueW,LookupPrivilegeValueW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/LookupSecurityDescriptorPartsW.S b/libc/nt/advapi32/LookupSecurityDescriptorPartsW.S deleted file mode 100644 index 3d2fd0420..000000000 --- a/libc/nt/advapi32/LookupSecurityDescriptorPartsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LookupSecurityDescriptorPartsW,LookupSecurityDescriptorPartsW,1434 diff --git a/libc/nt/advapi32/LsaAddAccountRights.S b/libc/nt/advapi32/LsaAddAccountRights.S deleted file mode 100644 index 3fea4b9e2..000000000 --- a/libc/nt/advapi32/LsaAddAccountRights.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaAddAccountRights,LsaAddAccountRights,1435 diff --git a/libc/nt/advapi32/LsaClose.S b/libc/nt/advapi32/LsaClose.S deleted file mode 100644 index ae244ffd6..000000000 --- a/libc/nt/advapi32/LsaClose.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaClose,LsaClose,1438 diff --git a/libc/nt/advapi32/LsaCreateTrustedDomain.S b/libc/nt/advapi32/LsaCreateTrustedDomain.S deleted file mode 100644 index 40c2a8238..000000000 --- a/libc/nt/advapi32/LsaCreateTrustedDomain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaCreateTrustedDomain,LsaCreateTrustedDomain,1441 diff --git a/libc/nt/advapi32/LsaCreateTrustedDomainEx.S b/libc/nt/advapi32/LsaCreateTrustedDomainEx.S deleted file mode 100644 index 4b85616f6..000000000 --- a/libc/nt/advapi32/LsaCreateTrustedDomainEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaCreateTrustedDomainEx,LsaCreateTrustedDomainEx,1442 diff --git a/libc/nt/advapi32/LsaDeleteTrustedDomain.S b/libc/nt/advapi32/LsaDeleteTrustedDomain.S deleted file mode 100644 index 9c15da846..000000000 --- a/libc/nt/advapi32/LsaDeleteTrustedDomain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaDeleteTrustedDomain,LsaDeleteTrustedDomain,1444 diff --git a/libc/nt/advapi32/LsaEnumerateAccountRights.S b/libc/nt/advapi32/LsaEnumerateAccountRights.S deleted file mode 100644 index 695969135..000000000 --- a/libc/nt/advapi32/LsaEnumerateAccountRights.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaEnumerateAccountRights,LsaEnumerateAccountRights,1445 diff --git a/libc/nt/advapi32/LsaEnumerateAccountsWithUserRight.S b/libc/nt/advapi32/LsaEnumerateAccountsWithUserRight.S deleted file mode 100644 index fb2cf9c39..000000000 --- a/libc/nt/advapi32/LsaEnumerateAccountsWithUserRight.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaEnumerateAccountsWithUserRight,LsaEnumerateAccountsWithUserRight,1447 diff --git a/libc/nt/advapi32/LsaEnumerateTrustedDomains.S b/libc/nt/advapi32/LsaEnumerateTrustedDomains.S deleted file mode 100644 index 076591705..000000000 --- a/libc/nt/advapi32/LsaEnumerateTrustedDomains.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaEnumerateTrustedDomains,LsaEnumerateTrustedDomains,1450 diff --git a/libc/nt/advapi32/LsaEnumerateTrustedDomainsEx.S b/libc/nt/advapi32/LsaEnumerateTrustedDomainsEx.S deleted file mode 100644 index 6c6967bd4..000000000 --- a/libc/nt/advapi32/LsaEnumerateTrustedDomainsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaEnumerateTrustedDomainsEx,LsaEnumerateTrustedDomainsEx,1451 diff --git a/libc/nt/advapi32/LsaFreeMemory.S b/libc/nt/advapi32/LsaFreeMemory.S deleted file mode 100644 index adc1129ac..000000000 --- a/libc/nt/advapi32/LsaFreeMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaFreeMemory,LsaFreeMemory,1452 diff --git a/libc/nt/advapi32/LsaLookupNames.S b/libc/nt/advapi32/LsaLookupNames.S deleted file mode 100644 index 99c5e6603..000000000 --- a/libc/nt/advapi32/LsaLookupNames.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaLookupNames,LsaLookupNames,1462 diff --git a/libc/nt/advapi32/LsaLookupNames2.S b/libc/nt/advapi32/LsaLookupNames2.S deleted file mode 100644 index 6fbefdec1..000000000 --- a/libc/nt/advapi32/LsaLookupNames2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaLookupNames2,LsaLookupNames2,1463 diff --git a/libc/nt/advapi32/LsaLookupSids.S b/libc/nt/advapi32/LsaLookupSids.S deleted file mode 100644 index 9c25fd740..000000000 --- a/libc/nt/advapi32/LsaLookupSids.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaLookupSids,LsaLookupSids,1467 diff --git a/libc/nt/advapi32/LsaNtStatusToWinError.S b/libc/nt/advapi32/LsaNtStatusToWinError.S deleted file mode 100644 index 0e5c283db..000000000 --- a/libc/nt/advapi32/LsaNtStatusToWinError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaNtStatusToWinError,LsaNtStatusToWinError,1470 diff --git a/libc/nt/advapi32/LsaOpenPolicy.S b/libc/nt/advapi32/LsaOpenPolicy.S deleted file mode 100644 index 90af02394..000000000 --- a/libc/nt/advapi32/LsaOpenPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaOpenPolicy,LsaOpenPolicy,1472 diff --git a/libc/nt/advapi32/LsaOpenTrustedDomainByName.S b/libc/nt/advapi32/LsaOpenTrustedDomainByName.S deleted file mode 100644 index 9017b99c7..000000000 --- a/libc/nt/advapi32/LsaOpenTrustedDomainByName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaOpenTrustedDomainByName,LsaOpenTrustedDomainByName,1476 diff --git a/libc/nt/advapi32/LsaQueryDomainInformationPolicy.S b/libc/nt/advapi32/LsaQueryDomainInformationPolicy.S deleted file mode 100644 index ce11cddfa..000000000 --- a/libc/nt/advapi32/LsaQueryDomainInformationPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaQueryDomainInformationPolicy,LsaQueryDomainInformationPolicy,1478 diff --git a/libc/nt/advapi32/LsaQueryForestTrustInformation.S b/libc/nt/advapi32/LsaQueryForestTrustInformation.S deleted file mode 100644 index 322246e9c..000000000 --- a/libc/nt/advapi32/LsaQueryForestTrustInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaQueryForestTrustInformation,LsaQueryForestTrustInformation,1479 diff --git a/libc/nt/advapi32/LsaQueryInformationPolicy.S b/libc/nt/advapi32/LsaQueryInformationPolicy.S deleted file mode 100644 index afe2a342b..000000000 --- a/libc/nt/advapi32/LsaQueryInformationPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaQueryInformationPolicy,LsaQueryInformationPolicy,1481 diff --git a/libc/nt/advapi32/LsaQueryTrustedDomainInfo.S b/libc/nt/advapi32/LsaQueryTrustedDomainInfo.S deleted file mode 100644 index 57615c85a..000000000 --- a/libc/nt/advapi32/LsaQueryTrustedDomainInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaQueryTrustedDomainInfo,LsaQueryTrustedDomainInfo,1484 diff --git a/libc/nt/advapi32/LsaQueryTrustedDomainInfoByName.S b/libc/nt/advapi32/LsaQueryTrustedDomainInfoByName.S deleted file mode 100644 index 55ef1f8d6..000000000 --- a/libc/nt/advapi32/LsaQueryTrustedDomainInfoByName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaQueryTrustedDomainInfoByName,LsaQueryTrustedDomainInfoByName,1485 diff --git a/libc/nt/advapi32/LsaRemoveAccountRights.S b/libc/nt/advapi32/LsaRemoveAccountRights.S deleted file mode 100644 index e1bfeaca6..000000000 --- a/libc/nt/advapi32/LsaRemoveAccountRights.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaRemoveAccountRights,LsaRemoveAccountRights,1486 diff --git a/libc/nt/advapi32/LsaRetrievePrivateData.S b/libc/nt/advapi32/LsaRetrievePrivateData.S deleted file mode 100644 index fda43fcba..000000000 --- a/libc/nt/advapi32/LsaRetrievePrivateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaRetrievePrivateData,LsaRetrievePrivateData,1488 diff --git a/libc/nt/advapi32/LsaSetDomainInformationPolicy.S b/libc/nt/advapi32/LsaSetDomainInformationPolicy.S deleted file mode 100644 index 0bbc1c51c..000000000 --- a/libc/nt/advapi32/LsaSetDomainInformationPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaSetDomainInformationPolicy,LsaSetDomainInformationPolicy,1490 diff --git a/libc/nt/advapi32/LsaSetForestTrustInformation.S b/libc/nt/advapi32/LsaSetForestTrustInformation.S deleted file mode 100644 index 3e31d36ac..000000000 --- a/libc/nt/advapi32/LsaSetForestTrustInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaSetForestTrustInformation,LsaSetForestTrustInformation,1491 diff --git a/libc/nt/advapi32/LsaSetInformationPolicy.S b/libc/nt/advapi32/LsaSetInformationPolicy.S deleted file mode 100644 index 2b39cf2eb..000000000 --- a/libc/nt/advapi32/LsaSetInformationPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaSetInformationPolicy,LsaSetInformationPolicy,1492 diff --git a/libc/nt/advapi32/LsaSetTrustedDomainInfoByName.S b/libc/nt/advapi32/LsaSetTrustedDomainInfoByName.S deleted file mode 100644 index c7f7c0bc7..000000000 --- a/libc/nt/advapi32/LsaSetTrustedDomainInfoByName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaSetTrustedDomainInfoByName,LsaSetTrustedDomainInfoByName,1498 diff --git a/libc/nt/advapi32/LsaSetTrustedDomainInformation.S b/libc/nt/advapi32/LsaSetTrustedDomainInformation.S deleted file mode 100644 index a51bf51c4..000000000 --- a/libc/nt/advapi32/LsaSetTrustedDomainInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaSetTrustedDomainInformation,LsaSetTrustedDomainInformation,1499 diff --git a/libc/nt/advapi32/LsaStorePrivateData.S b/libc/nt/advapi32/LsaStorePrivateData.S deleted file mode 100644 index f6db10205..000000000 --- a/libc/nt/advapi32/LsaStorePrivateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_LsaStorePrivateData,LsaStorePrivateData,1500 diff --git a/libc/nt/advapi32/MSChapSrvChangePassword.S b/libc/nt/advapi32/MSChapSrvChangePassword.S deleted file mode 100644 index efdc8537e..000000000 --- a/libc/nt/advapi32/MSChapSrvChangePassword.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_MSChapSrvChangePassword,MSChapSrvChangePassword,1508 diff --git a/libc/nt/advapi32/MSChapSrvChangePassword2.S b/libc/nt/advapi32/MSChapSrvChangePassword2.S deleted file mode 100644 index 8845303b9..000000000 --- a/libc/nt/advapi32/MSChapSrvChangePassword2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_MSChapSrvChangePassword2,MSChapSrvChangePassword2,1509 diff --git a/libc/nt/advapi32/MakeAbsoluteSD.S b/libc/nt/advapi32/MakeAbsoluteSD.S deleted file mode 100644 index 827562406..000000000 --- a/libc/nt/advapi32/MakeAbsoluteSD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_MakeAbsoluteSD,MakeAbsoluteSD,0 diff --git a/libc/nt/advapi32/MakeSelfRelativeSD.S b/libc/nt/advapi32/MakeSelfRelativeSD.S deleted file mode 100644 index a7170abd0..000000000 --- a/libc/nt/advapi32/MakeSelfRelativeSD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_MakeSelfRelativeSD,MakeSelfRelativeSD,0 diff --git a/libc/nt/advapi32/MapGenericMask.S b/libc/nt/advapi32/MapGenericMask.S index 331ba0864..4bb072a1a 100644 --- a/libc/nt/advapi32/MapGenericMask.S +++ b/libc/nt/advapi32/MapGenericMask.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_MapGenericMask,MapGenericMask,0 +.imp advapi32,__imp_MapGenericMask,MapGenericMask .text.windows .ftrace1 diff --git a/libc/nt/advapi32/NotifyBootConfigStatus.S b/libc/nt/advapi32/NotifyBootConfigStatus.S deleted file mode 100644 index f8a0b3062..000000000 --- a/libc/nt/advapi32/NotifyBootConfigStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_NotifyBootConfigStatus,NotifyBootConfigStatus,1514 diff --git a/libc/nt/advapi32/NotifyChangeEventLog.S b/libc/nt/advapi32/NotifyChangeEventLog.S deleted file mode 100644 index 32ee0c5c9..000000000 --- a/libc/nt/advapi32/NotifyChangeEventLog.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_NotifyChangeEventLog,NotifyChangeEventLog,1515 diff --git a/libc/nt/advapi32/NotifyServiceStatusChangeW.S b/libc/nt/advapi32/NotifyServiceStatusChangeW.S deleted file mode 100644 index ae2ac1aca..000000000 --- a/libc/nt/advapi32/NotifyServiceStatusChangeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_NotifyServiceStatusChangeW,NotifyServiceStatusChangeW,1518 diff --git a/libc/nt/advapi32/ObjectCloseAuditAlarmW.S b/libc/nt/advapi32/ObjectCloseAuditAlarmW.S deleted file mode 100644 index f93218b01..000000000 --- a/libc/nt/advapi32/ObjectCloseAuditAlarmW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ObjectCloseAuditAlarmW,ObjectCloseAuditAlarmW,0 diff --git a/libc/nt/advapi32/ObjectDeleteAuditAlarmW.S b/libc/nt/advapi32/ObjectDeleteAuditAlarmW.S deleted file mode 100644 index 9ef9ccf28..000000000 --- a/libc/nt/advapi32/ObjectDeleteAuditAlarmW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ObjectDeleteAuditAlarmW,ObjectDeleteAuditAlarmW,0 diff --git a/libc/nt/advapi32/ObjectOpenAuditAlarmW.S b/libc/nt/advapi32/ObjectOpenAuditAlarmW.S deleted file mode 100644 index 11ec824f3..000000000 --- a/libc/nt/advapi32/ObjectOpenAuditAlarmW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ObjectOpenAuditAlarmW,ObjectOpenAuditAlarmW,0 diff --git a/libc/nt/advapi32/ObjectPrivilegeAuditAlarmW.S b/libc/nt/advapi32/ObjectPrivilegeAuditAlarmW.S deleted file mode 100644 index 7bf975177..000000000 --- a/libc/nt/advapi32/ObjectPrivilegeAuditAlarmW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ObjectPrivilegeAuditAlarmW,ObjectPrivilegeAuditAlarmW,0 diff --git a/libc/nt/advapi32/OpenBackupEventLogW.S b/libc/nt/advapi32/OpenBackupEventLogW.S deleted file mode 100644 index 2170eeb60..000000000 --- a/libc/nt/advapi32/OpenBackupEventLogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenBackupEventLogW,OpenBackupEventLogW,1529 diff --git a/libc/nt/advapi32/OpenEncryptedFileRawW.S b/libc/nt/advapi32/OpenEncryptedFileRawW.S deleted file mode 100644 index 15687ee16..000000000 --- a/libc/nt/advapi32/OpenEncryptedFileRawW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenEncryptedFileRawW,OpenEncryptedFileRawW,1531 diff --git a/libc/nt/advapi32/OpenEventLogW.S b/libc/nt/advapi32/OpenEventLogW.S deleted file mode 100644 index d0ee2724f..000000000 --- a/libc/nt/advapi32/OpenEventLogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenEventLogW,OpenEventLogW,1533 diff --git a/libc/nt/advapi32/OpenProcessToken.S b/libc/nt/advapi32/OpenProcessToken.S index e2ad7cd84..704b22ad1 100644 --- a/libc/nt/advapi32/OpenProcessToken.S +++ b/libc/nt/advapi32/OpenProcessToken.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenProcessToken,OpenProcessToken,0 +.imp advapi32,__imp_OpenProcessToken,OpenProcessToken .text.windows .ftrace1 diff --git a/libc/nt/advapi32/OpenSCManagerW.S b/libc/nt/advapi32/OpenSCManagerW.S deleted file mode 100644 index 85b85ced3..000000000 --- a/libc/nt/advapi32/OpenSCManagerW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenSCManagerW,OpenSCManagerW,1536 diff --git a/libc/nt/advapi32/OpenServiceW.S b/libc/nt/advapi32/OpenServiceW.S deleted file mode 100644 index b14bb0380..000000000 --- a/libc/nt/advapi32/OpenServiceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenServiceW,OpenServiceW,1538 diff --git a/libc/nt/advapi32/OpenThreadToken.S b/libc/nt/advapi32/OpenThreadToken.S index cc600a7e2..b4582ccb2 100644 --- a/libc/nt/advapi32/OpenThreadToken.S +++ b/libc/nt/advapi32/OpenThreadToken.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenThreadToken,OpenThreadToken,0 +.imp advapi32,__imp_OpenThreadToken,OpenThreadToken .text.windows .ftrace1 diff --git a/libc/nt/advapi32/OpenThreadWaitChainSession.S b/libc/nt/advapi32/OpenThreadWaitChainSession.S deleted file mode 100644 index 20e99f47b..000000000 --- a/libc/nt/advapi32/OpenThreadWaitChainSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenThreadWaitChainSession,OpenThreadWaitChainSession,1540 diff --git a/libc/nt/advapi32/OpenTraceW.S b/libc/nt/advapi32/OpenTraceW.S deleted file mode 100644 index c183ef5ba..000000000 --- a/libc/nt/advapi32/OpenTraceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_OpenTraceW,OpenTraceW,1542 diff --git a/libc/nt/advapi32/PerfCreateInstance.S b/libc/nt/advapi32/PerfCreateInstance.S deleted file mode 100644 index defb806ca..000000000 --- a/libc/nt/advapi32/PerfCreateInstance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfCreateInstance,PerfCreateInstance,0 diff --git a/libc/nt/advapi32/PerfDecrementULongCounterValue.S b/libc/nt/advapi32/PerfDecrementULongCounterValue.S deleted file mode 100644 index be21465cf..000000000 --- a/libc/nt/advapi32/PerfDecrementULongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfDecrementULongCounterValue,PerfDecrementULongCounterValue,0 diff --git a/libc/nt/advapi32/PerfDecrementULongLongCounterValue.S b/libc/nt/advapi32/PerfDecrementULongLongCounterValue.S deleted file mode 100644 index c3150748b..000000000 --- a/libc/nt/advapi32/PerfDecrementULongLongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfDecrementULongLongCounterValue,PerfDecrementULongLongCounterValue,0 diff --git a/libc/nt/advapi32/PerfDeleteInstance.S b/libc/nt/advapi32/PerfDeleteInstance.S deleted file mode 100644 index 2c0b6f6d6..000000000 --- a/libc/nt/advapi32/PerfDeleteInstance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfDeleteInstance,PerfDeleteInstance,0 diff --git a/libc/nt/advapi32/PerfIncrementULongCounterValue.S b/libc/nt/advapi32/PerfIncrementULongCounterValue.S deleted file mode 100644 index b8ebccf91..000000000 --- a/libc/nt/advapi32/PerfIncrementULongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfIncrementULongCounterValue,PerfIncrementULongCounterValue,0 diff --git a/libc/nt/advapi32/PerfIncrementULongLongCounterValue.S b/libc/nt/advapi32/PerfIncrementULongLongCounterValue.S deleted file mode 100644 index 1b9c87743..000000000 --- a/libc/nt/advapi32/PerfIncrementULongLongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfIncrementULongLongCounterValue,PerfIncrementULongLongCounterValue,0 diff --git a/libc/nt/advapi32/PerfQueryInstance.S b/libc/nt/advapi32/PerfQueryInstance.S deleted file mode 100644 index f5cf3a703..000000000 --- a/libc/nt/advapi32/PerfQueryInstance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfQueryInstance,PerfQueryInstance,0 diff --git a/libc/nt/advapi32/PerfSetCounterRefValue.S b/libc/nt/advapi32/PerfSetCounterRefValue.S deleted file mode 100644 index 1bf371f6b..000000000 --- a/libc/nt/advapi32/PerfSetCounterRefValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfSetCounterRefValue,PerfSetCounterRefValue,0 diff --git a/libc/nt/advapi32/PerfSetCounterSetInfo.S b/libc/nt/advapi32/PerfSetCounterSetInfo.S deleted file mode 100644 index 8cc005d65..000000000 --- a/libc/nt/advapi32/PerfSetCounterSetInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfSetCounterSetInfo,PerfSetCounterSetInfo,0 diff --git a/libc/nt/advapi32/PerfSetULongCounterValue.S b/libc/nt/advapi32/PerfSetULongCounterValue.S deleted file mode 100644 index cd1a68ca9..000000000 --- a/libc/nt/advapi32/PerfSetULongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfSetULongCounterValue,PerfSetULongCounterValue,0 diff --git a/libc/nt/advapi32/PerfSetULongLongCounterValue.S b/libc/nt/advapi32/PerfSetULongLongCounterValue.S deleted file mode 100644 index de75c4264..000000000 --- a/libc/nt/advapi32/PerfSetULongLongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfSetULongLongCounterValue,PerfSetULongLongCounterValue,0 diff --git a/libc/nt/advapi32/PerfStartProvider.S b/libc/nt/advapi32/PerfStartProvider.S deleted file mode 100644 index 4b8eac67d..000000000 --- a/libc/nt/advapi32/PerfStartProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfStartProvider,PerfStartProvider,0 diff --git a/libc/nt/advapi32/PerfStartProviderEx.S b/libc/nt/advapi32/PerfStartProviderEx.S deleted file mode 100644 index 5fd2400b4..000000000 --- a/libc/nt/advapi32/PerfStartProviderEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfStartProviderEx,PerfStartProviderEx,0 diff --git a/libc/nt/advapi32/PerfStopProvider.S b/libc/nt/advapi32/PerfStopProvider.S deleted file mode 100644 index f9632f1ab..000000000 --- a/libc/nt/advapi32/PerfStopProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PerfStopProvider,PerfStopProvider,0 diff --git a/libc/nt/advapi32/PrivilegeCheck.S b/libc/nt/advapi32/PrivilegeCheck.S deleted file mode 100644 index 5cad85360..000000000 --- a/libc/nt/advapi32/PrivilegeCheck.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PrivilegeCheck,PrivilegeCheck,0 diff --git a/libc/nt/advapi32/PrivilegedServiceAuditAlarmW.S b/libc/nt/advapi32/PrivilegedServiceAuditAlarmW.S deleted file mode 100644 index 5199ddfd6..000000000 --- a/libc/nt/advapi32/PrivilegedServiceAuditAlarmW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_PrivilegedServiceAuditAlarmW,PrivilegedServiceAuditAlarmW,0 diff --git a/libc/nt/advapi32/ProcessTrace.S b/libc/nt/advapi32/ProcessTrace.S deleted file mode 100644 index 98cc1287d..000000000 --- a/libc/nt/advapi32/ProcessTrace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ProcessTrace,ProcessTrace,1579 diff --git a/libc/nt/advapi32/QueryAllTracesW.S b/libc/nt/advapi32/QueryAllTracesW.S deleted file mode 100644 index 9fcafbb2e..000000000 --- a/libc/nt/advapi32/QueryAllTracesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryAllTracesW,QueryAllTracesW,1581 diff --git a/libc/nt/advapi32/QueryRecoveryAgentsOnEncryptedFile.S b/libc/nt/advapi32/QueryRecoveryAgentsOnEncryptedFile.S deleted file mode 100644 index c0c864649..000000000 --- a/libc/nt/advapi32/QueryRecoveryAgentsOnEncryptedFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryRecoveryAgentsOnEncryptedFile,QueryRecoveryAgentsOnEncryptedFile,1583 diff --git a/libc/nt/advapi32/QuerySecurityAccessMask.S b/libc/nt/advapi32/QuerySecurityAccessMask.S deleted file mode 100644 index 43edb62dc..000000000 --- a/libc/nt/advapi32/QuerySecurityAccessMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QuerySecurityAccessMask,QuerySecurityAccessMask,0 diff --git a/libc/nt/advapi32/QueryServiceConfig2W.S b/libc/nt/advapi32/QueryServiceConfig2W.S deleted file mode 100644 index 71e2c64e8..000000000 --- a/libc/nt/advapi32/QueryServiceConfig2W.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryServiceConfig2W,QueryServiceConfig2W,1586 diff --git a/libc/nt/advapi32/QueryServiceConfigW.S b/libc/nt/advapi32/QueryServiceConfigW.S deleted file mode 100644 index cec2ec0c0..000000000 --- a/libc/nt/advapi32/QueryServiceConfigW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryServiceConfigW,QueryServiceConfigW,1588 diff --git a/libc/nt/advapi32/QueryServiceLockStatusW.S b/libc/nt/advapi32/QueryServiceLockStatusW.S deleted file mode 100644 index 1a452b97f..000000000 --- a/libc/nt/advapi32/QueryServiceLockStatusW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryServiceLockStatusW,QueryServiceLockStatusW,1591 diff --git a/libc/nt/advapi32/QueryServiceObjectSecurity.S b/libc/nt/advapi32/QueryServiceObjectSecurity.S deleted file mode 100644 index 5804fc252..000000000 --- a/libc/nt/advapi32/QueryServiceObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryServiceObjectSecurity,QueryServiceObjectSecurity,1592 diff --git a/libc/nt/advapi32/QueryServiceStatus.S b/libc/nt/advapi32/QueryServiceStatus.S deleted file mode 100644 index 762b44e6b..000000000 --- a/libc/nt/advapi32/QueryServiceStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryServiceStatus,QueryServiceStatus,1593 diff --git a/libc/nt/advapi32/QueryServiceStatusEx.S b/libc/nt/advapi32/QueryServiceStatusEx.S deleted file mode 100644 index 8e7105626..000000000 --- a/libc/nt/advapi32/QueryServiceStatusEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryServiceStatusEx,QueryServiceStatusEx,1594 diff --git a/libc/nt/advapi32/QueryTraceW.S b/libc/nt/advapi32/QueryTraceW.S deleted file mode 100644 index 403e72b7d..000000000 --- a/libc/nt/advapi32/QueryTraceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryTraceW,QueryTraceW,1597 diff --git a/libc/nt/advapi32/QueryUsersOnEncryptedFile.S b/libc/nt/advapi32/QueryUsersOnEncryptedFile.S deleted file mode 100644 index 960f21f9f..000000000 --- a/libc/nt/advapi32/QueryUsersOnEncryptedFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_QueryUsersOnEncryptedFile,QueryUsersOnEncryptedFile,1600 diff --git a/libc/nt/advapi32/ReadEncryptedFileRaw.S b/libc/nt/advapi32/ReadEncryptedFileRaw.S deleted file mode 100644 index 1068525f5..000000000 --- a/libc/nt/advapi32/ReadEncryptedFileRaw.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ReadEncryptedFileRaw,ReadEncryptedFileRaw,1601 diff --git a/libc/nt/advapi32/ReadEventLogW.S b/libc/nt/advapi32/ReadEventLogW.S deleted file mode 100644 index 483f69bd2..000000000 --- a/libc/nt/advapi32/ReadEventLogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_ReadEventLogW,ReadEventLogW,1603 diff --git a/libc/nt/advapi32/RegCloseKey.S b/libc/nt/advapi32/RegCloseKey.S index 833843138..45d32d8c7 100644 --- a/libc/nt/advapi32/RegCloseKey.S +++ b/libc/nt/advapi32/RegCloseKey.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegCloseKey,RegCloseKey,0 +.imp advapi32,__imp_RegCloseKey,RegCloseKey .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegConnectRegistryW.S b/libc/nt/advapi32/RegConnectRegistryW.S index e22e7174e..ea268f64d 100644 --- a/libc/nt/advapi32/RegConnectRegistryW.S +++ b/libc/nt/advapi32/RegConnectRegistryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegConnectRegistryW,RegConnectRegistryW,1608 +.imp advapi32,__imp_RegConnectRegistryW,RegConnectRegistryW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegCopyTreeW.S b/libc/nt/advapi32/RegCopyTreeW.S deleted file mode 100644 index d21b069a4..000000000 --- a/libc/nt/advapi32/RegCopyTreeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegCopyTreeW,RegCopyTreeW,0 diff --git a/libc/nt/advapi32/RegCreateKeyExW.S b/libc/nt/advapi32/RegCreateKeyExW.S index bff2ca7af..78f90b845 100644 --- a/libc/nt/advapi32/RegCreateKeyExW.S +++ b/libc/nt/advapi32/RegCreateKeyExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegCreateKeyExW,RegCreateKeyExW,0 +.imp advapi32,__imp_RegCreateKeyExW,RegCreateKeyExW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegCreateKeyTransactedW.S b/libc/nt/advapi32/RegCreateKeyTransactedW.S deleted file mode 100644 index 8dba5e5ce..000000000 --- a/libc/nt/advapi32/RegCreateKeyTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegCreateKeyTransactedW,RegCreateKeyTransactedW,1615 diff --git a/libc/nt/advapi32/RegCreateKeyW.S b/libc/nt/advapi32/RegCreateKeyW.S index 06452bdd7..c83abb4f8 100644 --- a/libc/nt/advapi32/RegCreateKeyW.S +++ b/libc/nt/advapi32/RegCreateKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegCreateKeyW,RegCreateKeyW,1616 +.imp advapi32,__imp_RegCreateKeyW,RegCreateKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegDeleteKeyExW.S b/libc/nt/advapi32/RegDeleteKeyExW.S index e330eb947..459ee65fa 100644 --- a/libc/nt/advapi32/RegDeleteKeyExW.S +++ b/libc/nt/advapi32/RegDeleteKeyExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDeleteKeyExW,RegDeleteKeyExW,0 +.imp advapi32,__imp_RegDeleteKeyExW,RegDeleteKeyExW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegDeleteKeyTransactedW.S b/libc/nt/advapi32/RegDeleteKeyTransactedW.S deleted file mode 100644 index 84ff781d6..000000000 --- a/libc/nt/advapi32/RegDeleteKeyTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDeleteKeyTransactedW,RegDeleteKeyTransactedW,1621 diff --git a/libc/nt/advapi32/RegDeleteKeyValueW.S b/libc/nt/advapi32/RegDeleteKeyValueW.S deleted file mode 100644 index e20f38b6d..000000000 --- a/libc/nt/advapi32/RegDeleteKeyValueW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDeleteKeyValueW,RegDeleteKeyValueW,0 diff --git a/libc/nt/advapi32/RegDeleteKeyW.S b/libc/nt/advapi32/RegDeleteKeyW.S index 2c793ecfd..298f0d99a 100644 --- a/libc/nt/advapi32/RegDeleteKeyW.S +++ b/libc/nt/advapi32/RegDeleteKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDeleteKeyW,RegDeleteKeyW,1624 +.imp advapi32,__imp_RegDeleteKeyW,RegDeleteKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegDeleteTreeW.S b/libc/nt/advapi32/RegDeleteTreeW.S index 6b7cdb50f..26684967f 100644 --- a/libc/nt/advapi32/RegDeleteTreeW.S +++ b/libc/nt/advapi32/RegDeleteTreeW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDeleteTreeW,RegDeleteTreeW,0 +.imp advapi32,__imp_RegDeleteTreeW,RegDeleteTreeW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegDeleteValueW.S b/libc/nt/advapi32/RegDeleteValueW.S index 9c71a269e..dd851108e 100644 --- a/libc/nt/advapi32/RegDeleteValueW.S +++ b/libc/nt/advapi32/RegDeleteValueW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDeleteValueW,RegDeleteValueW,0 +.imp advapi32,__imp_RegDeleteValueW,RegDeleteValueW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegDisablePredefinedCache.S b/libc/nt/advapi32/RegDisablePredefinedCache.S index 2c0c348e2..e82ede9cc 100644 --- a/libc/nt/advapi32/RegDisablePredefinedCache.S +++ b/libc/nt/advapi32/RegDisablePredefinedCache.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDisablePredefinedCache,RegDisablePredefinedCache,1629 +.imp advapi32,__imp_RegDisablePredefinedCache,RegDisablePredefinedCache .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegDisablePredefinedCacheEx.S b/libc/nt/advapi32/RegDisablePredefinedCacheEx.S deleted file mode 100644 index 4521fee4c..000000000 --- a/libc/nt/advapi32/RegDisablePredefinedCacheEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDisablePredefinedCacheEx,RegDisablePredefinedCacheEx,0 diff --git a/libc/nt/advapi32/RegDisableReflectionKey.S b/libc/nt/advapi32/RegDisableReflectionKey.S index 9a97da7bb..c4c70f000 100644 --- a/libc/nt/advapi32/RegDisableReflectionKey.S +++ b/libc/nt/advapi32/RegDisableReflectionKey.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegDisableReflectionKey,RegDisableReflectionKey,1631 +.imp advapi32,__imp_RegDisableReflectionKey,RegDisableReflectionKey .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegEnableReflectionKey.S b/libc/nt/advapi32/RegEnableReflectionKey.S index 5701d14b4..97d5fa5b0 100644 --- a/libc/nt/advapi32/RegEnableReflectionKey.S +++ b/libc/nt/advapi32/RegEnableReflectionKey.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegEnableReflectionKey,RegEnableReflectionKey,1632 +.imp advapi32,__imp_RegEnableReflectionKey,RegEnableReflectionKey .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegEnumKeyExW.S b/libc/nt/advapi32/RegEnumKeyExW.S index fd84d105f..eefd94a6e 100644 --- a/libc/nt/advapi32/RegEnumKeyExW.S +++ b/libc/nt/advapi32/RegEnumKeyExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegEnumKeyExW,RegEnumKeyExW,0 +.imp advapi32,__imp_RegEnumKeyExW,RegEnumKeyExW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegEnumKeyW.S b/libc/nt/advapi32/RegEnumKeyW.S index aa7829b21..723cb6ff8 100644 --- a/libc/nt/advapi32/RegEnumKeyW.S +++ b/libc/nt/advapi32/RegEnumKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegEnumKeyW,RegEnumKeyW,1636 +.imp advapi32,__imp_RegEnumKeyW,RegEnumKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegEnumValueW.S b/libc/nt/advapi32/RegEnumValueW.S index 2f65b0d2d..1b98ddf7a 100644 --- a/libc/nt/advapi32/RegEnumValueW.S +++ b/libc/nt/advapi32/RegEnumValueW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegEnumValueW,RegEnumValueW,0 +.imp advapi32,__imp_RegEnumValueW,RegEnumValueW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegFlushKey.S b/libc/nt/advapi32/RegFlushKey.S index 14fe9cd6e..94de55ede 100644 --- a/libc/nt/advapi32/RegFlushKey.S +++ b/libc/nt/advapi32/RegFlushKey.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegFlushKey,RegFlushKey,0 +.imp advapi32,__imp_RegFlushKey,RegFlushKey .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegGetKeySecurity.S b/libc/nt/advapi32/RegGetKeySecurity.S index be5cb79cf..454d16356 100644 --- a/libc/nt/advapi32/RegGetKeySecurity.S +++ b/libc/nt/advapi32/RegGetKeySecurity.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegGetKeySecurity,RegGetKeySecurity,0 +.imp advapi32,__imp_RegGetKeySecurity,RegGetKeySecurity .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegGetValueW.S b/libc/nt/advapi32/RegGetValueW.S index 8b7c9ad21..17a4c3b4a 100644 --- a/libc/nt/advapi32/RegGetValueW.S +++ b/libc/nt/advapi32/RegGetValueW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegGetValueW,RegGetValueW,0 +.imp advapi32,__imp_RegGetValueW,RegGetValueW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegLoadAppKeyW.S b/libc/nt/advapi32/RegLoadAppKeyW.S deleted file mode 100644 index 73cd3c3ee..000000000 --- a/libc/nt/advapi32/RegLoadAppKeyW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegLoadAppKeyW,RegLoadAppKeyW,0 diff --git a/libc/nt/advapi32/RegLoadKeyW.S b/libc/nt/advapi32/RegLoadKeyW.S index 1afffa7c5..d6d4cad08 100644 --- a/libc/nt/advapi32/RegLoadKeyW.S +++ b/libc/nt/advapi32/RegLoadKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegLoadKeyW,RegLoadKeyW,0 +.imp advapi32,__imp_RegLoadKeyW,RegLoadKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegLoadMUIStringW.S b/libc/nt/advapi32/RegLoadMUIStringW.S deleted file mode 100644 index 019cad90f..000000000 --- a/libc/nt/advapi32/RegLoadMUIStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegLoadMUIStringW,RegLoadMUIStringW,0 diff --git a/libc/nt/advapi32/RegNotifyChangeKeyValue.S b/libc/nt/advapi32/RegNotifyChangeKeyValue.S index 612be8974..49bb7c139 100644 --- a/libc/nt/advapi32/RegNotifyChangeKeyValue.S +++ b/libc/nt/advapi32/RegNotifyChangeKeyValue.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegNotifyChangeKeyValue,RegNotifyChangeKeyValue,0 +.imp advapi32,__imp_RegNotifyChangeKeyValue,RegNotifyChangeKeyValue .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegOpenCurrentUser.S b/libc/nt/advapi32/RegOpenCurrentUser.S index 504b8f137..14e14fb52 100644 --- a/libc/nt/advapi32/RegOpenCurrentUser.S +++ b/libc/nt/advapi32/RegOpenCurrentUser.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegOpenCurrentUser,RegOpenCurrentUser,0 +.imp advapi32,__imp_RegOpenCurrentUser,RegOpenCurrentUser .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegOpenKeyExW.S b/libc/nt/advapi32/RegOpenKeyExW.S index 5983c9adf..88a056832 100644 --- a/libc/nt/advapi32/RegOpenKeyExW.S +++ b/libc/nt/advapi32/RegOpenKeyExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegOpenKeyExW,RegOpenKeyExW,0 +.imp advapi32,__imp_RegOpenKeyExW,RegOpenKeyExW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegOpenKeyTransactedW.S b/libc/nt/advapi32/RegOpenKeyTransactedW.S deleted file mode 100644 index 39d013aba..000000000 --- a/libc/nt/advapi32/RegOpenKeyTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegOpenKeyTransactedW,RegOpenKeyTransactedW,1655 diff --git a/libc/nt/advapi32/RegOpenKeyW.S b/libc/nt/advapi32/RegOpenKeyW.S deleted file mode 100644 index 09ff9256d..000000000 --- a/libc/nt/advapi32/RegOpenKeyW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegOpenKeyW,RegOpenKeyW,1656 diff --git a/libc/nt/advapi32/RegOpenUserClassesRoot.S b/libc/nt/advapi32/RegOpenUserClassesRoot.S index d814c90c2..1d347f946 100644 --- a/libc/nt/advapi32/RegOpenUserClassesRoot.S +++ b/libc/nt/advapi32/RegOpenUserClassesRoot.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegOpenUserClassesRoot,RegOpenUserClassesRoot,0 +.imp advapi32,__imp_RegOpenUserClassesRoot,RegOpenUserClassesRoot .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegOverridePredefKey.S b/libc/nt/advapi32/RegOverridePredefKey.S index bbf12ff66..bfd4e308c 100644 --- a/libc/nt/advapi32/RegOverridePredefKey.S +++ b/libc/nt/advapi32/RegOverridePredefKey.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegOverridePredefKey,RegOverridePredefKey,1658 +.imp advapi32,__imp_RegOverridePredefKey,RegOverridePredefKey .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegQueryInfoKeyW.S b/libc/nt/advapi32/RegQueryInfoKeyW.S index 75bca585b..ea8bb226d 100644 --- a/libc/nt/advapi32/RegQueryInfoKeyW.S +++ b/libc/nt/advapi32/RegQueryInfoKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegQueryInfoKeyW,RegQueryInfoKeyW,0 +.imp advapi32,__imp_RegQueryInfoKeyW,RegQueryInfoKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegQueryMultipleValuesW.S b/libc/nt/advapi32/RegQueryMultipleValuesW.S index 255785cf1..0bd9a2d73 100644 --- a/libc/nt/advapi32/RegQueryMultipleValuesW.S +++ b/libc/nt/advapi32/RegQueryMultipleValuesW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegQueryMultipleValuesW,RegQueryMultipleValuesW,0 +.imp advapi32,__imp_RegQueryMultipleValuesW,RegQueryMultipleValuesW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegQueryReflectionKey.S b/libc/nt/advapi32/RegQueryReflectionKey.S index 1d683e4aa..3d1d27fc9 100644 --- a/libc/nt/advapi32/RegQueryReflectionKey.S +++ b/libc/nt/advapi32/RegQueryReflectionKey.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegQueryReflectionKey,RegQueryReflectionKey,1663 +.imp advapi32,__imp_RegQueryReflectionKey,RegQueryReflectionKey .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegQueryValueExW.S b/libc/nt/advapi32/RegQueryValueExW.S index 451b1effb..92bbde441 100644 --- a/libc/nt/advapi32/RegQueryValueExW.S +++ b/libc/nt/advapi32/RegQueryValueExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegQueryValueExW,RegQueryValueExW,0 +.imp advapi32,__imp_RegQueryValueExW,RegQueryValueExW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegQueryValueW.S b/libc/nt/advapi32/RegQueryValueW.S index 42ba66856..c02b35efd 100644 --- a/libc/nt/advapi32/RegQueryValueW.S +++ b/libc/nt/advapi32/RegQueryValueW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegQueryValueW,RegQueryValueW,1667 +.imp advapi32,__imp_RegQueryValueW,RegQueryValueW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegReplaceKeyW.S b/libc/nt/advapi32/RegReplaceKeyW.S index f4e754ac1..ba2b42108 100644 --- a/libc/nt/advapi32/RegReplaceKeyW.S +++ b/libc/nt/advapi32/RegReplaceKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegReplaceKeyW,RegReplaceKeyW,1670 +.imp advapi32,__imp_RegReplaceKeyW,RegReplaceKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegRestoreKeyW.S b/libc/nt/advapi32/RegRestoreKeyW.S index 9f63655af..133da1ea8 100644 --- a/libc/nt/advapi32/RegRestoreKeyW.S +++ b/libc/nt/advapi32/RegRestoreKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegRestoreKeyW,RegRestoreKeyW,0 +.imp advapi32,__imp_RegRestoreKeyW,RegRestoreKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegSaveKeyExW.S b/libc/nt/advapi32/RegSaveKeyExW.S deleted file mode 100644 index f8b20f591..000000000 --- a/libc/nt/advapi32/RegSaveKeyExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegSaveKeyExW,RegSaveKeyExW,0 diff --git a/libc/nt/advapi32/RegSaveKeyW.S b/libc/nt/advapi32/RegSaveKeyW.S index cfa78e29e..682946553 100644 --- a/libc/nt/advapi32/RegSaveKeyW.S +++ b/libc/nt/advapi32/RegSaveKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegSaveKeyW,RegSaveKeyW,1676 +.imp advapi32,__imp_RegSaveKeyW,RegSaveKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegSetKeySecurity.S b/libc/nt/advapi32/RegSetKeySecurity.S index baa9031c4..49a0a5879 100644 --- a/libc/nt/advapi32/RegSetKeySecurity.S +++ b/libc/nt/advapi32/RegSetKeySecurity.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegSetKeySecurity,RegSetKeySecurity,0 +.imp advapi32,__imp_RegSetKeySecurity,RegSetKeySecurity .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegSetKeyValueW.S b/libc/nt/advapi32/RegSetKeyValueW.S deleted file mode 100644 index 0750cc895..000000000 --- a/libc/nt/advapi32/RegSetKeyValueW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegSetKeyValueW,RegSetKeyValueW,0 diff --git a/libc/nt/advapi32/RegSetValueExW.S b/libc/nt/advapi32/RegSetValueExW.S index 374bf432c..f4f213cd0 100644 --- a/libc/nt/advapi32/RegSetValueExW.S +++ b/libc/nt/advapi32/RegSetValueExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegSetValueExW,RegSetValueExW,0 +.imp advapi32,__imp_RegSetValueExW,RegSetValueExW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegSetValueW.S b/libc/nt/advapi32/RegSetValueW.S index 349e0693d..ea8bbfab9 100644 --- a/libc/nt/advapi32/RegSetValueW.S +++ b/libc/nt/advapi32/RegSetValueW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegSetValueW,RegSetValueW,1683 +.imp advapi32,__imp_RegSetValueW,RegSetValueW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegUnLoadKeyW.S b/libc/nt/advapi32/RegUnLoadKeyW.S index f4623cea3..b938db468 100644 --- a/libc/nt/advapi32/RegUnLoadKeyW.S +++ b/libc/nt/advapi32/RegUnLoadKeyW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegUnLoadKeyW,RegUnLoadKeyW,0 +.imp advapi32,__imp_RegUnLoadKeyW,RegUnLoadKeyW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegisterEventSourceW.S b/libc/nt/advapi32/RegisterEventSourceW.S index 070be5fd4..83a05098b 100644 --- a/libc/nt/advapi32/RegisterEventSourceW.S +++ b/libc/nt/advapi32/RegisterEventSourceW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RegisterEventSourceW,RegisterEventSourceW,1687 +.imp advapi32,__imp_RegisterEventSourceW,RegisterEventSourceW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RegisterServiceCtrlHandlerExW.S b/libc/nt/advapi32/RegisterServiceCtrlHandlerExW.S deleted file mode 100644 index 41542b0c1..000000000 --- a/libc/nt/advapi32/RegisterServiceCtrlHandlerExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegisterServiceCtrlHandlerExW,RegisterServiceCtrlHandlerExW,1691 diff --git a/libc/nt/advapi32/RegisterServiceCtrlHandlerW.S b/libc/nt/advapi32/RegisterServiceCtrlHandlerW.S deleted file mode 100644 index c6a645cb2..000000000 --- a/libc/nt/advapi32/RegisterServiceCtrlHandlerW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegisterServiceCtrlHandlerW,RegisterServiceCtrlHandlerW,1692 diff --git a/libc/nt/advapi32/RegisterTraceGuidsW.S b/libc/nt/advapi32/RegisterTraceGuidsW.S deleted file mode 100644 index 2ebef0bca..000000000 --- a/libc/nt/advapi32/RegisterTraceGuidsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegisterTraceGuidsW,RegisterTraceGuidsW,0 diff --git a/libc/nt/advapi32/RegisterWaitChainCOMCallback.S b/libc/nt/advapi32/RegisterWaitChainCOMCallback.S deleted file mode 100644 index 3d0b1fec0..000000000 --- a/libc/nt/advapi32/RegisterWaitChainCOMCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RegisterWaitChainCOMCallback,RegisterWaitChainCOMCallback,1695 diff --git a/libc/nt/advapi32/RemoveTraceCallback.S b/libc/nt/advapi32/RemoveTraceCallback.S deleted file mode 100644 index 0b665ecde..000000000 --- a/libc/nt/advapi32/RemoveTraceCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RemoveTraceCallback,RemoveTraceCallback,0 diff --git a/libc/nt/advapi32/RemoveUsersFromEncryptedFile.S b/libc/nt/advapi32/RemoveUsersFromEncryptedFile.S deleted file mode 100644 index e190fa4e4..000000000 --- a/libc/nt/advapi32/RemoveUsersFromEncryptedFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_RemoveUsersFromEncryptedFile,RemoveUsersFromEncryptedFile,1703 diff --git a/libc/nt/advapi32/ReportEventA.S b/libc/nt/advapi32/ReportEventA.S index 562392475..37ab47236 100644 --- a/libc/nt/advapi32/ReportEventA.S +++ b/libc/nt/advapi32/ReportEventA.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_ReportEventA,ReportEventA,0 +.imp advapi32,__imp_ReportEventA,ReportEventA .text.windows .ftrace1 diff --git a/libc/nt/advapi32/ReportEventW.S b/libc/nt/advapi32/ReportEventW.S index 17dc94003..794170e2c 100644 --- a/libc/nt/advapi32/ReportEventW.S +++ b/libc/nt/advapi32/ReportEventW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_ReportEventW,ReportEventW,0 +.imp advapi32,__imp_ReportEventW,ReportEventW .text.windows .ftrace1 diff --git a/libc/nt/advapi32/RevertToSelf.S b/libc/nt/advapi32/RevertToSelf.S index e90ff0f3e..4ecb5e741 100644 --- a/libc/nt/advapi32/RevertToSelf.S +++ b/libc/nt/advapi32/RevertToSelf.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_RevertToSelf,RevertToSelf,0 +.imp advapi32,__imp_RevertToSelf,RevertToSelf .text.windows .ftrace1 diff --git a/libc/nt/advapi32/SaferCloseLevel.S b/libc/nt/advapi32/SaferCloseLevel.S deleted file mode 100644 index ca75e7038..000000000 --- a/libc/nt/advapi32/SaferCloseLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SaferCloseLevel,SaferCloseLevel,1708 diff --git a/libc/nt/advapi32/SaferComputeTokenFromLevel.S b/libc/nt/advapi32/SaferComputeTokenFromLevel.S deleted file mode 100644 index ea2c1cf65..000000000 --- a/libc/nt/advapi32/SaferComputeTokenFromLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SaferComputeTokenFromLevel,SaferComputeTokenFromLevel,1709 diff --git a/libc/nt/advapi32/SaferCreateLevel.S b/libc/nt/advapi32/SaferCreateLevel.S deleted file mode 100644 index bbc42d485..000000000 --- a/libc/nt/advapi32/SaferCreateLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SaferCreateLevel,SaferCreateLevel,1710 diff --git a/libc/nt/advapi32/SaferGetLevelInformation.S b/libc/nt/advapi32/SaferGetLevelInformation.S deleted file mode 100644 index 81785b136..000000000 --- a/libc/nt/advapi32/SaferGetLevelInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SaferGetLevelInformation,SaferGetLevelInformation,1711 diff --git a/libc/nt/advapi32/SaferGetPolicyInformation.S b/libc/nt/advapi32/SaferGetPolicyInformation.S deleted file mode 100644 index 3dea5b206..000000000 --- a/libc/nt/advapi32/SaferGetPolicyInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SaferGetPolicyInformation,SaferGetPolicyInformation,1712 diff --git a/libc/nt/advapi32/SaferIdentifyLevel.S b/libc/nt/advapi32/SaferIdentifyLevel.S deleted file mode 100644 index 29580b3d8..000000000 --- a/libc/nt/advapi32/SaferIdentifyLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SaferIdentifyLevel,SaferIdentifyLevel,1713 diff --git a/libc/nt/advapi32/SaferRecordEventLogEntry.S b/libc/nt/advapi32/SaferRecordEventLogEntry.S deleted file mode 100644 index b413e690e..000000000 --- a/libc/nt/advapi32/SaferRecordEventLogEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SaferRecordEventLogEntry,SaferRecordEventLogEntry,1714 diff --git a/libc/nt/advapi32/SaferiIsExecutableFileType.S b/libc/nt/advapi32/SaferiIsExecutableFileType.S deleted file mode 100644 index 27f48546f..000000000 --- a/libc/nt/advapi32/SaferiIsExecutableFileType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SaferiIsExecutableFileType,SaferiIsExecutableFileType,1720 diff --git a/libc/nt/advapi32/SetAclInformation.S b/libc/nt/advapi32/SetAclInformation.S deleted file mode 100644 index 7361ef5d9..000000000 --- a/libc/nt/advapi32/SetAclInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetAclInformation,SetAclInformation,0 diff --git a/libc/nt/advapi32/SetEntriesInAclW.S b/libc/nt/advapi32/SetEntriesInAclW.S deleted file mode 100644 index 7b94de9a2..000000000 --- a/libc/nt/advapi32/SetEntriesInAclW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetEntriesInAclW,SetEntriesInAclW,1729 diff --git a/libc/nt/advapi32/SetFileSecurityW.S b/libc/nt/advapi32/SetFileSecurityW.S deleted file mode 100644 index 346fb34db..000000000 --- a/libc/nt/advapi32/SetFileSecurityW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetFileSecurityW,SetFileSecurityW,0 diff --git a/libc/nt/advapi32/SetKernelObjectSecurity.S b/libc/nt/advapi32/SetKernelObjectSecurity.S deleted file mode 100644 index cd59ec534..000000000 --- a/libc/nt/advapi32/SetKernelObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetKernelObjectSecurity,SetKernelObjectSecurity,0 diff --git a/libc/nt/advapi32/SetNamedSecurityInfoW.S b/libc/nt/advapi32/SetNamedSecurityInfoW.S deleted file mode 100644 index 5e1c26310..000000000 --- a/libc/nt/advapi32/SetNamedSecurityInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetNamedSecurityInfoW,SetNamedSecurityInfoW,1740 diff --git a/libc/nt/advapi32/SetPrivateObjectSecurity.S b/libc/nt/advapi32/SetPrivateObjectSecurity.S deleted file mode 100644 index d23964ac5..000000000 --- a/libc/nt/advapi32/SetPrivateObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetPrivateObjectSecurity,SetPrivateObjectSecurity,0 diff --git a/libc/nt/advapi32/SetPrivateObjectSecurityEx.S b/libc/nt/advapi32/SetPrivateObjectSecurityEx.S deleted file mode 100644 index f8846236e..000000000 --- a/libc/nt/advapi32/SetPrivateObjectSecurityEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetPrivateObjectSecurityEx,SetPrivateObjectSecurityEx,0 diff --git a/libc/nt/advapi32/SetSecurityAccessMask.S b/libc/nt/advapi32/SetSecurityAccessMask.S deleted file mode 100644 index b96d30a62..000000000 --- a/libc/nt/advapi32/SetSecurityAccessMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetSecurityAccessMask,SetSecurityAccessMask,0 diff --git a/libc/nt/advapi32/SetSecurityDescriptorControl.S b/libc/nt/advapi32/SetSecurityDescriptorControl.S deleted file mode 100644 index 7f223f213..000000000 --- a/libc/nt/advapi32/SetSecurityDescriptorControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetSecurityDescriptorControl,SetSecurityDescriptorControl,0 diff --git a/libc/nt/advapi32/SetSecurityDescriptorDacl.S b/libc/nt/advapi32/SetSecurityDescriptorDacl.S deleted file mode 100644 index 665cf995b..000000000 --- a/libc/nt/advapi32/SetSecurityDescriptorDacl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetSecurityDescriptorDacl,SetSecurityDescriptorDacl,0 diff --git a/libc/nt/advapi32/SetSecurityDescriptorGroup.S b/libc/nt/advapi32/SetSecurityDescriptorGroup.S deleted file mode 100644 index 44fc0d93a..000000000 --- a/libc/nt/advapi32/SetSecurityDescriptorGroup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetSecurityDescriptorGroup,SetSecurityDescriptorGroup,0 diff --git a/libc/nt/advapi32/SetSecurityDescriptorOwner.S b/libc/nt/advapi32/SetSecurityDescriptorOwner.S deleted file mode 100644 index c4c23f1bb..000000000 --- a/libc/nt/advapi32/SetSecurityDescriptorOwner.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetSecurityDescriptorOwner,SetSecurityDescriptorOwner,0 diff --git a/libc/nt/advapi32/SetSecurityDescriptorRMControl.S b/libc/nt/advapi32/SetSecurityDescriptorRMControl.S deleted file mode 100644 index 538b65335..000000000 --- a/libc/nt/advapi32/SetSecurityDescriptorRMControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetSecurityDescriptorRMControl,SetSecurityDescriptorRMControl,0 diff --git a/libc/nt/advapi32/SetSecurityDescriptorSacl.S b/libc/nt/advapi32/SetSecurityDescriptorSacl.S deleted file mode 100644 index cd8c5a042..000000000 --- a/libc/nt/advapi32/SetSecurityDescriptorSacl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetSecurityDescriptorSacl,SetSecurityDescriptorSacl,0 diff --git a/libc/nt/advapi32/SetSecurityInfo.S b/libc/nt/advapi32/SetSecurityInfo.S deleted file mode 100644 index 93bb3a182..000000000 --- a/libc/nt/advapi32/SetSecurityInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetSecurityInfo,SetSecurityInfo,1750 diff --git a/libc/nt/advapi32/SetServiceBits.S b/libc/nt/advapi32/SetServiceBits.S deleted file mode 100644 index 193dd0386..000000000 --- a/libc/nt/advapi32/SetServiceBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetServiceBits,SetServiceBits,1753 diff --git a/libc/nt/advapi32/SetServiceObjectSecurity.S b/libc/nt/advapi32/SetServiceObjectSecurity.S deleted file mode 100644 index 2a4a1c430..000000000 --- a/libc/nt/advapi32/SetServiceObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetServiceObjectSecurity,SetServiceObjectSecurity,1754 diff --git a/libc/nt/advapi32/SetServiceStatus.S b/libc/nt/advapi32/SetServiceStatus.S deleted file mode 100644 index c8204fe1a..000000000 --- a/libc/nt/advapi32/SetServiceStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetServiceStatus,SetServiceStatus,1755 diff --git a/libc/nt/advapi32/SetThreadToken.S b/libc/nt/advapi32/SetThreadToken.S deleted file mode 100644 index 776fc5e23..000000000 --- a/libc/nt/advapi32/SetThreadToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetThreadToken,SetThreadToken,0 diff --git a/libc/nt/advapi32/SetTokenInformation.S b/libc/nt/advapi32/SetTokenInformation.S deleted file mode 100644 index 51283fa1c..000000000 --- a/libc/nt/advapi32/SetTokenInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetTokenInformation,SetTokenInformation,0 diff --git a/libc/nt/advapi32/SetTraceCallback.S b/libc/nt/advapi32/SetTraceCallback.S deleted file mode 100644 index d79820f32..000000000 --- a/libc/nt/advapi32/SetTraceCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetTraceCallback,SetTraceCallback,0 diff --git a/libc/nt/advapi32/SetUserFileEncryptionKey.S b/libc/nt/advapi32/SetUserFileEncryptionKey.S deleted file mode 100644 index 45bda63d6..000000000 --- a/libc/nt/advapi32/SetUserFileEncryptionKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SetUserFileEncryptionKey,SetUserFileEncryptionKey,1759 diff --git a/libc/nt/advapi32/StartServiceCtrlDispatcherW.S b/libc/nt/advapi32/StartServiceCtrlDispatcherW.S deleted file mode 100644 index 0c4b9d088..000000000 --- a/libc/nt/advapi32/StartServiceCtrlDispatcherW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_StartServiceCtrlDispatcherW,StartServiceCtrlDispatcherW,1763 diff --git a/libc/nt/advapi32/StartServiceW.S b/libc/nt/advapi32/StartServiceW.S deleted file mode 100644 index b66c9c079..000000000 --- a/libc/nt/advapi32/StartServiceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_StartServiceW,StartServiceW,1764 diff --git a/libc/nt/advapi32/StartTraceW.S b/libc/nt/advapi32/StartTraceW.S deleted file mode 100644 index eebbe49c1..000000000 --- a/libc/nt/advapi32/StartTraceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_StartTraceW,StartTraceW,1766 diff --git a/libc/nt/advapi32/StopTraceW.S b/libc/nt/advapi32/StopTraceW.S deleted file mode 100644 index 967a8f2d5..000000000 --- a/libc/nt/advapi32/StopTraceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_StopTraceW,StopTraceW,1768 diff --git a/libc/nt/advapi32/SystemFunction036.S b/libc/nt/advapi32/SystemFunction036.S index 84f22e669..332f6038f 100644 --- a/libc/nt/advapi32/SystemFunction036.S +++ b/libc/nt/advapi32/SystemFunction036.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_SystemFunction036,SystemFunction036,0 +.imp advapi32,__imp_SystemFunction036,SystemFunction036 .text.windows .ftrace1 diff --git a/libc/nt/advapi32/SystemFunction040.S b/libc/nt/advapi32/SystemFunction040.S deleted file mode 100644 index 896b446f2..000000000 --- a/libc/nt/advapi32/SystemFunction040.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SystemFunction040,SystemFunction040,0 diff --git a/libc/nt/advapi32/SystemFunction041.S b/libc/nt/advapi32/SystemFunction041.S deleted file mode 100644 index 0c4defba7..000000000 --- a/libc/nt/advapi32/SystemFunction041.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_SystemFunction041,SystemFunction041,0 diff --git a/libc/nt/advapi32/TraceEvent.S b/libc/nt/advapi32/TraceEvent.S deleted file mode 100644 index 10dd0486e..000000000 --- a/libc/nt/advapi32/TraceEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_TraceEvent,TraceEvent,0 diff --git a/libc/nt/advapi32/TraceEventInstance.S b/libc/nt/advapi32/TraceEventInstance.S deleted file mode 100644 index 2295612b3..000000000 --- a/libc/nt/advapi32/TraceEventInstance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_TraceEventInstance,TraceEventInstance,0 diff --git a/libc/nt/advapi32/TraceMessage.S b/libc/nt/advapi32/TraceMessage.S deleted file mode 100644 index 300d68c34..000000000 --- a/libc/nt/advapi32/TraceMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_TraceMessage,TraceMessage,0 diff --git a/libc/nt/advapi32/TraceMessageVa.S b/libc/nt/advapi32/TraceMessageVa.S deleted file mode 100644 index 0c4c162f9..000000000 --- a/libc/nt/advapi32/TraceMessageVa.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_TraceMessageVa,TraceMessageVa,0 diff --git a/libc/nt/advapi32/TraceSetInformation.S b/libc/nt/advapi32/TraceSetInformation.S index cd0ec563d..2ae6860fe 100644 --- a/libc/nt/advapi32/TraceSetInformation.S +++ b/libc/nt/advapi32/TraceSetInformation.S @@ -1,2 +1,2 @@ #include "libc/nt/codegen.h" -.imp advapi32,__imp_TraceSetInformation,TraceSetInformation,1812 +.imp advapi32,__imp_TraceSetInformation,TraceSetInformation diff --git a/libc/nt/advapi32/TreeResetNamedSecurityInfoW.S b/libc/nt/advapi32/TreeResetNamedSecurityInfoW.S deleted file mode 100644 index b3f1618c3..000000000 --- a/libc/nt/advapi32/TreeResetNamedSecurityInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_TreeResetNamedSecurityInfoW,TreeResetNamedSecurityInfoW,1814 diff --git a/libc/nt/advapi32/TreeSetNamedSecurityInfoW.S b/libc/nt/advapi32/TreeSetNamedSecurityInfoW.S deleted file mode 100644 index 8fb0ab9d6..000000000 --- a/libc/nt/advapi32/TreeSetNamedSecurityInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_TreeSetNamedSecurityInfoW,TreeSetNamedSecurityInfoW,1816 diff --git a/libc/nt/advapi32/UninstallApplication.S b/libc/nt/advapi32/UninstallApplication.S deleted file mode 100644 index 72126664b..000000000 --- a/libc/nt/advapi32/UninstallApplication.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_UninstallApplication,UninstallApplication,1819 diff --git a/libc/nt/advapi32/UnlockServiceDatabase.S b/libc/nt/advapi32/UnlockServiceDatabase.S deleted file mode 100644 index 578b7358d..000000000 --- a/libc/nt/advapi32/UnlockServiceDatabase.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_UnlockServiceDatabase,UnlockServiceDatabase,1820 diff --git a/libc/nt/advapi32/UnregisterTraceGuids.S b/libc/nt/advapi32/UnregisterTraceGuids.S deleted file mode 100644 index ced8f3832..000000000 --- a/libc/nt/advapi32/UnregisterTraceGuids.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_UnregisterTraceGuids,UnregisterTraceGuids,0 diff --git a/libc/nt/advapi32/UpdateTraceW.S b/libc/nt/advapi32/UpdateTraceW.S deleted file mode 100644 index c57f4540f..000000000 --- a/libc/nt/advapi32/UpdateTraceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp advapi32,__imp_UpdateTraceW,UpdateTraceW,1824 diff --git a/libc/nt/codegen.sh b/libc/nt/codegen.sh index 6a4bac4b0..342927804 100644 --- a/libc/nt/codegen.sh +++ b/libc/nt/codegen.sh @@ -27,8 +27,7 @@ imp() { NAME="$1" ACTUAL="$2" DLL="$3" - HINT="$4" - ARITY="$5" + ARITY="$4" if [ "$MADEDIRS" != "${MADEDIRS#*$3}" ]; then # ← sre interview question mkdir -p "libc/nt/$3" MADEDIRS="$MADEDIRS $3" @@ -40,7 +39,7 @@ imp() { echo ".ntimp $ACTUAL,$NAME" else echo "#include \"libc/nt/codegen.h\"" - echo ".imp $DLL,__imp_$ACTUAL,$ACTUAL,$HINT" + echo ".imp $DLL,__imp_$ACTUAL,$ACTUAL" fi # Generate System Five ABI translating thunks diff --git a/libc/nt/comdlg32/ChooseColorW.S b/libc/nt/comdlg32/ChooseColorW.S index d93c21189..e4c37f733 100644 --- a/libc/nt/comdlg32/ChooseColorW.S +++ b/libc/nt/comdlg32/ChooseColorW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp comdlg32,__imp_ChooseColorW,ChooseColorW,103 +.imp comdlg32,__imp_ChooseColorW,ChooseColorW .text.windows .ftrace1 diff --git a/libc/nt/comdlg32/ChooseFontW.S b/libc/nt/comdlg32/ChooseFontW.S index bcc29b38a..a4782e7a4 100644 --- a/libc/nt/comdlg32/ChooseFontW.S +++ b/libc/nt/comdlg32/ChooseFontW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp comdlg32,__imp_ChooseFontW,ChooseFontW,105 +.imp comdlg32,__imp_ChooseFontW,ChooseFontW .text.windows .ftrace1 diff --git a/libc/nt/comdlg32/CommDlgExtendedError.S b/libc/nt/comdlg32/CommDlgExtendedError.S deleted file mode 100644 index 4f6a6864f..000000000 --- a/libc/nt/comdlg32/CommDlgExtendedError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_CommDlgExtendedError,CommDlgExtendedError,106 diff --git a/libc/nt/comdlg32/DllCanUnloadNow.S b/libc/nt/comdlg32/DllCanUnloadNow.S deleted file mode 100644 index 07106dc17..000000000 --- a/libc/nt/comdlg32/DllCanUnloadNow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_DllCanUnloadNow,DllCanUnloadNow,107 diff --git a/libc/nt/comdlg32/DllGetClassObject.S b/libc/nt/comdlg32/DllGetClassObject.S deleted file mode 100644 index ba4e1506a..000000000 --- a/libc/nt/comdlg32/DllGetClassObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_DllGetClassObject,DllGetClassObject,108 diff --git a/libc/nt/comdlg32/FindTextW.S b/libc/nt/comdlg32/FindTextW.S deleted file mode 100644 index 7acc445e2..000000000 --- a/libc/nt/comdlg32/FindTextW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_FindTextW,FindTextW,110 diff --git a/libc/nt/comdlg32/GetFileTitleW.S b/libc/nt/comdlg32/GetFileTitleW.S index 76478ed5b..9748cbefd 100644 --- a/libc/nt/comdlg32/GetFileTitleW.S +++ b/libc/nt/comdlg32/GetFileTitleW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp comdlg32,__imp_GetFileTitleW,GetFileTitleW,112 +.imp comdlg32,__imp_GetFileTitleW,GetFileTitleW .text.windows .ftrace1 diff --git a/libc/nt/comdlg32/GetOpenFileNameW.S b/libc/nt/comdlg32/GetOpenFileNameW.S index 69a5c384f..c01881c15 100644 --- a/libc/nt/comdlg32/GetOpenFileNameW.S +++ b/libc/nt/comdlg32/GetOpenFileNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp comdlg32,__imp_GetOpenFileNameW,GetOpenFileNameW,114 +.imp comdlg32,__imp_GetOpenFileNameW,GetOpenFileNameW .text.windows .ftrace1 diff --git a/libc/nt/comdlg32/GetSaveFileNameW.S b/libc/nt/comdlg32/GetSaveFileNameW.S index 82da62cf2..8c17100d3 100644 --- a/libc/nt/comdlg32/GetSaveFileNameW.S +++ b/libc/nt/comdlg32/GetSaveFileNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp comdlg32,__imp_GetSaveFileNameW,GetSaveFileNameW,116 +.imp comdlg32,__imp_GetSaveFileNameW,GetSaveFileNameW .text.windows .ftrace1 diff --git a/libc/nt/comdlg32/LoadAlterBitmap.S b/libc/nt/comdlg32/LoadAlterBitmap.S deleted file mode 100644 index b0cdde775..000000000 --- a/libc/nt/comdlg32/LoadAlterBitmap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_LoadAlterBitmap,LoadAlterBitmap,117 diff --git a/libc/nt/comdlg32/PageSetupDlgW.S b/libc/nt/comdlg32/PageSetupDlgW.S deleted file mode 100644 index ecb78c8be..000000000 --- a/libc/nt/comdlg32/PageSetupDlgW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_PageSetupDlgW,PageSetupDlgW,119 diff --git a/libc/nt/comdlg32/PrintDlgExW.S b/libc/nt/comdlg32/PrintDlgExW.S deleted file mode 100644 index 925b6508f..000000000 --- a/libc/nt/comdlg32/PrintDlgExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_PrintDlgExW,PrintDlgExW,122 diff --git a/libc/nt/comdlg32/PrintDlgW.S b/libc/nt/comdlg32/PrintDlgW.S index a836fe55c..660609ef8 100644 --- a/libc/nt/comdlg32/PrintDlgW.S +++ b/libc/nt/comdlg32/PrintDlgW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp comdlg32,__imp_PrintDlgW,PrintDlgW,123 +.imp comdlg32,__imp_PrintDlgW,PrintDlgW .text.windows .ftrace1 diff --git a/libc/nt/comdlg32/ReplaceTextW.S b/libc/nt/comdlg32/ReplaceTextW.S index 40adc33e2..61762b907 100644 --- a/libc/nt/comdlg32/ReplaceTextW.S +++ b/libc/nt/comdlg32/ReplaceTextW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp comdlg32,__imp_ReplaceTextW,ReplaceTextW,125 +.imp comdlg32,__imp_ReplaceTextW,ReplaceTextW .text.windows .ftrace1 diff --git a/libc/nt/comdlg32/Ssync_ANSI_UNICODE_Struct_For_WOW.S b/libc/nt/comdlg32/Ssync_ANSI_UNICODE_Struct_For_WOW.S deleted file mode 100644 index 91c0be94f..000000000 --- a/libc/nt/comdlg32/Ssync_ANSI_UNICODE_Struct_For_WOW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_Ssync_ANSI_UNICODE_Struct_For_WOW,Ssync_ANSI_UNICODE_Struct_For_WOW,126 diff --git a/libc/nt/comdlg32/WantArrows.S b/libc/nt/comdlg32/WantArrows.S deleted file mode 100644 index 63235fa0c..000000000 --- a/libc/nt/comdlg32/WantArrows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp comdlg32,__imp_WantArrows,WantArrows,127 diff --git a/libc/nt/gdi32/AbortDoc.S b/libc/nt/gdi32/AbortDoc.S deleted file mode 100644 index 825045c89..000000000 --- a/libc/nt/gdi32/AbortDoc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AbortDoc,AbortDoc,1011 diff --git a/libc/nt/gdi32/AbortPath.S b/libc/nt/gdi32/AbortPath.S deleted file mode 100644 index 1e8969870..000000000 --- a/libc/nt/gdi32/AbortPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AbortPath,AbortPath,1012 diff --git a/libc/nt/gdi32/AddFontMemResourceEx.S b/libc/nt/gdi32/AddFontMemResourceEx.S deleted file mode 100644 index 8ac85f67a..000000000 --- a/libc/nt/gdi32/AddFontMemResourceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AddFontMemResourceEx,AddFontMemResourceEx,1017 diff --git a/libc/nt/gdi32/AddFontResourceExW.S b/libc/nt/gdi32/AddFontResourceExW.S deleted file mode 100644 index 20736fdae..000000000 --- a/libc/nt/gdi32/AddFontResourceExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AddFontResourceExW,AddFontResourceExW,1020 diff --git a/libc/nt/gdi32/AddFontResourceTracking.S b/libc/nt/gdi32/AddFontResourceTracking.S deleted file mode 100644 index 62497a6dd..000000000 --- a/libc/nt/gdi32/AddFontResourceTracking.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AddFontResourceTracking,AddFontResourceTracking,1021 diff --git a/libc/nt/gdi32/AddFontResourceW.S b/libc/nt/gdi32/AddFontResourceW.S deleted file mode 100644 index 49d1975ca..000000000 --- a/libc/nt/gdi32/AddFontResourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AddFontResourceW,AddFontResourceW,1022 diff --git a/libc/nt/gdi32/AngleArc.S b/libc/nt/gdi32/AngleArc.S deleted file mode 100644 index a06edbef8..000000000 --- a/libc/nt/gdi32/AngleArc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AngleArc,AngleArc,1023 diff --git a/libc/nt/gdi32/AnimatePalette.S b/libc/nt/gdi32/AnimatePalette.S deleted file mode 100644 index f719e6f5a..000000000 --- a/libc/nt/gdi32/AnimatePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AnimatePalette,AnimatePalette,1024 diff --git a/libc/nt/gdi32/AnyLinkedFonts.S b/libc/nt/gdi32/AnyLinkedFonts.S deleted file mode 100644 index e49b3e02a..000000000 --- a/libc/nt/gdi32/AnyLinkedFonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_AnyLinkedFonts,AnyLinkedFonts,1025 diff --git a/libc/nt/gdi32/Arc.S b/libc/nt/gdi32/Arc.S deleted file mode 100644 index d74bdd6a5..000000000 --- a/libc/nt/gdi32/Arc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Arc,Arc,1026 diff --git a/libc/nt/gdi32/ArcTo.S b/libc/nt/gdi32/ArcTo.S deleted file mode 100644 index 27001b844..000000000 --- a/libc/nt/gdi32/ArcTo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ArcTo,ArcTo,1027 diff --git a/libc/nt/gdi32/BRUSHOBJ_hGetColorTransform.S b/libc/nt/gdi32/BRUSHOBJ_hGetColorTransform.S deleted file mode 100644 index 042288f11..000000000 --- a/libc/nt/gdi32/BRUSHOBJ_hGetColorTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_BRUSHOBJ_hGetColorTransform,BRUSHOBJ_hGetColorTransform,1028 diff --git a/libc/nt/gdi32/BRUSHOBJ_pvAllocRbrush.S b/libc/nt/gdi32/BRUSHOBJ_pvAllocRbrush.S deleted file mode 100644 index 946a0d753..000000000 --- a/libc/nt/gdi32/BRUSHOBJ_pvAllocRbrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_BRUSHOBJ_pvAllocRbrush,BRUSHOBJ_pvAllocRbrush,1029 diff --git a/libc/nt/gdi32/BRUSHOBJ_pvGetRbrush.S b/libc/nt/gdi32/BRUSHOBJ_pvGetRbrush.S deleted file mode 100644 index cafdd4437..000000000 --- a/libc/nt/gdi32/BRUSHOBJ_pvGetRbrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_BRUSHOBJ_pvGetRbrush,BRUSHOBJ_pvGetRbrush,1030 diff --git a/libc/nt/gdi32/BRUSHOBJ_ulGetBrushColor.S b/libc/nt/gdi32/BRUSHOBJ_ulGetBrushColor.S deleted file mode 100644 index 3c99827a6..000000000 --- a/libc/nt/gdi32/BRUSHOBJ_ulGetBrushColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_BRUSHOBJ_ulGetBrushColor,BRUSHOBJ_ulGetBrushColor,1031 diff --git a/libc/nt/gdi32/BeginGdiRendering.S b/libc/nt/gdi32/BeginGdiRendering.S deleted file mode 100644 index 1681c29cd..000000000 --- a/libc/nt/gdi32/BeginGdiRendering.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_BeginGdiRendering,BeginGdiRendering,1032 diff --git a/libc/nt/gdi32/BeginPath.S b/libc/nt/gdi32/BeginPath.S deleted file mode 100644 index e5a3717d8..000000000 --- a/libc/nt/gdi32/BeginPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_BeginPath,BeginPath,1033 diff --git a/libc/nt/gdi32/BitBlt.S b/libc/nt/gdi32/BitBlt.S index daf036bbb..6ae449526 100644 --- a/libc/nt/gdi32/BitBlt.S +++ b/libc/nt/gdi32/BitBlt.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_BitBlt,BitBlt,1034 +.imp gdi32,__imp_BitBlt,BitBlt .text.windows .ftrace1 diff --git a/libc/nt/gdi32/CLIPOBJ_bEnum.S b/libc/nt/gdi32/CLIPOBJ_bEnum.S deleted file mode 100644 index bfb876d76..000000000 --- a/libc/nt/gdi32/CLIPOBJ_bEnum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CLIPOBJ_bEnum,CLIPOBJ_bEnum,1035 diff --git a/libc/nt/gdi32/CLIPOBJ_cEnumStart.S b/libc/nt/gdi32/CLIPOBJ_cEnumStart.S deleted file mode 100644 index b4b53caf1..000000000 --- a/libc/nt/gdi32/CLIPOBJ_cEnumStart.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CLIPOBJ_cEnumStart,CLIPOBJ_cEnumStart,1036 diff --git a/libc/nt/gdi32/CLIPOBJ_ppoGetPath.S b/libc/nt/gdi32/CLIPOBJ_ppoGetPath.S deleted file mode 100644 index e47a70fa7..000000000 --- a/libc/nt/gdi32/CLIPOBJ_ppoGetPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CLIPOBJ_ppoGetPath,CLIPOBJ_ppoGetPath,1037 diff --git a/libc/nt/gdi32/CancelDC.S b/libc/nt/gdi32/CancelDC.S deleted file mode 100644 index ee884eb3c..000000000 --- a/libc/nt/gdi32/CancelDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CancelDC,CancelDC,1038 diff --git a/libc/nt/gdi32/CheckColorsInGamut.S b/libc/nt/gdi32/CheckColorsInGamut.S deleted file mode 100644 index 15b86f218..000000000 --- a/libc/nt/gdi32/CheckColorsInGamut.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CheckColorsInGamut,CheckColorsInGamut,1039 diff --git a/libc/nt/gdi32/ChoosePixelFormat.S b/libc/nt/gdi32/ChoosePixelFormat.S index a40f042a8..20fb4699b 100644 --- a/libc/nt/gdi32/ChoosePixelFormat.S +++ b/libc/nt/gdi32/ChoosePixelFormat.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_ChoosePixelFormat,ChoosePixelFormat,1040 +.imp gdi32,__imp_ChoosePixelFormat,ChoosePixelFormat .text.windows .ftrace1 diff --git a/libc/nt/gdi32/Chord.S b/libc/nt/gdi32/Chord.S deleted file mode 100644 index 9dc62ba0e..000000000 --- a/libc/nt/gdi32/Chord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Chord,Chord,1041 diff --git a/libc/nt/gdi32/ClearBitmapAttributes.S b/libc/nt/gdi32/ClearBitmapAttributes.S deleted file mode 100644 index 5283b485d..000000000 --- a/libc/nt/gdi32/ClearBitmapAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ClearBitmapAttributes,ClearBitmapAttributes,1042 diff --git a/libc/nt/gdi32/ClearBrushAttributes.S b/libc/nt/gdi32/ClearBrushAttributes.S deleted file mode 100644 index d7586f946..000000000 --- a/libc/nt/gdi32/ClearBrushAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ClearBrushAttributes,ClearBrushAttributes,1043 diff --git a/libc/nt/gdi32/CloseEnhMetaFile.S b/libc/nt/gdi32/CloseEnhMetaFile.S deleted file mode 100644 index 93cfc770e..000000000 --- a/libc/nt/gdi32/CloseEnhMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CloseEnhMetaFile,CloseEnhMetaFile,1044 diff --git a/libc/nt/gdi32/CloseFigure.S b/libc/nt/gdi32/CloseFigure.S deleted file mode 100644 index 71ce0bc32..000000000 --- a/libc/nt/gdi32/CloseFigure.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CloseFigure,CloseFigure,1045 diff --git a/libc/nt/gdi32/CloseMetaFile.S b/libc/nt/gdi32/CloseMetaFile.S deleted file mode 100644 index 18f0af9d5..000000000 --- a/libc/nt/gdi32/CloseMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CloseMetaFile,CloseMetaFile,1046 diff --git a/libc/nt/gdi32/ColorCorrectPalette.S b/libc/nt/gdi32/ColorCorrectPalette.S deleted file mode 100644 index 0ae72271e..000000000 --- a/libc/nt/gdi32/ColorCorrectPalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ColorCorrectPalette,ColorCorrectPalette,1047 diff --git a/libc/nt/gdi32/ColorMatchToTarget.S b/libc/nt/gdi32/ColorMatchToTarget.S deleted file mode 100644 index 404869199..000000000 --- a/libc/nt/gdi32/ColorMatchToTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ColorMatchToTarget,ColorMatchToTarget,1048 diff --git a/libc/nt/gdi32/CombineRgn.S b/libc/nt/gdi32/CombineRgn.S deleted file mode 100644 index 7e135c1cd..000000000 --- a/libc/nt/gdi32/CombineRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CombineRgn,CombineRgn,1049 diff --git a/libc/nt/gdi32/CombineTransform.S b/libc/nt/gdi32/CombineTransform.S deleted file mode 100644 index 2e5db18a6..000000000 --- a/libc/nt/gdi32/CombineTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CombineTransform,CombineTransform,1050 diff --git a/libc/nt/gdi32/ConfigureOPMProtectedOutput.S b/libc/nt/gdi32/ConfigureOPMProtectedOutput.S deleted file mode 100644 index 401d0ac0c..000000000 --- a/libc/nt/gdi32/ConfigureOPMProtectedOutput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ConfigureOPMProtectedOutput,ConfigureOPMProtectedOutput,1051 diff --git a/libc/nt/gdi32/CopyEnhMetaFileW.S b/libc/nt/gdi32/CopyEnhMetaFileW.S deleted file mode 100644 index 8dcf533e4..000000000 --- a/libc/nt/gdi32/CopyEnhMetaFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CopyEnhMetaFileW,CopyEnhMetaFileW,1053 diff --git a/libc/nt/gdi32/CopyMetaFileW.S b/libc/nt/gdi32/CopyMetaFileW.S deleted file mode 100644 index 981ad0a2d..000000000 --- a/libc/nt/gdi32/CopyMetaFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CopyMetaFileW,CopyMetaFileW,1055 diff --git a/libc/nt/gdi32/CreateBitmap.S b/libc/nt/gdi32/CreateBitmap.S index 13f9c93df..d747b7a55 100644 --- a/libc/nt/gdi32/CreateBitmap.S +++ b/libc/nt/gdi32/CreateBitmap.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateBitmap,CreateBitmap,1056 +.imp gdi32,__imp_CreateBitmap,CreateBitmap .text.windows .ftrace1 diff --git a/libc/nt/gdi32/CreateBitmapFromDxSurface.S b/libc/nt/gdi32/CreateBitmapFromDxSurface.S deleted file mode 100644 index 8a3a78e9a..000000000 --- a/libc/nt/gdi32/CreateBitmapFromDxSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateBitmapFromDxSurface,CreateBitmapFromDxSurface,1057 diff --git a/libc/nt/gdi32/CreateBitmapFromDxSurface2.S b/libc/nt/gdi32/CreateBitmapFromDxSurface2.S deleted file mode 100644 index 7beb2eb33..000000000 --- a/libc/nt/gdi32/CreateBitmapFromDxSurface2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateBitmapFromDxSurface2,CreateBitmapFromDxSurface2,1058 diff --git a/libc/nt/gdi32/CreateBitmapIndirect.S b/libc/nt/gdi32/CreateBitmapIndirect.S deleted file mode 100644 index 3e1d7b03a..000000000 --- a/libc/nt/gdi32/CreateBitmapIndirect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateBitmapIndirect,CreateBitmapIndirect,1059 diff --git a/libc/nt/gdi32/CreateBrushIndirect.S b/libc/nt/gdi32/CreateBrushIndirect.S deleted file mode 100644 index 7a00d448f..000000000 --- a/libc/nt/gdi32/CreateBrushIndirect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateBrushIndirect,CreateBrushIndirect,1060 diff --git a/libc/nt/gdi32/CreateColorSpaceW.S b/libc/nt/gdi32/CreateColorSpaceW.S deleted file mode 100644 index 4c90e17b7..000000000 --- a/libc/nt/gdi32/CreateColorSpaceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateColorSpaceW,CreateColorSpaceW,1062 diff --git a/libc/nt/gdi32/CreateCompatibleBitmap.S b/libc/nt/gdi32/CreateCompatibleBitmap.S index e479564db..c67ece9ff 100644 --- a/libc/nt/gdi32/CreateCompatibleBitmap.S +++ b/libc/nt/gdi32/CreateCompatibleBitmap.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateCompatibleBitmap,CreateCompatibleBitmap,1063 +.imp gdi32,__imp_CreateCompatibleBitmap,CreateCompatibleBitmap .text.windows .ftrace1 diff --git a/libc/nt/gdi32/CreateCompatibleDC.S b/libc/nt/gdi32/CreateCompatibleDC.S index 30565bf8e..545aa271a 100644 --- a/libc/nt/gdi32/CreateCompatibleDC.S +++ b/libc/nt/gdi32/CreateCompatibleDC.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateCompatibleDC,CreateCompatibleDC,1064 +.imp gdi32,__imp_CreateCompatibleDC,CreateCompatibleDC .text.windows .ftrace1 diff --git a/libc/nt/gdi32/CreateDCExW.S b/libc/nt/gdi32/CreateDCExW.S deleted file mode 100644 index d55132cfd..000000000 --- a/libc/nt/gdi32/CreateDCExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateDCExW,CreateDCExW,2000 diff --git a/libc/nt/gdi32/CreateDCW.S b/libc/nt/gdi32/CreateDCW.S deleted file mode 100644 index 4d3da925d..000000000 --- a/libc/nt/gdi32/CreateDCW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateDCW,CreateDCW,1066 diff --git a/libc/nt/gdi32/CreateDIBPatternBrush.S b/libc/nt/gdi32/CreateDIBPatternBrush.S deleted file mode 100644 index 55220e720..000000000 --- a/libc/nt/gdi32/CreateDIBPatternBrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateDIBPatternBrush,CreateDIBPatternBrush,1067 diff --git a/libc/nt/gdi32/CreateDIBPatternBrushPt.S b/libc/nt/gdi32/CreateDIBPatternBrushPt.S deleted file mode 100644 index 48738dcbe..000000000 --- a/libc/nt/gdi32/CreateDIBPatternBrushPt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateDIBPatternBrushPt,CreateDIBPatternBrushPt,1068 diff --git a/libc/nt/gdi32/CreateDIBSection.S b/libc/nt/gdi32/CreateDIBSection.S index 65323a851..8bd327fbd 100644 --- a/libc/nt/gdi32/CreateDIBSection.S +++ b/libc/nt/gdi32/CreateDIBSection.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateDIBSection,CreateDIBSection,1069 +.imp gdi32,__imp_CreateDIBSection,CreateDIBSection .text.windows .ftrace1 diff --git a/libc/nt/gdi32/CreateDIBitmap.S b/libc/nt/gdi32/CreateDIBitmap.S deleted file mode 100644 index 9b2f3e550..000000000 --- a/libc/nt/gdi32/CreateDIBitmap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateDIBitmap,CreateDIBitmap,1070 diff --git a/libc/nt/gdi32/CreateDPIScaledDIBSection.S b/libc/nt/gdi32/CreateDPIScaledDIBSection.S deleted file mode 100644 index cd7712989..000000000 --- a/libc/nt/gdi32/CreateDPIScaledDIBSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateDPIScaledDIBSection,CreateDPIScaledDIBSection,1071 diff --git a/libc/nt/gdi32/CreateDiscardableBitmap.S b/libc/nt/gdi32/CreateDiscardableBitmap.S deleted file mode 100644 index 4b961e581..000000000 --- a/libc/nt/gdi32/CreateDiscardableBitmap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateDiscardableBitmap,CreateDiscardableBitmap,1072 diff --git a/libc/nt/gdi32/CreateEllipticRgn.S b/libc/nt/gdi32/CreateEllipticRgn.S deleted file mode 100644 index 59f9dec6c..000000000 --- a/libc/nt/gdi32/CreateEllipticRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateEllipticRgn,CreateEllipticRgn,1073 diff --git a/libc/nt/gdi32/CreateEllipticRgnIndirect.S b/libc/nt/gdi32/CreateEllipticRgnIndirect.S deleted file mode 100644 index 69d27f561..000000000 --- a/libc/nt/gdi32/CreateEllipticRgnIndirect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateEllipticRgnIndirect,CreateEllipticRgnIndirect,1074 diff --git a/libc/nt/gdi32/CreateEnhMetaFileW.S b/libc/nt/gdi32/CreateEnhMetaFileW.S deleted file mode 100644 index 4ac159761..000000000 --- a/libc/nt/gdi32/CreateEnhMetaFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateEnhMetaFileW,CreateEnhMetaFileW,1076 diff --git a/libc/nt/gdi32/CreateFontIndirectExW.S b/libc/nt/gdi32/CreateFontIndirectExW.S deleted file mode 100644 index 6ac1f57bb..000000000 --- a/libc/nt/gdi32/CreateFontIndirectExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateFontIndirectExW,CreateFontIndirectExW,1080 diff --git a/libc/nt/gdi32/CreateFontIndirectW.S b/libc/nt/gdi32/CreateFontIndirectW.S deleted file mode 100644 index ed4cd24f0..000000000 --- a/libc/nt/gdi32/CreateFontIndirectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateFontIndirectW,CreateFontIndirectW,1081 diff --git a/libc/nt/gdi32/CreateFontW.S b/libc/nt/gdi32/CreateFontW.S deleted file mode 100644 index 2b5ba4c7e..000000000 --- a/libc/nt/gdi32/CreateFontW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateFontW,CreateFontW,1082 diff --git a/libc/nt/gdi32/CreateHalftonePalette.S b/libc/nt/gdi32/CreateHalftonePalette.S deleted file mode 100644 index dddfdb48b..000000000 --- a/libc/nt/gdi32/CreateHalftonePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateHalftonePalette,CreateHalftonePalette,1083 diff --git a/libc/nt/gdi32/CreateHatchBrush.S b/libc/nt/gdi32/CreateHatchBrush.S deleted file mode 100644 index 33757cab4..000000000 --- a/libc/nt/gdi32/CreateHatchBrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateHatchBrush,CreateHatchBrush,1084 diff --git a/libc/nt/gdi32/CreateICW.S b/libc/nt/gdi32/CreateICW.S deleted file mode 100644 index 0cef4b5a7..000000000 --- a/libc/nt/gdi32/CreateICW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateICW,CreateICW,1086 diff --git a/libc/nt/gdi32/CreateMetaFileW.S b/libc/nt/gdi32/CreateMetaFileW.S deleted file mode 100644 index 2d8467781..000000000 --- a/libc/nt/gdi32/CreateMetaFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateMetaFileW,CreateMetaFileW,1088 diff --git a/libc/nt/gdi32/CreateOPMProtectedOutput.S b/libc/nt/gdi32/CreateOPMProtectedOutput.S deleted file mode 100644 index ead178378..000000000 --- a/libc/nt/gdi32/CreateOPMProtectedOutput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateOPMProtectedOutput,CreateOPMProtectedOutput,1089 diff --git a/libc/nt/gdi32/CreateOPMProtectedOutputs.S b/libc/nt/gdi32/CreateOPMProtectedOutputs.S deleted file mode 100644 index c6dd7def0..000000000 --- a/libc/nt/gdi32/CreateOPMProtectedOutputs.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateOPMProtectedOutputs,CreateOPMProtectedOutputs,1090 diff --git a/libc/nt/gdi32/CreatePalette.S b/libc/nt/gdi32/CreatePalette.S deleted file mode 100644 index af1da6272..000000000 --- a/libc/nt/gdi32/CreatePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreatePalette,CreatePalette,1091 diff --git a/libc/nt/gdi32/CreatePatternBrush.S b/libc/nt/gdi32/CreatePatternBrush.S deleted file mode 100644 index 462f28304..000000000 --- a/libc/nt/gdi32/CreatePatternBrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreatePatternBrush,CreatePatternBrush,1092 diff --git a/libc/nt/gdi32/CreatePen.S b/libc/nt/gdi32/CreatePen.S deleted file mode 100644 index 964bfed7e..000000000 --- a/libc/nt/gdi32/CreatePen.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreatePen,CreatePen,1093 diff --git a/libc/nt/gdi32/CreatePenIndirect.S b/libc/nt/gdi32/CreatePenIndirect.S deleted file mode 100644 index 795901d5b..000000000 --- a/libc/nt/gdi32/CreatePenIndirect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreatePenIndirect,CreatePenIndirect,1094 diff --git a/libc/nt/gdi32/CreatePolyPolygonRgn.S b/libc/nt/gdi32/CreatePolyPolygonRgn.S deleted file mode 100644 index 42bbbb20f..000000000 --- a/libc/nt/gdi32/CreatePolyPolygonRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreatePolyPolygonRgn,CreatePolyPolygonRgn,1095 diff --git a/libc/nt/gdi32/CreatePolygonRgn.S b/libc/nt/gdi32/CreatePolygonRgn.S deleted file mode 100644 index 58c930718..000000000 --- a/libc/nt/gdi32/CreatePolygonRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreatePolygonRgn,CreatePolygonRgn,1096 diff --git a/libc/nt/gdi32/CreateRectRgn.S b/libc/nt/gdi32/CreateRectRgn.S index f4e40d5df..28fafc1c5 100644 --- a/libc/nt/gdi32/CreateRectRgn.S +++ b/libc/nt/gdi32/CreateRectRgn.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateRectRgn,CreateRectRgn,1097 +.imp gdi32,__imp_CreateRectRgn,CreateRectRgn .text.windows .ftrace1 diff --git a/libc/nt/gdi32/CreateRectRgnIndirect.S b/libc/nt/gdi32/CreateRectRgnIndirect.S deleted file mode 100644 index 7f567238c..000000000 --- a/libc/nt/gdi32/CreateRectRgnIndirect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateRectRgnIndirect,CreateRectRgnIndirect,1098 diff --git a/libc/nt/gdi32/CreateRoundRectRgn.S b/libc/nt/gdi32/CreateRoundRectRgn.S deleted file mode 100644 index 3929870ab..000000000 --- a/libc/nt/gdi32/CreateRoundRectRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateRoundRectRgn,CreateRoundRectRgn,1099 diff --git a/libc/nt/gdi32/CreateScalableFontResourceW.S b/libc/nt/gdi32/CreateScalableFontResourceW.S deleted file mode 100644 index 1ce4616cd..000000000 --- a/libc/nt/gdi32/CreateScalableFontResourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateScalableFontResourceW,CreateScalableFontResourceW,1101 diff --git a/libc/nt/gdi32/CreateSessionMappedDIBSection.S b/libc/nt/gdi32/CreateSessionMappedDIBSection.S deleted file mode 100644 index 65e0205da..000000000 --- a/libc/nt/gdi32/CreateSessionMappedDIBSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateSessionMappedDIBSection,CreateSessionMappedDIBSection,1102 diff --git a/libc/nt/gdi32/CreateSolidBrush.S b/libc/nt/gdi32/CreateSolidBrush.S deleted file mode 100644 index 1b81d3df3..000000000 --- a/libc/nt/gdi32/CreateSolidBrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_CreateSolidBrush,CreateSolidBrush,1103 diff --git a/libc/nt/gdi32/D3DKMTAbandonSwapChain.S b/libc/nt/gdi32/D3DKMTAbandonSwapChain.S deleted file mode 100644 index 9106c88ed..000000000 --- a/libc/nt/gdi32/D3DKMTAbandonSwapChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTAbandonSwapChain,D3DKMTAbandonSwapChain,1104 diff --git a/libc/nt/gdi32/D3DKMTAcquireKeyedMutex.S b/libc/nt/gdi32/D3DKMTAcquireKeyedMutex.S deleted file mode 100644 index d97bb062c..000000000 --- a/libc/nt/gdi32/D3DKMTAcquireKeyedMutex.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTAcquireKeyedMutex,D3DKMTAcquireKeyedMutex,1105 diff --git a/libc/nt/gdi32/D3DKMTAcquireKeyedMutex2.S b/libc/nt/gdi32/D3DKMTAcquireKeyedMutex2.S deleted file mode 100644 index 08b01e70f..000000000 --- a/libc/nt/gdi32/D3DKMTAcquireKeyedMutex2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTAcquireKeyedMutex2,D3DKMTAcquireKeyedMutex2,1106 diff --git a/libc/nt/gdi32/D3DKMTAcquireSwapChain.S b/libc/nt/gdi32/D3DKMTAcquireSwapChain.S deleted file mode 100644 index 76721eca3..000000000 --- a/libc/nt/gdi32/D3DKMTAcquireSwapChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTAcquireSwapChain,D3DKMTAcquireSwapChain,1107 diff --git a/libc/nt/gdi32/D3DKMTAddSurfaceToSwapChain.S b/libc/nt/gdi32/D3DKMTAddSurfaceToSwapChain.S deleted file mode 100644 index 59a151ed2..000000000 --- a/libc/nt/gdi32/D3DKMTAddSurfaceToSwapChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTAddSurfaceToSwapChain,D3DKMTAddSurfaceToSwapChain,1108 diff --git a/libc/nt/gdi32/D3DKMTAdjustFullscreenGamma.S b/libc/nt/gdi32/D3DKMTAdjustFullscreenGamma.S deleted file mode 100644 index a2a8825ad..000000000 --- a/libc/nt/gdi32/D3DKMTAdjustFullscreenGamma.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTAdjustFullscreenGamma,D3DKMTAdjustFullscreenGamma,1109 diff --git a/libc/nt/gdi32/D3DKMTCacheHybridQueryValue.S b/libc/nt/gdi32/D3DKMTCacheHybridQueryValue.S deleted file mode 100644 index 0666c60ae..000000000 --- a/libc/nt/gdi32/D3DKMTCacheHybridQueryValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCacheHybridQueryValue,D3DKMTCacheHybridQueryValue,1110 diff --git a/libc/nt/gdi32/D3DKMTChangeVideoMemoryReservation.S b/libc/nt/gdi32/D3DKMTChangeVideoMemoryReservation.S deleted file mode 100644 index 8b651c3b9..000000000 --- a/libc/nt/gdi32/D3DKMTChangeVideoMemoryReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTChangeVideoMemoryReservation,D3DKMTChangeVideoMemoryReservation,1111 diff --git a/libc/nt/gdi32/D3DKMTCheckExclusiveOwnership.S b/libc/nt/gdi32/D3DKMTCheckExclusiveOwnership.S deleted file mode 100644 index c7e9f2f98..000000000 --- a/libc/nt/gdi32/D3DKMTCheckExclusiveOwnership.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCheckExclusiveOwnership,D3DKMTCheckExclusiveOwnership,1112 diff --git a/libc/nt/gdi32/D3DKMTCheckMonitorPowerState.S b/libc/nt/gdi32/D3DKMTCheckMonitorPowerState.S deleted file mode 100644 index 663edc6a8..000000000 --- a/libc/nt/gdi32/D3DKMTCheckMonitorPowerState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCheckMonitorPowerState,D3DKMTCheckMonitorPowerState,1113 diff --git a/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport.S b/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport.S deleted file mode 100644 index 3b761419e..000000000 --- a/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCheckMultiPlaneOverlaySupport,D3DKMTCheckMultiPlaneOverlaySupport,1114 diff --git a/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport2.S b/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport2.S deleted file mode 100644 index 7a7a1110a..000000000 --- a/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCheckMultiPlaneOverlaySupport2,D3DKMTCheckMultiPlaneOverlaySupport2,1115 diff --git a/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport3.S b/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport3.S deleted file mode 100644 index d919b6667..000000000 --- a/libc/nt/gdi32/D3DKMTCheckMultiPlaneOverlaySupport3.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCheckMultiPlaneOverlaySupport3,D3DKMTCheckMultiPlaneOverlaySupport3,1116 diff --git a/libc/nt/gdi32/D3DKMTCheckOcclusion.S b/libc/nt/gdi32/D3DKMTCheckOcclusion.S deleted file mode 100644 index 04f6961c3..000000000 --- a/libc/nt/gdi32/D3DKMTCheckOcclusion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCheckOcclusion,D3DKMTCheckOcclusion,1117 diff --git a/libc/nt/gdi32/D3DKMTCheckSharedResourceAccess.S b/libc/nt/gdi32/D3DKMTCheckSharedResourceAccess.S deleted file mode 100644 index 0d7e21e73..000000000 --- a/libc/nt/gdi32/D3DKMTCheckSharedResourceAccess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCheckSharedResourceAccess,D3DKMTCheckSharedResourceAccess,1118 diff --git a/libc/nt/gdi32/D3DKMTCheckVidPnExclusiveOwnership.S b/libc/nt/gdi32/D3DKMTCheckVidPnExclusiveOwnership.S deleted file mode 100644 index 0fd1827a3..000000000 --- a/libc/nt/gdi32/D3DKMTCheckVidPnExclusiveOwnership.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCheckVidPnExclusiveOwnership,D3DKMTCheckVidPnExclusiveOwnership,1119 diff --git a/libc/nt/gdi32/D3DKMTCloseAdapter.S b/libc/nt/gdi32/D3DKMTCloseAdapter.S deleted file mode 100644 index 0c632bdfa..000000000 --- a/libc/nt/gdi32/D3DKMTCloseAdapter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCloseAdapter,D3DKMTCloseAdapter,1120 diff --git a/libc/nt/gdi32/D3DKMTConfigureSharedResource.S b/libc/nt/gdi32/D3DKMTConfigureSharedResource.S deleted file mode 100644 index f3f316242..000000000 --- a/libc/nt/gdi32/D3DKMTConfigureSharedResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTConfigureSharedResource,D3DKMTConfigureSharedResource,1121 diff --git a/libc/nt/gdi32/D3DKMTCreateAllocation.S b/libc/nt/gdi32/D3DKMTCreateAllocation.S deleted file mode 100644 index 2343e6833..000000000 --- a/libc/nt/gdi32/D3DKMTCreateAllocation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateAllocation,D3DKMTCreateAllocation,1122 diff --git a/libc/nt/gdi32/D3DKMTCreateAllocation2.S b/libc/nt/gdi32/D3DKMTCreateAllocation2.S deleted file mode 100644 index 18a8a00c1..000000000 --- a/libc/nt/gdi32/D3DKMTCreateAllocation2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateAllocation2,D3DKMTCreateAllocation2,1123 diff --git a/libc/nt/gdi32/D3DKMTCreateBundleObject.S b/libc/nt/gdi32/D3DKMTCreateBundleObject.S deleted file mode 100644 index efadf6ecf..000000000 --- a/libc/nt/gdi32/D3DKMTCreateBundleObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateBundleObject,D3DKMTCreateBundleObject,1124 diff --git a/libc/nt/gdi32/D3DKMTCreateContext.S b/libc/nt/gdi32/D3DKMTCreateContext.S deleted file mode 100644 index 87bd5204d..000000000 --- a/libc/nt/gdi32/D3DKMTCreateContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateContext,D3DKMTCreateContext,1125 diff --git a/libc/nt/gdi32/D3DKMTCreateContextVirtual.S b/libc/nt/gdi32/D3DKMTCreateContextVirtual.S deleted file mode 100644 index eb9201284..000000000 --- a/libc/nt/gdi32/D3DKMTCreateContextVirtual.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateContextVirtual,D3DKMTCreateContextVirtual,1126 diff --git a/libc/nt/gdi32/D3DKMTCreateDCFromMemory.S b/libc/nt/gdi32/D3DKMTCreateDCFromMemory.S deleted file mode 100644 index b97b17fbf..000000000 --- a/libc/nt/gdi32/D3DKMTCreateDCFromMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateDCFromMemory,D3DKMTCreateDCFromMemory,1127 diff --git a/libc/nt/gdi32/D3DKMTCreateDevice.S b/libc/nt/gdi32/D3DKMTCreateDevice.S deleted file mode 100644 index 0a7ac695e..000000000 --- a/libc/nt/gdi32/D3DKMTCreateDevice.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateDevice,D3DKMTCreateDevice,1128 diff --git a/libc/nt/gdi32/D3DKMTCreateHwContext.S b/libc/nt/gdi32/D3DKMTCreateHwContext.S deleted file mode 100644 index 933a1362c..000000000 --- a/libc/nt/gdi32/D3DKMTCreateHwContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateHwContext,D3DKMTCreateHwContext,1129 diff --git a/libc/nt/gdi32/D3DKMTCreateHwQueue.S b/libc/nt/gdi32/D3DKMTCreateHwQueue.S deleted file mode 100644 index 732240170..000000000 --- a/libc/nt/gdi32/D3DKMTCreateHwQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateHwQueue,D3DKMTCreateHwQueue,1130 diff --git a/libc/nt/gdi32/D3DKMTCreateKeyedMutex.S b/libc/nt/gdi32/D3DKMTCreateKeyedMutex.S deleted file mode 100644 index 3609c5e4f..000000000 --- a/libc/nt/gdi32/D3DKMTCreateKeyedMutex.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateKeyedMutex,D3DKMTCreateKeyedMutex,1131 diff --git a/libc/nt/gdi32/D3DKMTCreateKeyedMutex2.S b/libc/nt/gdi32/D3DKMTCreateKeyedMutex2.S deleted file mode 100644 index a0dfc36a0..000000000 --- a/libc/nt/gdi32/D3DKMTCreateKeyedMutex2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateKeyedMutex2,D3DKMTCreateKeyedMutex2,1132 diff --git a/libc/nt/gdi32/D3DKMTCreateOutputDupl.S b/libc/nt/gdi32/D3DKMTCreateOutputDupl.S deleted file mode 100644 index 1b7dc6285..000000000 --- a/libc/nt/gdi32/D3DKMTCreateOutputDupl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateOutputDupl,D3DKMTCreateOutputDupl,1133 diff --git a/libc/nt/gdi32/D3DKMTCreateOverlay.S b/libc/nt/gdi32/D3DKMTCreateOverlay.S deleted file mode 100644 index 48ccda386..000000000 --- a/libc/nt/gdi32/D3DKMTCreateOverlay.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateOverlay,D3DKMTCreateOverlay,1134 diff --git a/libc/nt/gdi32/D3DKMTCreatePagingQueue.S b/libc/nt/gdi32/D3DKMTCreatePagingQueue.S deleted file mode 100644 index 27d35408f..000000000 --- a/libc/nt/gdi32/D3DKMTCreatePagingQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreatePagingQueue,D3DKMTCreatePagingQueue,1135 diff --git a/libc/nt/gdi32/D3DKMTCreateProtectedSession.S b/libc/nt/gdi32/D3DKMTCreateProtectedSession.S deleted file mode 100644 index 707b07b3c..000000000 --- a/libc/nt/gdi32/D3DKMTCreateProtectedSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateProtectedSession,D3DKMTCreateProtectedSession,1136 diff --git a/libc/nt/gdi32/D3DKMTCreateSwapChain.S b/libc/nt/gdi32/D3DKMTCreateSwapChain.S deleted file mode 100644 index 48f4b085e..000000000 --- a/libc/nt/gdi32/D3DKMTCreateSwapChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateSwapChain,D3DKMTCreateSwapChain,1137 diff --git a/libc/nt/gdi32/D3DKMTCreateSynchronizationObject.S b/libc/nt/gdi32/D3DKMTCreateSynchronizationObject.S deleted file mode 100644 index 5014959a6..000000000 --- a/libc/nt/gdi32/D3DKMTCreateSynchronizationObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateSynchronizationObject,D3DKMTCreateSynchronizationObject,1138 diff --git a/libc/nt/gdi32/D3DKMTCreateSynchronizationObject2.S b/libc/nt/gdi32/D3DKMTCreateSynchronizationObject2.S deleted file mode 100644 index 2082beffd..000000000 --- a/libc/nt/gdi32/D3DKMTCreateSynchronizationObject2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTCreateSynchronizationObject2,D3DKMTCreateSynchronizationObject2,1139 diff --git a/libc/nt/gdi32/D3DKMTDDisplayEnum.S b/libc/nt/gdi32/D3DKMTDDisplayEnum.S deleted file mode 100644 index 7bb8168f1..000000000 --- a/libc/nt/gdi32/D3DKMTDDisplayEnum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDDisplayEnum,D3DKMTDDisplayEnum,1140 diff --git a/libc/nt/gdi32/D3DKMTDestroyAllocation.S b/libc/nt/gdi32/D3DKMTDestroyAllocation.S deleted file mode 100644 index 56bc4f7a3..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyAllocation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyAllocation,D3DKMTDestroyAllocation,1141 diff --git a/libc/nt/gdi32/D3DKMTDestroyAllocation2.S b/libc/nt/gdi32/D3DKMTDestroyAllocation2.S deleted file mode 100644 index 7060abd32..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyAllocation2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyAllocation2,D3DKMTDestroyAllocation2,1142 diff --git a/libc/nt/gdi32/D3DKMTDestroyContext.S b/libc/nt/gdi32/D3DKMTDestroyContext.S deleted file mode 100644 index 4d1477f6c..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyContext,D3DKMTDestroyContext,1143 diff --git a/libc/nt/gdi32/D3DKMTDestroyDCFromMemory.S b/libc/nt/gdi32/D3DKMTDestroyDCFromMemory.S deleted file mode 100644 index 7326a1f44..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyDCFromMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyDCFromMemory,D3DKMTDestroyDCFromMemory,1144 diff --git a/libc/nt/gdi32/D3DKMTDestroyDevice.S b/libc/nt/gdi32/D3DKMTDestroyDevice.S deleted file mode 100644 index 7a41a5455..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyDevice.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyDevice,D3DKMTDestroyDevice,1145 diff --git a/libc/nt/gdi32/D3DKMTDestroyHwContext.S b/libc/nt/gdi32/D3DKMTDestroyHwContext.S deleted file mode 100644 index 4679da025..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyHwContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyHwContext,D3DKMTDestroyHwContext,1146 diff --git a/libc/nt/gdi32/D3DKMTDestroyHwQueue.S b/libc/nt/gdi32/D3DKMTDestroyHwQueue.S deleted file mode 100644 index a62c4d3b8..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyHwQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyHwQueue,D3DKMTDestroyHwQueue,1147 diff --git a/libc/nt/gdi32/D3DKMTDestroyKeyedMutex.S b/libc/nt/gdi32/D3DKMTDestroyKeyedMutex.S deleted file mode 100644 index 8ba00e3bc..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyKeyedMutex.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyKeyedMutex,D3DKMTDestroyKeyedMutex,1148 diff --git a/libc/nt/gdi32/D3DKMTDestroyOutputDupl.S b/libc/nt/gdi32/D3DKMTDestroyOutputDupl.S deleted file mode 100644 index 6674ce3f5..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyOutputDupl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyOutputDupl,D3DKMTDestroyOutputDupl,1149 diff --git a/libc/nt/gdi32/D3DKMTDestroyOverlay.S b/libc/nt/gdi32/D3DKMTDestroyOverlay.S deleted file mode 100644 index 74f94cddf..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyOverlay.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyOverlay,D3DKMTDestroyOverlay,1150 diff --git a/libc/nt/gdi32/D3DKMTDestroyPagingQueue.S b/libc/nt/gdi32/D3DKMTDestroyPagingQueue.S deleted file mode 100644 index 0fdae202b..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyPagingQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyPagingQueue,D3DKMTDestroyPagingQueue,1151 diff --git a/libc/nt/gdi32/D3DKMTDestroyProtectedSession.S b/libc/nt/gdi32/D3DKMTDestroyProtectedSession.S deleted file mode 100644 index a38b42a39..000000000 --- a/libc/nt/gdi32/D3DKMTDestroyProtectedSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroyProtectedSession,D3DKMTDestroyProtectedSession,1152 diff --git a/libc/nt/gdi32/D3DKMTDestroySynchronizationObject.S b/libc/nt/gdi32/D3DKMTDestroySynchronizationObject.S deleted file mode 100644 index bc73bd20f..000000000 --- a/libc/nt/gdi32/D3DKMTDestroySynchronizationObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDestroySynchronizationObject,D3DKMTDestroySynchronizationObject,1153 diff --git a/libc/nt/gdi32/D3DKMTDispMgrCreate.S b/libc/nt/gdi32/D3DKMTDispMgrCreate.S deleted file mode 100644 index 433a5be6f..000000000 --- a/libc/nt/gdi32/D3DKMTDispMgrCreate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDispMgrCreate,D3DKMTDispMgrCreate,1154 diff --git a/libc/nt/gdi32/D3DKMTDispMgrSourceOperation.S b/libc/nt/gdi32/D3DKMTDispMgrSourceOperation.S deleted file mode 100644 index 57d4d99f2..000000000 --- a/libc/nt/gdi32/D3DKMTDispMgrSourceOperation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDispMgrSourceOperation,D3DKMTDispMgrSourceOperation,1155 diff --git a/libc/nt/gdi32/D3DKMTDispMgrTargetOperation.S b/libc/nt/gdi32/D3DKMTDispMgrTargetOperation.S deleted file mode 100644 index 7494f74e6..000000000 --- a/libc/nt/gdi32/D3DKMTDispMgrTargetOperation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTDispMgrTargetOperation,D3DKMTDispMgrTargetOperation,1156 diff --git a/libc/nt/gdi32/D3DKMTEnumAdapters.S b/libc/nt/gdi32/D3DKMTEnumAdapters.S deleted file mode 100644 index 3b73606d5..000000000 --- a/libc/nt/gdi32/D3DKMTEnumAdapters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTEnumAdapters,D3DKMTEnumAdapters,1157 diff --git a/libc/nt/gdi32/D3DKMTEnumAdapters2.S b/libc/nt/gdi32/D3DKMTEnumAdapters2.S deleted file mode 100644 index 11e81cb00..000000000 --- a/libc/nt/gdi32/D3DKMTEnumAdapters2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTEnumAdapters2,D3DKMTEnumAdapters2,1158 diff --git a/libc/nt/gdi32/D3DKMTEscape.S b/libc/nt/gdi32/D3DKMTEscape.S deleted file mode 100644 index 55fb4b636..000000000 --- a/libc/nt/gdi32/D3DKMTEscape.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTEscape,D3DKMTEscape,1159 diff --git a/libc/nt/gdi32/D3DKMTEvict.S b/libc/nt/gdi32/D3DKMTEvict.S deleted file mode 100644 index 2b1b6ef7e..000000000 --- a/libc/nt/gdi32/D3DKMTEvict.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTEvict,D3DKMTEvict,1160 diff --git a/libc/nt/gdi32/D3DKMTExtractBundleObject.S b/libc/nt/gdi32/D3DKMTExtractBundleObject.S deleted file mode 100644 index 3ea3883a2..000000000 --- a/libc/nt/gdi32/D3DKMTExtractBundleObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTExtractBundleObject,D3DKMTExtractBundleObject,1161 diff --git a/libc/nt/gdi32/D3DKMTFlipOverlay.S b/libc/nt/gdi32/D3DKMTFlipOverlay.S deleted file mode 100644 index c2af65784..000000000 --- a/libc/nt/gdi32/D3DKMTFlipOverlay.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTFlipOverlay,D3DKMTFlipOverlay,1162 diff --git a/libc/nt/gdi32/D3DKMTFlushHeapTransitions.S b/libc/nt/gdi32/D3DKMTFlushHeapTransitions.S deleted file mode 100644 index a35d7676a..000000000 --- a/libc/nt/gdi32/D3DKMTFlushHeapTransitions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTFlushHeapTransitions,D3DKMTFlushHeapTransitions,1163 diff --git a/libc/nt/gdi32/D3DKMTFreeGpuVirtualAddress.S b/libc/nt/gdi32/D3DKMTFreeGpuVirtualAddress.S deleted file mode 100644 index 8dd2f5aca..000000000 --- a/libc/nt/gdi32/D3DKMTFreeGpuVirtualAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTFreeGpuVirtualAddress,D3DKMTFreeGpuVirtualAddress,1164 diff --git a/libc/nt/gdi32/D3DKMTGetAllocationPriority.S b/libc/nt/gdi32/D3DKMTGetAllocationPriority.S deleted file mode 100644 index 37915763d..000000000 --- a/libc/nt/gdi32/D3DKMTGetAllocationPriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetAllocationPriority,D3DKMTGetAllocationPriority,1165 diff --git a/libc/nt/gdi32/D3DKMTGetCachedHybridQueryValue.S b/libc/nt/gdi32/D3DKMTGetCachedHybridQueryValue.S deleted file mode 100644 index 5f608df8d..000000000 --- a/libc/nt/gdi32/D3DKMTGetCachedHybridQueryValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetCachedHybridQueryValue,D3DKMTGetCachedHybridQueryValue,1166 diff --git a/libc/nt/gdi32/D3DKMTGetContextInProcessSchedulingPriority.S b/libc/nt/gdi32/D3DKMTGetContextInProcessSchedulingPriority.S deleted file mode 100644 index 15cd88802..000000000 --- a/libc/nt/gdi32/D3DKMTGetContextInProcessSchedulingPriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetContextInProcessSchedulingPriority,D3DKMTGetContextInProcessSchedulingPriority,1167 diff --git a/libc/nt/gdi32/D3DKMTGetContextSchedulingPriority.S b/libc/nt/gdi32/D3DKMTGetContextSchedulingPriority.S deleted file mode 100644 index 498b3d5ec..000000000 --- a/libc/nt/gdi32/D3DKMTGetContextSchedulingPriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetContextSchedulingPriority,D3DKMTGetContextSchedulingPriority,1168 diff --git a/libc/nt/gdi32/D3DKMTGetDWMVerticalBlankEvent.S b/libc/nt/gdi32/D3DKMTGetDWMVerticalBlankEvent.S deleted file mode 100644 index 2b53757ce..000000000 --- a/libc/nt/gdi32/D3DKMTGetDWMVerticalBlankEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetDWMVerticalBlankEvent,D3DKMTGetDWMVerticalBlankEvent,1169 diff --git a/libc/nt/gdi32/D3DKMTGetDeviceState.S b/libc/nt/gdi32/D3DKMTGetDeviceState.S deleted file mode 100644 index dcdcb6b89..000000000 --- a/libc/nt/gdi32/D3DKMTGetDeviceState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetDeviceState,D3DKMTGetDeviceState,1170 diff --git a/libc/nt/gdi32/D3DKMTGetDisplayModeList.S b/libc/nt/gdi32/D3DKMTGetDisplayModeList.S deleted file mode 100644 index 3ad99fa12..000000000 --- a/libc/nt/gdi32/D3DKMTGetDisplayModeList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetDisplayModeList,D3DKMTGetDisplayModeList,1171 diff --git a/libc/nt/gdi32/D3DKMTGetMemoryBudgetTarget.S b/libc/nt/gdi32/D3DKMTGetMemoryBudgetTarget.S deleted file mode 100644 index d6ee17f13..000000000 --- a/libc/nt/gdi32/D3DKMTGetMemoryBudgetTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetMemoryBudgetTarget,D3DKMTGetMemoryBudgetTarget,1172 diff --git a/libc/nt/gdi32/D3DKMTGetMultiPlaneOverlayCaps.S b/libc/nt/gdi32/D3DKMTGetMultiPlaneOverlayCaps.S deleted file mode 100644 index 3d0a8acdd..000000000 --- a/libc/nt/gdi32/D3DKMTGetMultiPlaneOverlayCaps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetMultiPlaneOverlayCaps,D3DKMTGetMultiPlaneOverlayCaps,1173 diff --git a/libc/nt/gdi32/D3DKMTGetMultisampleMethodList.S b/libc/nt/gdi32/D3DKMTGetMultisampleMethodList.S deleted file mode 100644 index f75e38088..000000000 --- a/libc/nt/gdi32/D3DKMTGetMultisampleMethodList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetMultisampleMethodList,D3DKMTGetMultisampleMethodList,1174 diff --git a/libc/nt/gdi32/D3DKMTGetOverlayState.S b/libc/nt/gdi32/D3DKMTGetOverlayState.S deleted file mode 100644 index 97b05b876..000000000 --- a/libc/nt/gdi32/D3DKMTGetOverlayState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetOverlayState,D3DKMTGetOverlayState,1175 diff --git a/libc/nt/gdi32/D3DKMTGetPostCompositionCaps.S b/libc/nt/gdi32/D3DKMTGetPostCompositionCaps.S deleted file mode 100644 index b849e3ce2..000000000 --- a/libc/nt/gdi32/D3DKMTGetPostCompositionCaps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetPostCompositionCaps,D3DKMTGetPostCompositionCaps,1176 diff --git a/libc/nt/gdi32/D3DKMTGetPresentHistory.S b/libc/nt/gdi32/D3DKMTGetPresentHistory.S deleted file mode 100644 index c30e95686..000000000 --- a/libc/nt/gdi32/D3DKMTGetPresentHistory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetPresentHistory,D3DKMTGetPresentHistory,1177 diff --git a/libc/nt/gdi32/D3DKMTGetPresentQueueEvent.S b/libc/nt/gdi32/D3DKMTGetPresentQueueEvent.S deleted file mode 100644 index 74a79f193..000000000 --- a/libc/nt/gdi32/D3DKMTGetPresentQueueEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetPresentQueueEvent,D3DKMTGetPresentQueueEvent,1178 diff --git a/libc/nt/gdi32/D3DKMTGetProcessDeviceRemovalSupport.S b/libc/nt/gdi32/D3DKMTGetProcessDeviceRemovalSupport.S deleted file mode 100644 index b67518f3b..000000000 --- a/libc/nt/gdi32/D3DKMTGetProcessDeviceRemovalSupport.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetProcessDeviceRemovalSupport,D3DKMTGetProcessDeviceRemovalSupport,1179 diff --git a/libc/nt/gdi32/D3DKMTGetProcessList.S b/libc/nt/gdi32/D3DKMTGetProcessList.S deleted file mode 100644 index 488d603f9..000000000 --- a/libc/nt/gdi32/D3DKMTGetProcessList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetProcessList,D3DKMTGetProcessList,1180 diff --git a/libc/nt/gdi32/D3DKMTGetProcessSchedulingPriorityBand.S b/libc/nt/gdi32/D3DKMTGetProcessSchedulingPriorityBand.S deleted file mode 100644 index 68561d53d..000000000 --- a/libc/nt/gdi32/D3DKMTGetProcessSchedulingPriorityBand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetProcessSchedulingPriorityBand,D3DKMTGetProcessSchedulingPriorityBand,1181 diff --git a/libc/nt/gdi32/D3DKMTGetProcessSchedulingPriorityClass.S b/libc/nt/gdi32/D3DKMTGetProcessSchedulingPriorityClass.S deleted file mode 100644 index 5b9743e95..000000000 --- a/libc/nt/gdi32/D3DKMTGetProcessSchedulingPriorityClass.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetProcessSchedulingPriorityClass,D3DKMTGetProcessSchedulingPriorityClass,1182 diff --git a/libc/nt/gdi32/D3DKMTGetResourcePresentPrivateDriverData.S b/libc/nt/gdi32/D3DKMTGetResourcePresentPrivateDriverData.S deleted file mode 100644 index cac72d261..000000000 --- a/libc/nt/gdi32/D3DKMTGetResourcePresentPrivateDriverData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetResourcePresentPrivateDriverData,D3DKMTGetResourcePresentPrivateDriverData,1183 diff --git a/libc/nt/gdi32/D3DKMTGetRuntimeData.S b/libc/nt/gdi32/D3DKMTGetRuntimeData.S deleted file mode 100644 index e8c1dc0bb..000000000 --- a/libc/nt/gdi32/D3DKMTGetRuntimeData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetRuntimeData,D3DKMTGetRuntimeData,1184 diff --git a/libc/nt/gdi32/D3DKMTGetScanLine.S b/libc/nt/gdi32/D3DKMTGetScanLine.S deleted file mode 100644 index 659660e75..000000000 --- a/libc/nt/gdi32/D3DKMTGetScanLine.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetScanLine,D3DKMTGetScanLine,1185 diff --git a/libc/nt/gdi32/D3DKMTGetSetSwapChainMetadata.S b/libc/nt/gdi32/D3DKMTGetSetSwapChainMetadata.S deleted file mode 100644 index f6e0b494f..000000000 --- a/libc/nt/gdi32/D3DKMTGetSetSwapChainMetadata.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetSetSwapChainMetadata,D3DKMTGetSetSwapChainMetadata,1186 diff --git a/libc/nt/gdi32/D3DKMTGetSharedPrimaryHandle.S b/libc/nt/gdi32/D3DKMTGetSharedPrimaryHandle.S deleted file mode 100644 index 00cb41827..000000000 --- a/libc/nt/gdi32/D3DKMTGetSharedPrimaryHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetSharedPrimaryHandle,D3DKMTGetSharedPrimaryHandle,1187 diff --git a/libc/nt/gdi32/D3DKMTGetSharedResourceAdapterLuid.S b/libc/nt/gdi32/D3DKMTGetSharedResourceAdapterLuid.S deleted file mode 100644 index c88fc6e41..000000000 --- a/libc/nt/gdi32/D3DKMTGetSharedResourceAdapterLuid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetSharedResourceAdapterLuid,D3DKMTGetSharedResourceAdapterLuid,1188 diff --git a/libc/nt/gdi32/D3DKMTGetYieldPercentage.S b/libc/nt/gdi32/D3DKMTGetYieldPercentage.S deleted file mode 100644 index 7050e6f55..000000000 --- a/libc/nt/gdi32/D3DKMTGetYieldPercentage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTGetYieldPercentage,D3DKMTGetYieldPercentage,1189 diff --git a/libc/nt/gdi32/D3DKMTInvalidateActiveVidPn.S b/libc/nt/gdi32/D3DKMTInvalidateActiveVidPn.S deleted file mode 100644 index 5a07ba004..000000000 --- a/libc/nt/gdi32/D3DKMTInvalidateActiveVidPn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTInvalidateActiveVidPn,D3DKMTInvalidateActiveVidPn,1190 diff --git a/libc/nt/gdi32/D3DKMTInvalidateCache.S b/libc/nt/gdi32/D3DKMTInvalidateCache.S deleted file mode 100644 index a630a6c5b..000000000 --- a/libc/nt/gdi32/D3DKMTInvalidateCache.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTInvalidateCache,D3DKMTInvalidateCache,1191 diff --git a/libc/nt/gdi32/D3DKMTLock.S b/libc/nt/gdi32/D3DKMTLock.S deleted file mode 100644 index dd822ad97..000000000 --- a/libc/nt/gdi32/D3DKMTLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTLock,D3DKMTLock,1192 diff --git a/libc/nt/gdi32/D3DKMTLock2.S b/libc/nt/gdi32/D3DKMTLock2.S deleted file mode 100644 index b8b9eafc5..000000000 --- a/libc/nt/gdi32/D3DKMTLock2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTLock2,D3DKMTLock2,1193 diff --git a/libc/nt/gdi32/D3DKMTMakeResident.S b/libc/nt/gdi32/D3DKMTMakeResident.S deleted file mode 100644 index a0de9568c..000000000 --- a/libc/nt/gdi32/D3DKMTMakeResident.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTMakeResident,D3DKMTMakeResident,1194 diff --git a/libc/nt/gdi32/D3DKMTMapGpuVirtualAddress.S b/libc/nt/gdi32/D3DKMTMapGpuVirtualAddress.S deleted file mode 100644 index 623210b67..000000000 --- a/libc/nt/gdi32/D3DKMTMapGpuVirtualAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTMapGpuVirtualAddress,D3DKMTMapGpuVirtualAddress,1195 diff --git a/libc/nt/gdi32/D3DKMTMarkDeviceAsError.S b/libc/nt/gdi32/D3DKMTMarkDeviceAsError.S deleted file mode 100644 index cb4174dad..000000000 --- a/libc/nt/gdi32/D3DKMTMarkDeviceAsError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTMarkDeviceAsError,D3DKMTMarkDeviceAsError,1196 diff --git a/libc/nt/gdi32/D3DKMTNetDispGetNextChunkInfo.S b/libc/nt/gdi32/D3DKMTNetDispGetNextChunkInfo.S deleted file mode 100644 index 0d798718b..000000000 --- a/libc/nt/gdi32/D3DKMTNetDispGetNextChunkInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTNetDispGetNextChunkInfo,D3DKMTNetDispGetNextChunkInfo,1197 diff --git a/libc/nt/gdi32/D3DKMTNetDispQueryMiracastDisplayDeviceStatus.S b/libc/nt/gdi32/D3DKMTNetDispQueryMiracastDisplayDeviceStatus.S deleted file mode 100644 index 2d1f61b3d..000000000 --- a/libc/nt/gdi32/D3DKMTNetDispQueryMiracastDisplayDeviceStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTNetDispQueryMiracastDisplayDeviceStatus,D3DKMTNetDispQueryMiracastDisplayDeviceStatus,1198 diff --git a/libc/nt/gdi32/D3DKMTNetDispQueryMiracastDisplayDeviceSupport.S b/libc/nt/gdi32/D3DKMTNetDispQueryMiracastDisplayDeviceSupport.S deleted file mode 100644 index 34e7ee501..000000000 --- a/libc/nt/gdi32/D3DKMTNetDispQueryMiracastDisplayDeviceSupport.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTNetDispQueryMiracastDisplayDeviceSupport,D3DKMTNetDispQueryMiracastDisplayDeviceSupport,1199 diff --git a/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDevice.S b/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDevice.S deleted file mode 100644 index 19c9fcd0e..000000000 --- a/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDevice.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTNetDispStartMiracastDisplayDevice,D3DKMTNetDispStartMiracastDisplayDevice,1200 diff --git a/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDevice2.S b/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDevice2.S deleted file mode 100644 index b01224333..000000000 --- a/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDevice2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTNetDispStartMiracastDisplayDevice2,D3DKMTNetDispStartMiracastDisplayDevice2,1201 diff --git a/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDeviceEx.S b/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDeviceEx.S deleted file mode 100644 index eeb886428..000000000 --- a/libc/nt/gdi32/D3DKMTNetDispStartMiracastDisplayDeviceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTNetDispStartMiracastDisplayDeviceEx,D3DKMTNetDispStartMiracastDisplayDeviceEx,1202 diff --git a/libc/nt/gdi32/D3DKMTNetDispStopMiracastDisplayDevice.S b/libc/nt/gdi32/D3DKMTNetDispStopMiracastDisplayDevice.S deleted file mode 100644 index 680d752db..000000000 --- a/libc/nt/gdi32/D3DKMTNetDispStopMiracastDisplayDevice.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTNetDispStopMiracastDisplayDevice,D3DKMTNetDispStopMiracastDisplayDevice,1203 diff --git a/libc/nt/gdi32/D3DKMTNetDispStopSessions.S b/libc/nt/gdi32/D3DKMTNetDispStopSessions.S deleted file mode 100644 index 502ab9c28..000000000 --- a/libc/nt/gdi32/D3DKMTNetDispStopSessions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTNetDispStopSessions,D3DKMTNetDispStopSessions,1204 diff --git a/libc/nt/gdi32/D3DKMTOfferAllocations.S b/libc/nt/gdi32/D3DKMTOfferAllocations.S deleted file mode 100644 index 33cd56d1e..000000000 --- a/libc/nt/gdi32/D3DKMTOfferAllocations.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOfferAllocations,D3DKMTOfferAllocations,1205 diff --git a/libc/nt/gdi32/D3DKMTOpenAdapterFromDeviceName.S b/libc/nt/gdi32/D3DKMTOpenAdapterFromDeviceName.S deleted file mode 100644 index 7c3d82ded..000000000 --- a/libc/nt/gdi32/D3DKMTOpenAdapterFromDeviceName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenAdapterFromDeviceName,D3DKMTOpenAdapterFromDeviceName,1206 diff --git a/libc/nt/gdi32/D3DKMTOpenAdapterFromGdiDisplayName.S b/libc/nt/gdi32/D3DKMTOpenAdapterFromGdiDisplayName.S deleted file mode 100644 index 20002bb0c..000000000 --- a/libc/nt/gdi32/D3DKMTOpenAdapterFromGdiDisplayName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenAdapterFromGdiDisplayName,D3DKMTOpenAdapterFromGdiDisplayName,1207 diff --git a/libc/nt/gdi32/D3DKMTOpenAdapterFromHdc.S b/libc/nt/gdi32/D3DKMTOpenAdapterFromHdc.S deleted file mode 100644 index bb28a0be9..000000000 --- a/libc/nt/gdi32/D3DKMTOpenAdapterFromHdc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenAdapterFromHdc,D3DKMTOpenAdapterFromHdc,1208 diff --git a/libc/nt/gdi32/D3DKMTOpenAdapterFromLuid.S b/libc/nt/gdi32/D3DKMTOpenAdapterFromLuid.S deleted file mode 100644 index 6cca7daa4..000000000 --- a/libc/nt/gdi32/D3DKMTOpenAdapterFromLuid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenAdapterFromLuid,D3DKMTOpenAdapterFromLuid,1209 diff --git a/libc/nt/gdi32/D3DKMTOpenBundleObjectNtHandleFromName.S b/libc/nt/gdi32/D3DKMTOpenBundleObjectNtHandleFromName.S deleted file mode 100644 index 2de376ed4..000000000 --- a/libc/nt/gdi32/D3DKMTOpenBundleObjectNtHandleFromName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenBundleObjectNtHandleFromName,D3DKMTOpenBundleObjectNtHandleFromName,1210 diff --git a/libc/nt/gdi32/D3DKMTOpenKeyedMutex.S b/libc/nt/gdi32/D3DKMTOpenKeyedMutex.S deleted file mode 100644 index 27ae91bc7..000000000 --- a/libc/nt/gdi32/D3DKMTOpenKeyedMutex.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenKeyedMutex,D3DKMTOpenKeyedMutex,1211 diff --git a/libc/nt/gdi32/D3DKMTOpenKeyedMutex2.S b/libc/nt/gdi32/D3DKMTOpenKeyedMutex2.S deleted file mode 100644 index be7331769..000000000 --- a/libc/nt/gdi32/D3DKMTOpenKeyedMutex2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenKeyedMutex2,D3DKMTOpenKeyedMutex2,1212 diff --git a/libc/nt/gdi32/D3DKMTOpenKeyedMutexFromNtHandle.S b/libc/nt/gdi32/D3DKMTOpenKeyedMutexFromNtHandle.S deleted file mode 100644 index 69af00e05..000000000 --- a/libc/nt/gdi32/D3DKMTOpenKeyedMutexFromNtHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenKeyedMutexFromNtHandle,D3DKMTOpenKeyedMutexFromNtHandle,1213 diff --git a/libc/nt/gdi32/D3DKMTOpenNtHandleFromName.S b/libc/nt/gdi32/D3DKMTOpenNtHandleFromName.S deleted file mode 100644 index 52ecbb953..000000000 --- a/libc/nt/gdi32/D3DKMTOpenNtHandleFromName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenNtHandleFromName,D3DKMTOpenNtHandleFromName,1214 diff --git a/libc/nt/gdi32/D3DKMTOpenProtectedSessionFromNtHandle.S b/libc/nt/gdi32/D3DKMTOpenProtectedSessionFromNtHandle.S deleted file mode 100644 index da23deb00..000000000 --- a/libc/nt/gdi32/D3DKMTOpenProtectedSessionFromNtHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenProtectedSessionFromNtHandle,D3DKMTOpenProtectedSessionFromNtHandle,1215 diff --git a/libc/nt/gdi32/D3DKMTOpenResource.S b/libc/nt/gdi32/D3DKMTOpenResource.S deleted file mode 100644 index f57dd24a5..000000000 --- a/libc/nt/gdi32/D3DKMTOpenResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenResource,D3DKMTOpenResource,1216 diff --git a/libc/nt/gdi32/D3DKMTOpenResource2.S b/libc/nt/gdi32/D3DKMTOpenResource2.S deleted file mode 100644 index ebf8c688d..000000000 --- a/libc/nt/gdi32/D3DKMTOpenResource2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenResource2,D3DKMTOpenResource2,1217 diff --git a/libc/nt/gdi32/D3DKMTOpenResourceFromNtHandle.S b/libc/nt/gdi32/D3DKMTOpenResourceFromNtHandle.S deleted file mode 100644 index 85d6cb188..000000000 --- a/libc/nt/gdi32/D3DKMTOpenResourceFromNtHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenResourceFromNtHandle,D3DKMTOpenResourceFromNtHandle,1218 diff --git a/libc/nt/gdi32/D3DKMTOpenSwapChain.S b/libc/nt/gdi32/D3DKMTOpenSwapChain.S deleted file mode 100644 index 5b8f6409f..000000000 --- a/libc/nt/gdi32/D3DKMTOpenSwapChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenSwapChain,D3DKMTOpenSwapChain,1219 diff --git a/libc/nt/gdi32/D3DKMTOpenSyncObjectFromNtHandle.S b/libc/nt/gdi32/D3DKMTOpenSyncObjectFromNtHandle.S deleted file mode 100644 index 202f460a0..000000000 --- a/libc/nt/gdi32/D3DKMTOpenSyncObjectFromNtHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenSyncObjectFromNtHandle,D3DKMTOpenSyncObjectFromNtHandle,1220 diff --git a/libc/nt/gdi32/D3DKMTOpenSyncObjectFromNtHandle2.S b/libc/nt/gdi32/D3DKMTOpenSyncObjectFromNtHandle2.S deleted file mode 100644 index 9adbc7910..000000000 --- a/libc/nt/gdi32/D3DKMTOpenSyncObjectFromNtHandle2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenSyncObjectFromNtHandle2,D3DKMTOpenSyncObjectFromNtHandle2,1221 diff --git a/libc/nt/gdi32/D3DKMTOpenSyncObjectNtHandleFromName.S b/libc/nt/gdi32/D3DKMTOpenSyncObjectNtHandleFromName.S deleted file mode 100644 index f53d8e917..000000000 --- a/libc/nt/gdi32/D3DKMTOpenSyncObjectNtHandleFromName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenSyncObjectNtHandleFromName,D3DKMTOpenSyncObjectNtHandleFromName,1222 diff --git a/libc/nt/gdi32/D3DKMTOpenSynchronizationObject.S b/libc/nt/gdi32/D3DKMTOpenSynchronizationObject.S deleted file mode 100644 index 0a861ff1d..000000000 --- a/libc/nt/gdi32/D3DKMTOpenSynchronizationObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOpenSynchronizationObject,D3DKMTOpenSynchronizationObject,1223 diff --git a/libc/nt/gdi32/D3DKMTOutputDuplGetFrameInfo.S b/libc/nt/gdi32/D3DKMTOutputDuplGetFrameInfo.S deleted file mode 100644 index 3aa5360dd..000000000 --- a/libc/nt/gdi32/D3DKMTOutputDuplGetFrameInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOutputDuplGetFrameInfo,D3DKMTOutputDuplGetFrameInfo,1224 diff --git a/libc/nt/gdi32/D3DKMTOutputDuplGetMetaData.S b/libc/nt/gdi32/D3DKMTOutputDuplGetMetaData.S deleted file mode 100644 index 402df9082..000000000 --- a/libc/nt/gdi32/D3DKMTOutputDuplGetMetaData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOutputDuplGetMetaData,D3DKMTOutputDuplGetMetaData,1225 diff --git a/libc/nt/gdi32/D3DKMTOutputDuplGetPointerShapeData.S b/libc/nt/gdi32/D3DKMTOutputDuplGetPointerShapeData.S deleted file mode 100644 index 8e0edb9a6..000000000 --- a/libc/nt/gdi32/D3DKMTOutputDuplGetPointerShapeData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOutputDuplGetPointerShapeData,D3DKMTOutputDuplGetPointerShapeData,1226 diff --git a/libc/nt/gdi32/D3DKMTOutputDuplPresent.S b/libc/nt/gdi32/D3DKMTOutputDuplPresent.S deleted file mode 100644 index 655266e90..000000000 --- a/libc/nt/gdi32/D3DKMTOutputDuplPresent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOutputDuplPresent,D3DKMTOutputDuplPresent,1227 diff --git a/libc/nt/gdi32/D3DKMTOutputDuplReleaseFrame.S b/libc/nt/gdi32/D3DKMTOutputDuplReleaseFrame.S deleted file mode 100644 index fe6eba198..000000000 --- a/libc/nt/gdi32/D3DKMTOutputDuplReleaseFrame.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTOutputDuplReleaseFrame,D3DKMTOutputDuplReleaseFrame,1228 diff --git a/libc/nt/gdi32/D3DKMTPinDirectFlipResources.S b/libc/nt/gdi32/D3DKMTPinDirectFlipResources.S deleted file mode 100644 index 9841e64f5..000000000 --- a/libc/nt/gdi32/D3DKMTPinDirectFlipResources.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTPinDirectFlipResources,D3DKMTPinDirectFlipResources,1229 diff --git a/libc/nt/gdi32/D3DKMTPollDisplayChildren.S b/libc/nt/gdi32/D3DKMTPollDisplayChildren.S deleted file mode 100644 index eb1c2133d..000000000 --- a/libc/nt/gdi32/D3DKMTPollDisplayChildren.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTPollDisplayChildren,D3DKMTPollDisplayChildren,1230 diff --git a/libc/nt/gdi32/D3DKMTPresent.S b/libc/nt/gdi32/D3DKMTPresent.S deleted file mode 100644 index 8ebcfe2c7..000000000 --- a/libc/nt/gdi32/D3DKMTPresent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTPresent,D3DKMTPresent,1231 diff --git a/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay.S b/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay.S deleted file mode 100644 index 06e803d59..000000000 --- a/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTPresentMultiPlaneOverlay,D3DKMTPresentMultiPlaneOverlay,1232 diff --git a/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay2.S b/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay2.S deleted file mode 100644 index 59923d06f..000000000 --- a/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTPresentMultiPlaneOverlay2,D3DKMTPresentMultiPlaneOverlay2,1233 diff --git a/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay3.S b/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay3.S deleted file mode 100644 index 56293fb21..000000000 --- a/libc/nt/gdi32/D3DKMTPresentMultiPlaneOverlay3.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTPresentMultiPlaneOverlay3,D3DKMTPresentMultiPlaneOverlay3,1234 diff --git a/libc/nt/gdi32/D3DKMTPresentRedirected.S b/libc/nt/gdi32/D3DKMTPresentRedirected.S deleted file mode 100644 index 171cc2eac..000000000 --- a/libc/nt/gdi32/D3DKMTPresentRedirected.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTPresentRedirected,D3DKMTPresentRedirected,1235 diff --git a/libc/nt/gdi32/D3DKMTQueryAdapterInfo.S b/libc/nt/gdi32/D3DKMTQueryAdapterInfo.S deleted file mode 100644 index a4ff36505..000000000 --- a/libc/nt/gdi32/D3DKMTQueryAdapterInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryAdapterInfo,D3DKMTQueryAdapterInfo,1236 diff --git a/libc/nt/gdi32/D3DKMTQueryAllocationResidency.S b/libc/nt/gdi32/D3DKMTQueryAllocationResidency.S deleted file mode 100644 index e15490021..000000000 --- a/libc/nt/gdi32/D3DKMTQueryAllocationResidency.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryAllocationResidency,D3DKMTQueryAllocationResidency,1237 diff --git a/libc/nt/gdi32/D3DKMTQueryClockCalibration.S b/libc/nt/gdi32/D3DKMTQueryClockCalibration.S deleted file mode 100644 index fff7be79f..000000000 --- a/libc/nt/gdi32/D3DKMTQueryClockCalibration.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryClockCalibration,D3DKMTQueryClockCalibration,1238 diff --git a/libc/nt/gdi32/D3DKMTQueryFSEBlock.S b/libc/nt/gdi32/D3DKMTQueryFSEBlock.S deleted file mode 100644 index c2f1203b4..000000000 --- a/libc/nt/gdi32/D3DKMTQueryFSEBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryFSEBlock,D3DKMTQueryFSEBlock,1239 diff --git a/libc/nt/gdi32/D3DKMTQueryProcessOfferInfo.S b/libc/nt/gdi32/D3DKMTQueryProcessOfferInfo.S deleted file mode 100644 index 129bc0968..000000000 --- a/libc/nt/gdi32/D3DKMTQueryProcessOfferInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryProcessOfferInfo,D3DKMTQueryProcessOfferInfo,1240 diff --git a/libc/nt/gdi32/D3DKMTQueryProtectedSessionInfoFromNtHandle.S b/libc/nt/gdi32/D3DKMTQueryProtectedSessionInfoFromNtHandle.S deleted file mode 100644 index 7be0074eb..000000000 --- a/libc/nt/gdi32/D3DKMTQueryProtectedSessionInfoFromNtHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryProtectedSessionInfoFromNtHandle,D3DKMTQueryProtectedSessionInfoFromNtHandle,1241 diff --git a/libc/nt/gdi32/D3DKMTQueryProtectedSessionStatus.S b/libc/nt/gdi32/D3DKMTQueryProtectedSessionStatus.S deleted file mode 100644 index 0f02e178b..000000000 --- a/libc/nt/gdi32/D3DKMTQueryProtectedSessionStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryProtectedSessionStatus,D3DKMTQueryProtectedSessionStatus,1242 diff --git a/libc/nt/gdi32/D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName.S b/libc/nt/gdi32/D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName.S deleted file mode 100644 index 8170d37d6..000000000 --- a/libc/nt/gdi32/D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName,D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName,1243 diff --git a/libc/nt/gdi32/D3DKMTQueryResourceInfo.S b/libc/nt/gdi32/D3DKMTQueryResourceInfo.S deleted file mode 100644 index 1e8c5232e..000000000 --- a/libc/nt/gdi32/D3DKMTQueryResourceInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryResourceInfo,D3DKMTQueryResourceInfo,1244 diff --git a/libc/nt/gdi32/D3DKMTQueryResourceInfoFromNtHandle.S b/libc/nt/gdi32/D3DKMTQueryResourceInfoFromNtHandle.S deleted file mode 100644 index ee530642e..000000000 --- a/libc/nt/gdi32/D3DKMTQueryResourceInfoFromNtHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryResourceInfoFromNtHandle,D3DKMTQueryResourceInfoFromNtHandle,1245 diff --git a/libc/nt/gdi32/D3DKMTQueryStatistics.S b/libc/nt/gdi32/D3DKMTQueryStatistics.S deleted file mode 100644 index 2249b3af5..000000000 --- a/libc/nt/gdi32/D3DKMTQueryStatistics.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryStatistics,D3DKMTQueryStatistics,1246 diff --git a/libc/nt/gdi32/D3DKMTQueryVidPnExclusiveOwnership.S b/libc/nt/gdi32/D3DKMTQueryVidPnExclusiveOwnership.S deleted file mode 100644 index 1e961ebb7..000000000 --- a/libc/nt/gdi32/D3DKMTQueryVidPnExclusiveOwnership.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryVidPnExclusiveOwnership,D3DKMTQueryVidPnExclusiveOwnership,1247 diff --git a/libc/nt/gdi32/D3DKMTQueryVideoMemoryInfo.S b/libc/nt/gdi32/D3DKMTQueryVideoMemoryInfo.S deleted file mode 100644 index 1217effa3..000000000 --- a/libc/nt/gdi32/D3DKMTQueryVideoMemoryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTQueryVideoMemoryInfo,D3DKMTQueryVideoMemoryInfo,1248 diff --git a/libc/nt/gdi32/D3DKMTReclaimAllocations.S b/libc/nt/gdi32/D3DKMTReclaimAllocations.S deleted file mode 100644 index d55caa374..000000000 --- a/libc/nt/gdi32/D3DKMTReclaimAllocations.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTReclaimAllocations,D3DKMTReclaimAllocations,1249 diff --git a/libc/nt/gdi32/D3DKMTReclaimAllocations2.S b/libc/nt/gdi32/D3DKMTReclaimAllocations2.S deleted file mode 100644 index 891ddc781..000000000 --- a/libc/nt/gdi32/D3DKMTReclaimAllocations2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTReclaimAllocations2,D3DKMTReclaimAllocations2,1250 diff --git a/libc/nt/gdi32/D3DKMTRegisterTrimNotification.S b/libc/nt/gdi32/D3DKMTRegisterTrimNotification.S deleted file mode 100644 index fe712bbdb..000000000 --- a/libc/nt/gdi32/D3DKMTRegisterTrimNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTRegisterTrimNotification,D3DKMTRegisterTrimNotification,1251 diff --git a/libc/nt/gdi32/D3DKMTRegisterVailProcess.S b/libc/nt/gdi32/D3DKMTRegisterVailProcess.S deleted file mode 100644 index 512491270..000000000 --- a/libc/nt/gdi32/D3DKMTRegisterVailProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTRegisterVailProcess,D3DKMTRegisterVailProcess,1252 diff --git a/libc/nt/gdi32/D3DKMTReleaseKeyedMutex.S b/libc/nt/gdi32/D3DKMTReleaseKeyedMutex.S deleted file mode 100644 index 66c650ab0..000000000 --- a/libc/nt/gdi32/D3DKMTReleaseKeyedMutex.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTReleaseKeyedMutex,D3DKMTReleaseKeyedMutex,1253 diff --git a/libc/nt/gdi32/D3DKMTReleaseKeyedMutex2.S b/libc/nt/gdi32/D3DKMTReleaseKeyedMutex2.S deleted file mode 100644 index 4cc53c011..000000000 --- a/libc/nt/gdi32/D3DKMTReleaseKeyedMutex2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTReleaseKeyedMutex2,D3DKMTReleaseKeyedMutex2,1254 diff --git a/libc/nt/gdi32/D3DKMTReleaseProcessVidPnSourceOwners.S b/libc/nt/gdi32/D3DKMTReleaseProcessVidPnSourceOwners.S deleted file mode 100644 index 375f8027b..000000000 --- a/libc/nt/gdi32/D3DKMTReleaseProcessVidPnSourceOwners.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTReleaseProcessVidPnSourceOwners,D3DKMTReleaseProcessVidPnSourceOwners,1255 diff --git a/libc/nt/gdi32/D3DKMTReleaseSwapChain.S b/libc/nt/gdi32/D3DKMTReleaseSwapChain.S deleted file mode 100644 index 7e0feec87..000000000 --- a/libc/nt/gdi32/D3DKMTReleaseSwapChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTReleaseSwapChain,D3DKMTReleaseSwapChain,1256 diff --git a/libc/nt/gdi32/D3DKMTRemoveSurfaceFromSwapChain.S b/libc/nt/gdi32/D3DKMTRemoveSurfaceFromSwapChain.S deleted file mode 100644 index 234ff35d0..000000000 --- a/libc/nt/gdi32/D3DKMTRemoveSurfaceFromSwapChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTRemoveSurfaceFromSwapChain,D3DKMTRemoveSurfaceFromSwapChain,1257 diff --git a/libc/nt/gdi32/D3DKMTRender.S b/libc/nt/gdi32/D3DKMTRender.S deleted file mode 100644 index 7c2de17bc..000000000 --- a/libc/nt/gdi32/D3DKMTRender.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTRender,D3DKMTRender,1258 diff --git a/libc/nt/gdi32/D3DKMTReserveGpuVirtualAddress.S b/libc/nt/gdi32/D3DKMTReserveGpuVirtualAddress.S deleted file mode 100644 index 4eec1268a..000000000 --- a/libc/nt/gdi32/D3DKMTReserveGpuVirtualAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTReserveGpuVirtualAddress,D3DKMTReserveGpuVirtualAddress,1259 diff --git a/libc/nt/gdi32/D3DKMTSetAllocationPriority.S b/libc/nt/gdi32/D3DKMTSetAllocationPriority.S deleted file mode 100644 index dca9ec407..000000000 --- a/libc/nt/gdi32/D3DKMTSetAllocationPriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetAllocationPriority,D3DKMTSetAllocationPriority,1260 diff --git a/libc/nt/gdi32/D3DKMTSetContextInProcessSchedulingPriority.S b/libc/nt/gdi32/D3DKMTSetContextInProcessSchedulingPriority.S deleted file mode 100644 index 631e486df..000000000 --- a/libc/nt/gdi32/D3DKMTSetContextInProcessSchedulingPriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetContextInProcessSchedulingPriority,D3DKMTSetContextInProcessSchedulingPriority,1261 diff --git a/libc/nt/gdi32/D3DKMTSetContextSchedulingPriority.S b/libc/nt/gdi32/D3DKMTSetContextSchedulingPriority.S deleted file mode 100644 index aed7766fe..000000000 --- a/libc/nt/gdi32/D3DKMTSetContextSchedulingPriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetContextSchedulingPriority,D3DKMTSetContextSchedulingPriority,1262 diff --git a/libc/nt/gdi32/D3DKMTSetDisplayMode.S b/libc/nt/gdi32/D3DKMTSetDisplayMode.S deleted file mode 100644 index e30950d00..000000000 --- a/libc/nt/gdi32/D3DKMTSetDisplayMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetDisplayMode,D3DKMTSetDisplayMode,1263 diff --git a/libc/nt/gdi32/D3DKMTSetDisplayPrivateDriverFormat.S b/libc/nt/gdi32/D3DKMTSetDisplayPrivateDriverFormat.S deleted file mode 100644 index b14a29b7b..000000000 --- a/libc/nt/gdi32/D3DKMTSetDisplayPrivateDriverFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetDisplayPrivateDriverFormat,D3DKMTSetDisplayPrivateDriverFormat,1264 diff --git a/libc/nt/gdi32/D3DKMTSetDodIndirectSwapchain.S b/libc/nt/gdi32/D3DKMTSetDodIndirectSwapchain.S deleted file mode 100644 index aa959d45b..000000000 --- a/libc/nt/gdi32/D3DKMTSetDodIndirectSwapchain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetDodIndirectSwapchain,D3DKMTSetDodIndirectSwapchain,1265 diff --git a/libc/nt/gdi32/D3DKMTSetFSEBlock.S b/libc/nt/gdi32/D3DKMTSetFSEBlock.S deleted file mode 100644 index d0f73ce57..000000000 --- a/libc/nt/gdi32/D3DKMTSetFSEBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetFSEBlock,D3DKMTSetFSEBlock,1266 diff --git a/libc/nt/gdi32/D3DKMTSetGammaRamp.S b/libc/nt/gdi32/D3DKMTSetGammaRamp.S deleted file mode 100644 index 956888299..000000000 --- a/libc/nt/gdi32/D3DKMTSetGammaRamp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetGammaRamp,D3DKMTSetGammaRamp,1267 diff --git a/libc/nt/gdi32/D3DKMTSetHwProtectionTeardownRecovery.S b/libc/nt/gdi32/D3DKMTSetHwProtectionTeardownRecovery.S deleted file mode 100644 index 00450afec..000000000 --- a/libc/nt/gdi32/D3DKMTSetHwProtectionTeardownRecovery.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetHwProtectionTeardownRecovery,D3DKMTSetHwProtectionTeardownRecovery,1268 diff --git a/libc/nt/gdi32/D3DKMTSetMemoryBudgetTarget.S b/libc/nt/gdi32/D3DKMTSetMemoryBudgetTarget.S deleted file mode 100644 index 17118dada..000000000 --- a/libc/nt/gdi32/D3DKMTSetMemoryBudgetTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetMemoryBudgetTarget,D3DKMTSetMemoryBudgetTarget,1269 diff --git a/libc/nt/gdi32/D3DKMTSetMonitorColorSpaceTransform.S b/libc/nt/gdi32/D3DKMTSetMonitorColorSpaceTransform.S deleted file mode 100644 index efd4f0e2b..000000000 --- a/libc/nt/gdi32/D3DKMTSetMonitorColorSpaceTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetMonitorColorSpaceTransform,D3DKMTSetMonitorColorSpaceTransform,1270 diff --git a/libc/nt/gdi32/D3DKMTSetProcessDeviceRemovalSupport.S b/libc/nt/gdi32/D3DKMTSetProcessDeviceRemovalSupport.S deleted file mode 100644 index 6e733668a..000000000 --- a/libc/nt/gdi32/D3DKMTSetProcessDeviceRemovalSupport.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetProcessDeviceRemovalSupport,D3DKMTSetProcessDeviceRemovalSupport,1271 diff --git a/libc/nt/gdi32/D3DKMTSetProcessSchedulingPriorityBand.S b/libc/nt/gdi32/D3DKMTSetProcessSchedulingPriorityBand.S deleted file mode 100644 index 3b16cfe49..000000000 --- a/libc/nt/gdi32/D3DKMTSetProcessSchedulingPriorityBand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetProcessSchedulingPriorityBand,D3DKMTSetProcessSchedulingPriorityBand,1272 diff --git a/libc/nt/gdi32/D3DKMTSetProcessSchedulingPriorityClass.S b/libc/nt/gdi32/D3DKMTSetProcessSchedulingPriorityClass.S deleted file mode 100644 index 6ecfa98b8..000000000 --- a/libc/nt/gdi32/D3DKMTSetProcessSchedulingPriorityClass.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetProcessSchedulingPriorityClass,D3DKMTSetProcessSchedulingPriorityClass,1273 diff --git a/libc/nt/gdi32/D3DKMTSetQueuedLimit.S b/libc/nt/gdi32/D3DKMTSetQueuedLimit.S deleted file mode 100644 index ec6ba292b..000000000 --- a/libc/nt/gdi32/D3DKMTSetQueuedLimit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetQueuedLimit,D3DKMTSetQueuedLimit,1274 diff --git a/libc/nt/gdi32/D3DKMTSetStablePowerState.S b/libc/nt/gdi32/D3DKMTSetStablePowerState.S deleted file mode 100644 index e21fe7b07..000000000 --- a/libc/nt/gdi32/D3DKMTSetStablePowerState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetStablePowerState,D3DKMTSetStablePowerState,1275 diff --git a/libc/nt/gdi32/D3DKMTSetStereoEnabled.S b/libc/nt/gdi32/D3DKMTSetStereoEnabled.S deleted file mode 100644 index 67b958198..000000000 --- a/libc/nt/gdi32/D3DKMTSetStereoEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetStereoEnabled,D3DKMTSetStereoEnabled,1276 diff --git a/libc/nt/gdi32/D3DKMTSetSyncRefreshCountWaitTarget.S b/libc/nt/gdi32/D3DKMTSetSyncRefreshCountWaitTarget.S deleted file mode 100644 index 03af21041..000000000 --- a/libc/nt/gdi32/D3DKMTSetSyncRefreshCountWaitTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetSyncRefreshCountWaitTarget,D3DKMTSetSyncRefreshCountWaitTarget,1277 diff --git a/libc/nt/gdi32/D3DKMTSetVidPnSourceHwProtection.S b/libc/nt/gdi32/D3DKMTSetVidPnSourceHwProtection.S deleted file mode 100644 index efde21949..000000000 --- a/libc/nt/gdi32/D3DKMTSetVidPnSourceHwProtection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetVidPnSourceHwProtection,D3DKMTSetVidPnSourceHwProtection,1278 diff --git a/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner.S b/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner.S deleted file mode 100644 index 470a286db..000000000 --- a/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetVidPnSourceOwner,D3DKMTSetVidPnSourceOwner,1279 diff --git a/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner1.S b/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner1.S deleted file mode 100644 index 0c64bc4c9..000000000 --- a/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner1.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetVidPnSourceOwner1,D3DKMTSetVidPnSourceOwner1,1280 diff --git a/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner2.S b/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner2.S deleted file mode 100644 index ebfcb1e9f..000000000 --- a/libc/nt/gdi32/D3DKMTSetVidPnSourceOwner2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetVidPnSourceOwner2,D3DKMTSetVidPnSourceOwner2,1281 diff --git a/libc/nt/gdi32/D3DKMTSetYieldPercentage.S b/libc/nt/gdi32/D3DKMTSetYieldPercentage.S deleted file mode 100644 index 1e0a27cf1..000000000 --- a/libc/nt/gdi32/D3DKMTSetYieldPercentage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSetYieldPercentage,D3DKMTSetYieldPercentage,1282 diff --git a/libc/nt/gdi32/D3DKMTShareObjects.S b/libc/nt/gdi32/D3DKMTShareObjects.S deleted file mode 100644 index f563aaafd..000000000 --- a/libc/nt/gdi32/D3DKMTShareObjects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTShareObjects,D3DKMTShareObjects,1283 diff --git a/libc/nt/gdi32/D3DKMTSharedPrimaryLockNotification.S b/libc/nt/gdi32/D3DKMTSharedPrimaryLockNotification.S deleted file mode 100644 index f9ae9ce25..000000000 --- a/libc/nt/gdi32/D3DKMTSharedPrimaryLockNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSharedPrimaryLockNotification,D3DKMTSharedPrimaryLockNotification,1284 diff --git a/libc/nt/gdi32/D3DKMTSharedPrimaryUnLockNotification.S b/libc/nt/gdi32/D3DKMTSharedPrimaryUnLockNotification.S deleted file mode 100644 index 273dea90c..000000000 --- a/libc/nt/gdi32/D3DKMTSharedPrimaryUnLockNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSharedPrimaryUnLockNotification,D3DKMTSharedPrimaryUnLockNotification,1285 diff --git a/libc/nt/gdi32/D3DKMTSignalSynchronizationObject.S b/libc/nt/gdi32/D3DKMTSignalSynchronizationObject.S deleted file mode 100644 index 77d90a32e..000000000 --- a/libc/nt/gdi32/D3DKMTSignalSynchronizationObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSignalSynchronizationObject,D3DKMTSignalSynchronizationObject,1286 diff --git a/libc/nt/gdi32/D3DKMTSignalSynchronizationObject2.S b/libc/nt/gdi32/D3DKMTSignalSynchronizationObject2.S deleted file mode 100644 index 26739fddc..000000000 --- a/libc/nt/gdi32/D3DKMTSignalSynchronizationObject2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSignalSynchronizationObject2,D3DKMTSignalSynchronizationObject2,1287 diff --git a/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromCpu.S b/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromCpu.S deleted file mode 100644 index 414f44e0b..000000000 --- a/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromCpu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSignalSynchronizationObjectFromCpu,D3DKMTSignalSynchronizationObjectFromCpu,1288 diff --git a/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromGpu.S b/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromGpu.S deleted file mode 100644 index cb78d40cc..000000000 --- a/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromGpu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSignalSynchronizationObjectFromGpu,D3DKMTSignalSynchronizationObjectFromGpu,1289 diff --git a/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromGpu2.S b/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromGpu2.S deleted file mode 100644 index 6300c03f7..000000000 --- a/libc/nt/gdi32/D3DKMTSignalSynchronizationObjectFromGpu2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSignalSynchronizationObjectFromGpu2,D3DKMTSignalSynchronizationObjectFromGpu2,1290 diff --git a/libc/nt/gdi32/D3DKMTSubmitCommand.S b/libc/nt/gdi32/D3DKMTSubmitCommand.S deleted file mode 100644 index 2505a9323..000000000 --- a/libc/nt/gdi32/D3DKMTSubmitCommand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSubmitCommand,D3DKMTSubmitCommand,1291 diff --git a/libc/nt/gdi32/D3DKMTSubmitCommandToHwQueue.S b/libc/nt/gdi32/D3DKMTSubmitCommandToHwQueue.S deleted file mode 100644 index a1bd2fa0f..000000000 --- a/libc/nt/gdi32/D3DKMTSubmitCommandToHwQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSubmitCommandToHwQueue,D3DKMTSubmitCommandToHwQueue,1292 diff --git a/libc/nt/gdi32/D3DKMTSubmitPresentBltToHwQueue.S b/libc/nt/gdi32/D3DKMTSubmitPresentBltToHwQueue.S deleted file mode 100644 index d9af79f25..000000000 --- a/libc/nt/gdi32/D3DKMTSubmitPresentBltToHwQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSubmitPresentBltToHwQueue,D3DKMTSubmitPresentBltToHwQueue,1293 diff --git a/libc/nt/gdi32/D3DKMTSubmitSignalSyncObjectsToHwQueue.S b/libc/nt/gdi32/D3DKMTSubmitSignalSyncObjectsToHwQueue.S deleted file mode 100644 index b0007d19f..000000000 --- a/libc/nt/gdi32/D3DKMTSubmitSignalSyncObjectsToHwQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSubmitSignalSyncObjectsToHwQueue,D3DKMTSubmitSignalSyncObjectsToHwQueue,1294 diff --git a/libc/nt/gdi32/D3DKMTSubmitWaitForSyncObjectsToHwQueue.S b/libc/nt/gdi32/D3DKMTSubmitWaitForSyncObjectsToHwQueue.S deleted file mode 100644 index 6b9117947..000000000 --- a/libc/nt/gdi32/D3DKMTSubmitWaitForSyncObjectsToHwQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTSubmitWaitForSyncObjectsToHwQueue,D3DKMTSubmitWaitForSyncObjectsToHwQueue,1295 diff --git a/libc/nt/gdi32/D3DKMTTrimProcessCommitment.S b/libc/nt/gdi32/D3DKMTTrimProcessCommitment.S deleted file mode 100644 index 9b9889b3c..000000000 --- a/libc/nt/gdi32/D3DKMTTrimProcessCommitment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTTrimProcessCommitment,D3DKMTTrimProcessCommitment,1296 diff --git a/libc/nt/gdi32/D3DKMTUnOrderedPresentSwapChain.S b/libc/nt/gdi32/D3DKMTUnOrderedPresentSwapChain.S deleted file mode 100644 index 2f4cc9d10..000000000 --- a/libc/nt/gdi32/D3DKMTUnOrderedPresentSwapChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTUnOrderedPresentSwapChain,D3DKMTUnOrderedPresentSwapChain,1297 diff --git a/libc/nt/gdi32/D3DKMTUnlock.S b/libc/nt/gdi32/D3DKMTUnlock.S deleted file mode 100644 index fe3d20384..000000000 --- a/libc/nt/gdi32/D3DKMTUnlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTUnlock,D3DKMTUnlock,1298 diff --git a/libc/nt/gdi32/D3DKMTUnlock2.S b/libc/nt/gdi32/D3DKMTUnlock2.S deleted file mode 100644 index 968aac487..000000000 --- a/libc/nt/gdi32/D3DKMTUnlock2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTUnlock2,D3DKMTUnlock2,1299 diff --git a/libc/nt/gdi32/D3DKMTUnpinDirectFlipResources.S b/libc/nt/gdi32/D3DKMTUnpinDirectFlipResources.S deleted file mode 100644 index c417d8f47..000000000 --- a/libc/nt/gdi32/D3DKMTUnpinDirectFlipResources.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTUnpinDirectFlipResources,D3DKMTUnpinDirectFlipResources,1300 diff --git a/libc/nt/gdi32/D3DKMTUnregisterTrimNotification.S b/libc/nt/gdi32/D3DKMTUnregisterTrimNotification.S deleted file mode 100644 index aac650bf6..000000000 --- a/libc/nt/gdi32/D3DKMTUnregisterTrimNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTUnregisterTrimNotification,D3DKMTUnregisterTrimNotification,1301 diff --git a/libc/nt/gdi32/D3DKMTUpdateAllocationProperty.S b/libc/nt/gdi32/D3DKMTUpdateAllocationProperty.S deleted file mode 100644 index 01359c0b4..000000000 --- a/libc/nt/gdi32/D3DKMTUpdateAllocationProperty.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTUpdateAllocationProperty,D3DKMTUpdateAllocationProperty,1302 diff --git a/libc/nt/gdi32/D3DKMTUpdateGpuVirtualAddress.S b/libc/nt/gdi32/D3DKMTUpdateGpuVirtualAddress.S deleted file mode 100644 index 0c1dc898c..000000000 --- a/libc/nt/gdi32/D3DKMTUpdateGpuVirtualAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTUpdateGpuVirtualAddress,D3DKMTUpdateGpuVirtualAddress,1303 diff --git a/libc/nt/gdi32/D3DKMTUpdateOverlay.S b/libc/nt/gdi32/D3DKMTUpdateOverlay.S deleted file mode 100644 index 28bb1117d..000000000 --- a/libc/nt/gdi32/D3DKMTUpdateOverlay.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTUpdateOverlay,D3DKMTUpdateOverlay,1304 diff --git a/libc/nt/gdi32/D3DKMTVailConnect.S b/libc/nt/gdi32/D3DKMTVailConnect.S deleted file mode 100644 index 08113cde9..000000000 --- a/libc/nt/gdi32/D3DKMTVailConnect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTVailConnect,D3DKMTVailConnect,1305 diff --git a/libc/nt/gdi32/D3DKMTVailDisconnect.S b/libc/nt/gdi32/D3DKMTVailDisconnect.S deleted file mode 100644 index 3ee070511..000000000 --- a/libc/nt/gdi32/D3DKMTVailDisconnect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTVailDisconnect,D3DKMTVailDisconnect,1306 diff --git a/libc/nt/gdi32/D3DKMTVailPromoteCompositionSurface.S b/libc/nt/gdi32/D3DKMTVailPromoteCompositionSurface.S deleted file mode 100644 index 82d2fc125..000000000 --- a/libc/nt/gdi32/D3DKMTVailPromoteCompositionSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTVailPromoteCompositionSurface,D3DKMTVailPromoteCompositionSurface,1307 diff --git a/libc/nt/gdi32/D3DKMTWaitForIdle.S b/libc/nt/gdi32/D3DKMTWaitForIdle.S deleted file mode 100644 index b7abe9355..000000000 --- a/libc/nt/gdi32/D3DKMTWaitForIdle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTWaitForIdle,D3DKMTWaitForIdle,1308 diff --git a/libc/nt/gdi32/D3DKMTWaitForSynchronizationObject.S b/libc/nt/gdi32/D3DKMTWaitForSynchronizationObject.S deleted file mode 100644 index d31a9f94f..000000000 --- a/libc/nt/gdi32/D3DKMTWaitForSynchronizationObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTWaitForSynchronizationObject,D3DKMTWaitForSynchronizationObject,1309 diff --git a/libc/nt/gdi32/D3DKMTWaitForSynchronizationObject2.S b/libc/nt/gdi32/D3DKMTWaitForSynchronizationObject2.S deleted file mode 100644 index af8fc2335..000000000 --- a/libc/nt/gdi32/D3DKMTWaitForSynchronizationObject2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTWaitForSynchronizationObject2,D3DKMTWaitForSynchronizationObject2,1310 diff --git a/libc/nt/gdi32/D3DKMTWaitForSynchronizationObjectFromCpu.S b/libc/nt/gdi32/D3DKMTWaitForSynchronizationObjectFromCpu.S deleted file mode 100644 index d9f3decac..000000000 --- a/libc/nt/gdi32/D3DKMTWaitForSynchronizationObjectFromCpu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTWaitForSynchronizationObjectFromCpu,D3DKMTWaitForSynchronizationObjectFromCpu,1311 diff --git a/libc/nt/gdi32/D3DKMTWaitForSynchronizationObjectFromGpu.S b/libc/nt/gdi32/D3DKMTWaitForSynchronizationObjectFromGpu.S deleted file mode 100644 index 459e14862..000000000 --- a/libc/nt/gdi32/D3DKMTWaitForSynchronizationObjectFromGpu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTWaitForSynchronizationObjectFromGpu,D3DKMTWaitForSynchronizationObjectFromGpu,1312 diff --git a/libc/nt/gdi32/D3DKMTWaitForVerticalBlankEvent.S b/libc/nt/gdi32/D3DKMTWaitForVerticalBlankEvent.S deleted file mode 100644 index f917ab4a5..000000000 --- a/libc/nt/gdi32/D3DKMTWaitForVerticalBlankEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTWaitForVerticalBlankEvent,D3DKMTWaitForVerticalBlankEvent,1313 diff --git a/libc/nt/gdi32/D3DKMTWaitForVerticalBlankEvent2.S b/libc/nt/gdi32/D3DKMTWaitForVerticalBlankEvent2.S deleted file mode 100644 index 58f39ba35..000000000 --- a/libc/nt/gdi32/D3DKMTWaitForVerticalBlankEvent2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_D3DKMTWaitForVerticalBlankEvent2,D3DKMTWaitForVerticalBlankEvent2,1314 diff --git a/libc/nt/gdi32/DDCCIGetCapabilitiesString.S b/libc/nt/gdi32/DDCCIGetCapabilitiesString.S deleted file mode 100644 index ae12ebc82..000000000 --- a/libc/nt/gdi32/DDCCIGetCapabilitiesString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DDCCIGetCapabilitiesString,DDCCIGetCapabilitiesString,1315 diff --git a/libc/nt/gdi32/DDCCIGetCapabilitiesStringLength.S b/libc/nt/gdi32/DDCCIGetCapabilitiesStringLength.S deleted file mode 100644 index 6ac62be77..000000000 --- a/libc/nt/gdi32/DDCCIGetCapabilitiesStringLength.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DDCCIGetCapabilitiesStringLength,DDCCIGetCapabilitiesStringLength,1316 diff --git a/libc/nt/gdi32/DDCCIGetTimingReport.S b/libc/nt/gdi32/DDCCIGetTimingReport.S deleted file mode 100644 index 538c5e135..000000000 --- a/libc/nt/gdi32/DDCCIGetTimingReport.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DDCCIGetTimingReport,DDCCIGetTimingReport,1317 diff --git a/libc/nt/gdi32/DDCCIGetVCPFeature.S b/libc/nt/gdi32/DDCCIGetVCPFeature.S deleted file mode 100644 index 900674912..000000000 --- a/libc/nt/gdi32/DDCCIGetVCPFeature.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DDCCIGetVCPFeature,DDCCIGetVCPFeature,1318 diff --git a/libc/nt/gdi32/DDCCISaveCurrentSettings.S b/libc/nt/gdi32/DDCCISaveCurrentSettings.S deleted file mode 100644 index 1c8fb7d63..000000000 --- a/libc/nt/gdi32/DDCCISaveCurrentSettings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DDCCISaveCurrentSettings,DDCCISaveCurrentSettings,1319 diff --git a/libc/nt/gdi32/DDCCISetVCPFeature.S b/libc/nt/gdi32/DDCCISetVCPFeature.S deleted file mode 100644 index c53cc4f9e..000000000 --- a/libc/nt/gdi32/DDCCISetVCPFeature.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DDCCISetVCPFeature,DDCCISetVCPFeature,1320 diff --git a/libc/nt/gdi32/DPtoLP.S b/libc/nt/gdi32/DPtoLP.S deleted file mode 100644 index 0dc355f25..000000000 --- a/libc/nt/gdi32/DPtoLP.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DPtoLP,DPtoLP,1321 diff --git a/libc/nt/gdi32/DdCreateFullscreenSprite.S b/libc/nt/gdi32/DdCreateFullscreenSprite.S deleted file mode 100644 index f6e318d7a..000000000 --- a/libc/nt/gdi32/DdCreateFullscreenSprite.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DdCreateFullscreenSprite,DdCreateFullscreenSprite,1322 diff --git a/libc/nt/gdi32/DdDestroyFullscreenSprite.S b/libc/nt/gdi32/DdDestroyFullscreenSprite.S deleted file mode 100644 index d9ae78fdb..000000000 --- a/libc/nt/gdi32/DdDestroyFullscreenSprite.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DdDestroyFullscreenSprite,DdDestroyFullscreenSprite,1323 diff --git a/libc/nt/gdi32/DdNotifyFullscreenSpriteUpdate.S b/libc/nt/gdi32/DdNotifyFullscreenSpriteUpdate.S deleted file mode 100644 index 3dcc5f3a5..000000000 --- a/libc/nt/gdi32/DdNotifyFullscreenSpriteUpdate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DdNotifyFullscreenSpriteUpdate,DdNotifyFullscreenSpriteUpdate,1381 diff --git a/libc/nt/gdi32/DdQueryVisRgnUniqueness.S b/libc/nt/gdi32/DdQueryVisRgnUniqueness.S deleted file mode 100644 index 1e5ff8bf1..000000000 --- a/libc/nt/gdi32/DdQueryVisRgnUniqueness.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DdQueryVisRgnUniqueness,DdQueryVisRgnUniqueness,1382 diff --git a/libc/nt/gdi32/DeleteColorSpace.S b/libc/nt/gdi32/DeleteColorSpace.S deleted file mode 100644 index a97c51801..000000000 --- a/libc/nt/gdi32/DeleteColorSpace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DeleteColorSpace,DeleteColorSpace,1383 diff --git a/libc/nt/gdi32/DeleteDC.S b/libc/nt/gdi32/DeleteDC.S index bb338b129..6789a4595 100644 --- a/libc/nt/gdi32/DeleteDC.S +++ b/libc/nt/gdi32/DeleteDC.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_DeleteDC,DeleteDC,1384 +.imp gdi32,__imp_DeleteDC,DeleteDC .text.windows .ftrace1 diff --git a/libc/nt/gdi32/DeleteEnhMetaFile.S b/libc/nt/gdi32/DeleteEnhMetaFile.S deleted file mode 100644 index c31a225ac..000000000 --- a/libc/nt/gdi32/DeleteEnhMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DeleteEnhMetaFile,DeleteEnhMetaFile,1385 diff --git a/libc/nt/gdi32/DeleteMetaFile.S b/libc/nt/gdi32/DeleteMetaFile.S deleted file mode 100644 index 747f583a0..000000000 --- a/libc/nt/gdi32/DeleteMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DeleteMetaFile,DeleteMetaFile,1386 diff --git a/libc/nt/gdi32/DeleteObject.S b/libc/nt/gdi32/DeleteObject.S index 0d0102177..7b59322a4 100644 --- a/libc/nt/gdi32/DeleteObject.S +++ b/libc/nt/gdi32/DeleteObject.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_DeleteObject,DeleteObject,1387 +.imp gdi32,__imp_DeleteObject,DeleteObject .text.windows .ftrace1 diff --git a/libc/nt/gdi32/DescribePixelFormat.S b/libc/nt/gdi32/DescribePixelFormat.S deleted file mode 100644 index 8ed41d237..000000000 --- a/libc/nt/gdi32/DescribePixelFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DescribePixelFormat,DescribePixelFormat,1388 diff --git a/libc/nt/gdi32/DestroyOPMProtectedOutput.S b/libc/nt/gdi32/DestroyOPMProtectedOutput.S deleted file mode 100644 index 56e0e81fb..000000000 --- a/libc/nt/gdi32/DestroyOPMProtectedOutput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DestroyOPMProtectedOutput,DestroyOPMProtectedOutput,1389 diff --git a/libc/nt/gdi32/DestroyPhysicalMonitorInternal.S b/libc/nt/gdi32/DestroyPhysicalMonitorInternal.S deleted file mode 100644 index d94c41fa7..000000000 --- a/libc/nt/gdi32/DestroyPhysicalMonitorInternal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DestroyPhysicalMonitorInternal,DestroyPhysicalMonitorInternal,1390 diff --git a/libc/nt/gdi32/DrawEscape.S b/libc/nt/gdi32/DrawEscape.S deleted file mode 100644 index 88e0a9c33..000000000 --- a/libc/nt/gdi32/DrawEscape.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DrawEscape,DrawEscape,1393 diff --git a/libc/nt/gdi32/DwmCreatedBitmapRemotingOutput.S b/libc/nt/gdi32/DwmCreatedBitmapRemotingOutput.S deleted file mode 100644 index 689286890..000000000 --- a/libc/nt/gdi32/DwmCreatedBitmapRemotingOutput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DwmCreatedBitmapRemotingOutput,DwmCreatedBitmapRemotingOutput,1014 diff --git a/libc/nt/gdi32/DxTrimNotificationListHead.S b/libc/nt/gdi32/DxTrimNotificationListHead.S deleted file mode 100644 index 3ca9b81ba..000000000 --- a/libc/nt/gdi32/DxTrimNotificationListHead.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_DxTrimNotificationListHead,DxTrimNotificationListHead,1394 diff --git a/libc/nt/gdi32/Ellipse.S b/libc/nt/gdi32/Ellipse.S deleted file mode 100644 index e3ecfaf54..000000000 --- a/libc/nt/gdi32/Ellipse.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Ellipse,Ellipse,1395 diff --git a/libc/nt/gdi32/EnableEUDC.S b/libc/nt/gdi32/EnableEUDC.S deleted file mode 100644 index a9e69b959..000000000 --- a/libc/nt/gdi32/EnableEUDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EnableEUDC,EnableEUDC,1396 diff --git a/libc/nt/gdi32/EndDoc.S b/libc/nt/gdi32/EndDoc.S deleted file mode 100644 index 4972ff9af..000000000 --- a/libc/nt/gdi32/EndDoc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EndDoc,EndDoc,1397 diff --git a/libc/nt/gdi32/EndFormPage.S b/libc/nt/gdi32/EndFormPage.S deleted file mode 100644 index 04c4943c4..000000000 --- a/libc/nt/gdi32/EndFormPage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EndFormPage,EndFormPage,1398 diff --git a/libc/nt/gdi32/EndGdiRendering.S b/libc/nt/gdi32/EndGdiRendering.S deleted file mode 100644 index 569f5febb..000000000 --- a/libc/nt/gdi32/EndGdiRendering.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EndGdiRendering,EndGdiRendering,1399 diff --git a/libc/nt/gdi32/EndPage.S b/libc/nt/gdi32/EndPage.S deleted file mode 100644 index a5ad56b0b..000000000 --- a/libc/nt/gdi32/EndPage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EndPage,EndPage,1400 diff --git a/libc/nt/gdi32/EndPath.S b/libc/nt/gdi32/EndPath.S deleted file mode 100644 index f3ae17722..000000000 --- a/libc/nt/gdi32/EndPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EndPath,EndPath,1401 diff --git a/libc/nt/gdi32/EngAcquireSemaphore.S b/libc/nt/gdi32/EngAcquireSemaphore.S deleted file mode 100644 index ed7c41166..000000000 --- a/libc/nt/gdi32/EngAcquireSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngAcquireSemaphore,EngAcquireSemaphore,1402 diff --git a/libc/nt/gdi32/EngAlphaBlend.S b/libc/nt/gdi32/EngAlphaBlend.S deleted file mode 100644 index c49e8d653..000000000 --- a/libc/nt/gdi32/EngAlphaBlend.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngAlphaBlend,EngAlphaBlend,1403 diff --git a/libc/nt/gdi32/EngAssociateSurface.S b/libc/nt/gdi32/EngAssociateSurface.S deleted file mode 100644 index 53db0677c..000000000 --- a/libc/nt/gdi32/EngAssociateSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngAssociateSurface,EngAssociateSurface,1404 diff --git a/libc/nt/gdi32/EngBitBlt.S b/libc/nt/gdi32/EngBitBlt.S deleted file mode 100644 index 7721d3bd8..000000000 --- a/libc/nt/gdi32/EngBitBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngBitBlt,EngBitBlt,1405 diff --git a/libc/nt/gdi32/EngCheckAbort.S b/libc/nt/gdi32/EngCheckAbort.S deleted file mode 100644 index 74d50ade7..000000000 --- a/libc/nt/gdi32/EngCheckAbort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngCheckAbort,EngCheckAbort,1406 diff --git a/libc/nt/gdi32/EngComputeGlyphSet.S b/libc/nt/gdi32/EngComputeGlyphSet.S deleted file mode 100644 index 0c0b6a3b2..000000000 --- a/libc/nt/gdi32/EngComputeGlyphSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngComputeGlyphSet,EngComputeGlyphSet,1407 diff --git a/libc/nt/gdi32/EngCopyBits.S b/libc/nt/gdi32/EngCopyBits.S deleted file mode 100644 index 1a11373ed..000000000 --- a/libc/nt/gdi32/EngCopyBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngCopyBits,EngCopyBits,1408 diff --git a/libc/nt/gdi32/EngCreateBitmap.S b/libc/nt/gdi32/EngCreateBitmap.S deleted file mode 100644 index 55d893597..000000000 --- a/libc/nt/gdi32/EngCreateBitmap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngCreateBitmap,EngCreateBitmap,1409 diff --git a/libc/nt/gdi32/EngCreateClip.S b/libc/nt/gdi32/EngCreateClip.S deleted file mode 100644 index dccfced17..000000000 --- a/libc/nt/gdi32/EngCreateClip.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngCreateClip,EngCreateClip,1410 diff --git a/libc/nt/gdi32/EngCreateDeviceBitmap.S b/libc/nt/gdi32/EngCreateDeviceBitmap.S deleted file mode 100644 index 46a999657..000000000 --- a/libc/nt/gdi32/EngCreateDeviceBitmap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngCreateDeviceBitmap,EngCreateDeviceBitmap,1411 diff --git a/libc/nt/gdi32/EngCreateDeviceSurface.S b/libc/nt/gdi32/EngCreateDeviceSurface.S deleted file mode 100644 index 503b1a1c9..000000000 --- a/libc/nt/gdi32/EngCreateDeviceSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngCreateDeviceSurface,EngCreateDeviceSurface,1412 diff --git a/libc/nt/gdi32/EngCreatePalette.S b/libc/nt/gdi32/EngCreatePalette.S deleted file mode 100644 index d94c76809..000000000 --- a/libc/nt/gdi32/EngCreatePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngCreatePalette,EngCreatePalette,1413 diff --git a/libc/nt/gdi32/EngCreateSemaphore.S b/libc/nt/gdi32/EngCreateSemaphore.S deleted file mode 100644 index 310b10a56..000000000 --- a/libc/nt/gdi32/EngCreateSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngCreateSemaphore,EngCreateSemaphore,1414 diff --git a/libc/nt/gdi32/EngDeleteClip.S b/libc/nt/gdi32/EngDeleteClip.S deleted file mode 100644 index 4174a747f..000000000 --- a/libc/nt/gdi32/EngDeleteClip.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngDeleteClip,EngDeleteClip,1415 diff --git a/libc/nt/gdi32/EngDeletePalette.S b/libc/nt/gdi32/EngDeletePalette.S deleted file mode 100644 index 0fadc2d7e..000000000 --- a/libc/nt/gdi32/EngDeletePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngDeletePalette,EngDeletePalette,1416 diff --git a/libc/nt/gdi32/EngDeletePath.S b/libc/nt/gdi32/EngDeletePath.S deleted file mode 100644 index 3af4bbaeb..000000000 --- a/libc/nt/gdi32/EngDeletePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngDeletePath,EngDeletePath,1417 diff --git a/libc/nt/gdi32/EngDeleteSemaphore.S b/libc/nt/gdi32/EngDeleteSemaphore.S deleted file mode 100644 index f57d76f96..000000000 --- a/libc/nt/gdi32/EngDeleteSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngDeleteSemaphore,EngDeleteSemaphore,1418 diff --git a/libc/nt/gdi32/EngDeleteSurface.S b/libc/nt/gdi32/EngDeleteSurface.S deleted file mode 100644 index a534b830b..000000000 --- a/libc/nt/gdi32/EngDeleteSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngDeleteSurface,EngDeleteSurface,1419 diff --git a/libc/nt/gdi32/EngEraseSurface.S b/libc/nt/gdi32/EngEraseSurface.S deleted file mode 100644 index 9d7be0abe..000000000 --- a/libc/nt/gdi32/EngEraseSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngEraseSurface,EngEraseSurface,1420 diff --git a/libc/nt/gdi32/EngFillPath.S b/libc/nt/gdi32/EngFillPath.S deleted file mode 100644 index efd689213..000000000 --- a/libc/nt/gdi32/EngFillPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngFillPath,EngFillPath,1421 diff --git a/libc/nt/gdi32/EngFindResource.S b/libc/nt/gdi32/EngFindResource.S deleted file mode 100644 index ce793a554..000000000 --- a/libc/nt/gdi32/EngFindResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngFindResource,EngFindResource,1422 diff --git a/libc/nt/gdi32/EngFreeModule.S b/libc/nt/gdi32/EngFreeModule.S deleted file mode 100644 index 929b8b8e3..000000000 --- a/libc/nt/gdi32/EngFreeModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngFreeModule,EngFreeModule,1423 diff --git a/libc/nt/gdi32/EngGetCurrentCodePage.S b/libc/nt/gdi32/EngGetCurrentCodePage.S deleted file mode 100644 index c27e588c1..000000000 --- a/libc/nt/gdi32/EngGetCurrentCodePage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngGetCurrentCodePage,EngGetCurrentCodePage,1424 diff --git a/libc/nt/gdi32/EngGetDriverName.S b/libc/nt/gdi32/EngGetDriverName.S deleted file mode 100644 index 1795390b8..000000000 --- a/libc/nt/gdi32/EngGetDriverName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngGetDriverName,EngGetDriverName,1425 diff --git a/libc/nt/gdi32/EngGetPrinterDataFileName.S b/libc/nt/gdi32/EngGetPrinterDataFileName.S deleted file mode 100644 index 371701b02..000000000 --- a/libc/nt/gdi32/EngGetPrinterDataFileName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngGetPrinterDataFileName,EngGetPrinterDataFileName,1426 diff --git a/libc/nt/gdi32/EngGradientFill.S b/libc/nt/gdi32/EngGradientFill.S deleted file mode 100644 index f563528b0..000000000 --- a/libc/nt/gdi32/EngGradientFill.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngGradientFill,EngGradientFill,1427 diff --git a/libc/nt/gdi32/EngLineTo.S b/libc/nt/gdi32/EngLineTo.S deleted file mode 100644 index ded8652f0..000000000 --- a/libc/nt/gdi32/EngLineTo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngLineTo,EngLineTo,1428 diff --git a/libc/nt/gdi32/EngLoadModule.S b/libc/nt/gdi32/EngLoadModule.S deleted file mode 100644 index 27a53837e..000000000 --- a/libc/nt/gdi32/EngLoadModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngLoadModule,EngLoadModule,1429 diff --git a/libc/nt/gdi32/EngLockSurface.S b/libc/nt/gdi32/EngLockSurface.S deleted file mode 100644 index 95c4b163b..000000000 --- a/libc/nt/gdi32/EngLockSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngLockSurface,EngLockSurface,1430 diff --git a/libc/nt/gdi32/EngMarkBandingSurface.S b/libc/nt/gdi32/EngMarkBandingSurface.S deleted file mode 100644 index 5e98757fa..000000000 --- a/libc/nt/gdi32/EngMarkBandingSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngMarkBandingSurface,EngMarkBandingSurface,1431 diff --git a/libc/nt/gdi32/EngMultiByteToUnicodeN.S b/libc/nt/gdi32/EngMultiByteToUnicodeN.S deleted file mode 100644 index c0adce368..000000000 --- a/libc/nt/gdi32/EngMultiByteToUnicodeN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngMultiByteToUnicodeN,EngMultiByteToUnicodeN,1432 diff --git a/libc/nt/gdi32/EngMultiByteToWideChar.S b/libc/nt/gdi32/EngMultiByteToWideChar.S deleted file mode 100644 index 2ef6681f6..000000000 --- a/libc/nt/gdi32/EngMultiByteToWideChar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngMultiByteToWideChar,EngMultiByteToWideChar,1433 diff --git a/libc/nt/gdi32/EngPaint.S b/libc/nt/gdi32/EngPaint.S deleted file mode 100644 index e3ac2d701..000000000 --- a/libc/nt/gdi32/EngPaint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngPaint,EngPaint,1434 diff --git a/libc/nt/gdi32/EngPlgBlt.S b/libc/nt/gdi32/EngPlgBlt.S deleted file mode 100644 index 0049b90a5..000000000 --- a/libc/nt/gdi32/EngPlgBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngPlgBlt,EngPlgBlt,1435 diff --git a/libc/nt/gdi32/EngQueryEMFInfo.S b/libc/nt/gdi32/EngQueryEMFInfo.S deleted file mode 100644 index 360906f7d..000000000 --- a/libc/nt/gdi32/EngQueryEMFInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngQueryEMFInfo,EngQueryEMFInfo,1436 diff --git a/libc/nt/gdi32/EngQueryLocalTime.S b/libc/nt/gdi32/EngQueryLocalTime.S deleted file mode 100644 index 464f62772..000000000 --- a/libc/nt/gdi32/EngQueryLocalTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngQueryLocalTime,EngQueryLocalTime,1437 diff --git a/libc/nt/gdi32/EngReleaseSemaphore.S b/libc/nt/gdi32/EngReleaseSemaphore.S deleted file mode 100644 index e9c95e0e4..000000000 --- a/libc/nt/gdi32/EngReleaseSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngReleaseSemaphore,EngReleaseSemaphore,1438 diff --git a/libc/nt/gdi32/EngStretchBlt.S b/libc/nt/gdi32/EngStretchBlt.S deleted file mode 100644 index 499f4b1c3..000000000 --- a/libc/nt/gdi32/EngStretchBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngStretchBlt,EngStretchBlt,1439 diff --git a/libc/nt/gdi32/EngStretchBltROP.S b/libc/nt/gdi32/EngStretchBltROP.S deleted file mode 100644 index 2b20f6fa6..000000000 --- a/libc/nt/gdi32/EngStretchBltROP.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngStretchBltROP,EngStretchBltROP,1440 diff --git a/libc/nt/gdi32/EngStrokeAndFillPath.S b/libc/nt/gdi32/EngStrokeAndFillPath.S deleted file mode 100644 index 1c1b0edc6..000000000 --- a/libc/nt/gdi32/EngStrokeAndFillPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngStrokeAndFillPath,EngStrokeAndFillPath,1441 diff --git a/libc/nt/gdi32/EngStrokePath.S b/libc/nt/gdi32/EngStrokePath.S deleted file mode 100644 index b98ab7976..000000000 --- a/libc/nt/gdi32/EngStrokePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngStrokePath,EngStrokePath,1442 diff --git a/libc/nt/gdi32/EngTextOut.S b/libc/nt/gdi32/EngTextOut.S deleted file mode 100644 index 4558550ce..000000000 --- a/libc/nt/gdi32/EngTextOut.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngTextOut,EngTextOut,1443 diff --git a/libc/nt/gdi32/EngTransparentBlt.S b/libc/nt/gdi32/EngTransparentBlt.S deleted file mode 100644 index 6587fca7e..000000000 --- a/libc/nt/gdi32/EngTransparentBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngTransparentBlt,EngTransparentBlt,1444 diff --git a/libc/nt/gdi32/EngUnicodeToMultiByteN.S b/libc/nt/gdi32/EngUnicodeToMultiByteN.S deleted file mode 100644 index 799ad5016..000000000 --- a/libc/nt/gdi32/EngUnicodeToMultiByteN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngUnicodeToMultiByteN,EngUnicodeToMultiByteN,1445 diff --git a/libc/nt/gdi32/EngUnlockSurface.S b/libc/nt/gdi32/EngUnlockSurface.S deleted file mode 100644 index 4d684182c..000000000 --- a/libc/nt/gdi32/EngUnlockSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngUnlockSurface,EngUnlockSurface,1446 diff --git a/libc/nt/gdi32/EngWideCharToMultiByte.S b/libc/nt/gdi32/EngWideCharToMultiByte.S deleted file mode 100644 index efe094e0f..000000000 --- a/libc/nt/gdi32/EngWideCharToMultiByte.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EngWideCharToMultiByte,EngWideCharToMultiByte,1447 diff --git a/libc/nt/gdi32/EnumEnhMetaFile.S b/libc/nt/gdi32/EnumEnhMetaFile.S deleted file mode 100644 index c79c06856..000000000 --- a/libc/nt/gdi32/EnumEnhMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EnumEnhMetaFile,EnumEnhMetaFile,1448 diff --git a/libc/nt/gdi32/EnumFontFamiliesExW.S b/libc/nt/gdi32/EnumFontFamiliesExW.S deleted file mode 100644 index 903119976..000000000 --- a/libc/nt/gdi32/EnumFontFamiliesExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EnumFontFamiliesExW,EnumFontFamiliesExW,1451 diff --git a/libc/nt/gdi32/EnumFontFamiliesW.S b/libc/nt/gdi32/EnumFontFamiliesW.S deleted file mode 100644 index 2886d4ce9..000000000 --- a/libc/nt/gdi32/EnumFontFamiliesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EnumFontFamiliesW,EnumFontFamiliesW,1452 diff --git a/libc/nt/gdi32/EnumFontsW.S b/libc/nt/gdi32/EnumFontsW.S deleted file mode 100644 index 5be59da59..000000000 --- a/libc/nt/gdi32/EnumFontsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EnumFontsW,EnumFontsW,1454 diff --git a/libc/nt/gdi32/EnumICMProfilesW.S b/libc/nt/gdi32/EnumICMProfilesW.S deleted file mode 100644 index c4ca6c748..000000000 --- a/libc/nt/gdi32/EnumICMProfilesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EnumICMProfilesW,EnumICMProfilesW,1456 diff --git a/libc/nt/gdi32/EnumMetaFile.S b/libc/nt/gdi32/EnumMetaFile.S deleted file mode 100644 index 72c034b88..000000000 --- a/libc/nt/gdi32/EnumMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EnumMetaFile,EnumMetaFile,1457 diff --git a/libc/nt/gdi32/EnumObjects.S b/libc/nt/gdi32/EnumObjects.S deleted file mode 100644 index c29d5def0..000000000 --- a/libc/nt/gdi32/EnumObjects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EnumObjects,EnumObjects,1458 diff --git a/libc/nt/gdi32/EqualRgn.S b/libc/nt/gdi32/EqualRgn.S deleted file mode 100644 index 61c30e29a..000000000 --- a/libc/nt/gdi32/EqualRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EqualRgn,EqualRgn,1459 diff --git a/libc/nt/gdi32/Escape.S b/libc/nt/gdi32/Escape.S deleted file mode 100644 index f44d6853d..000000000 --- a/libc/nt/gdi32/Escape.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Escape,Escape,1460 diff --git a/libc/nt/gdi32/EudcLoadLinkW.S b/libc/nt/gdi32/EudcLoadLinkW.S deleted file mode 100644 index 33b8fcb54..000000000 --- a/libc/nt/gdi32/EudcLoadLinkW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EudcLoadLinkW,EudcLoadLinkW,1461 diff --git a/libc/nt/gdi32/EudcUnloadLinkW.S b/libc/nt/gdi32/EudcUnloadLinkW.S deleted file mode 100644 index 0330cdde0..000000000 --- a/libc/nt/gdi32/EudcUnloadLinkW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_EudcUnloadLinkW,EudcUnloadLinkW,1462 diff --git a/libc/nt/gdi32/ExcludeClipRect.S b/libc/nt/gdi32/ExcludeClipRect.S deleted file mode 100644 index 6ac17da0f..000000000 --- a/libc/nt/gdi32/ExcludeClipRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ExcludeClipRect,ExcludeClipRect,1463 diff --git a/libc/nt/gdi32/ExtCreatePen.S b/libc/nt/gdi32/ExtCreatePen.S deleted file mode 100644 index f959eff2d..000000000 --- a/libc/nt/gdi32/ExtCreatePen.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ExtCreatePen,ExtCreatePen,1464 diff --git a/libc/nt/gdi32/ExtCreateRegion.S b/libc/nt/gdi32/ExtCreateRegion.S deleted file mode 100644 index 9fdfa9809..000000000 --- a/libc/nt/gdi32/ExtCreateRegion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ExtCreateRegion,ExtCreateRegion,1465 diff --git a/libc/nt/gdi32/ExtEscape.S b/libc/nt/gdi32/ExtEscape.S deleted file mode 100644 index 875e6d223..000000000 --- a/libc/nt/gdi32/ExtEscape.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ExtEscape,ExtEscape,1466 diff --git a/libc/nt/gdi32/ExtFloodFill.S b/libc/nt/gdi32/ExtFloodFill.S deleted file mode 100644 index 737eafd37..000000000 --- a/libc/nt/gdi32/ExtFloodFill.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ExtFloodFill,ExtFloodFill,1467 diff --git a/libc/nt/gdi32/ExtSelectClipRgn.S b/libc/nt/gdi32/ExtSelectClipRgn.S deleted file mode 100644 index 2821c4712..000000000 --- a/libc/nt/gdi32/ExtSelectClipRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ExtSelectClipRgn,ExtSelectClipRgn,1468 diff --git a/libc/nt/gdi32/ExtTextOutW.S b/libc/nt/gdi32/ExtTextOutW.S deleted file mode 100644 index f126a92b2..000000000 --- a/libc/nt/gdi32/ExtTextOutW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ExtTextOutW,ExtTextOutW,1470 diff --git a/libc/nt/gdi32/FONTOBJ_cGetAllGlyphHandles.S b/libc/nt/gdi32/FONTOBJ_cGetAllGlyphHandles.S deleted file mode 100644 index f042023a3..000000000 --- a/libc/nt/gdi32/FONTOBJ_cGetAllGlyphHandles.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FONTOBJ_cGetAllGlyphHandles,FONTOBJ_cGetAllGlyphHandles,1471 diff --git a/libc/nt/gdi32/FONTOBJ_cGetGlyphs.S b/libc/nt/gdi32/FONTOBJ_cGetGlyphs.S deleted file mode 100644 index 74e812501..000000000 --- a/libc/nt/gdi32/FONTOBJ_cGetGlyphs.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FONTOBJ_cGetGlyphs,FONTOBJ_cGetGlyphs,1472 diff --git a/libc/nt/gdi32/FONTOBJ_pQueryGlyphAttrs.S b/libc/nt/gdi32/FONTOBJ_pQueryGlyphAttrs.S deleted file mode 100644 index be6f038fb..000000000 --- a/libc/nt/gdi32/FONTOBJ_pQueryGlyphAttrs.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FONTOBJ_pQueryGlyphAttrs,FONTOBJ_pQueryGlyphAttrs,1473 diff --git a/libc/nt/gdi32/FONTOBJ_pfdg.S b/libc/nt/gdi32/FONTOBJ_pfdg.S deleted file mode 100644 index ccae6b5bc..000000000 --- a/libc/nt/gdi32/FONTOBJ_pfdg.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FONTOBJ_pfdg,FONTOBJ_pfdg,1474 diff --git a/libc/nt/gdi32/FONTOBJ_pifi.S b/libc/nt/gdi32/FONTOBJ_pifi.S deleted file mode 100644 index 9beed6ca8..000000000 --- a/libc/nt/gdi32/FONTOBJ_pifi.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FONTOBJ_pifi,FONTOBJ_pifi,1475 diff --git a/libc/nt/gdi32/FONTOBJ_pvTrueTypeFontFile.S b/libc/nt/gdi32/FONTOBJ_pvTrueTypeFontFile.S deleted file mode 100644 index 31623f454..000000000 --- a/libc/nt/gdi32/FONTOBJ_pvTrueTypeFontFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FONTOBJ_pvTrueTypeFontFile,FONTOBJ_pvTrueTypeFontFile,1476 diff --git a/libc/nt/gdi32/FONTOBJ_pxoGetXform.S b/libc/nt/gdi32/FONTOBJ_pxoGetXform.S deleted file mode 100644 index 5e622d879..000000000 --- a/libc/nt/gdi32/FONTOBJ_pxoGetXform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FONTOBJ_pxoGetXform,FONTOBJ_pxoGetXform,1477 diff --git a/libc/nt/gdi32/FONTOBJ_vGetInfo.S b/libc/nt/gdi32/FONTOBJ_vGetInfo.S deleted file mode 100644 index b3cf88aae..000000000 --- a/libc/nt/gdi32/FONTOBJ_vGetInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FONTOBJ_vGetInfo,FONTOBJ_vGetInfo,1478 diff --git a/libc/nt/gdi32/FillPath.S b/libc/nt/gdi32/FillPath.S deleted file mode 100644 index b8394d856..000000000 --- a/libc/nt/gdi32/FillPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FillPath,FillPath,1479 diff --git a/libc/nt/gdi32/FillRgn.S b/libc/nt/gdi32/FillRgn.S deleted file mode 100644 index 0842ff9b7..000000000 --- a/libc/nt/gdi32/FillRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FillRgn,FillRgn,1480 diff --git a/libc/nt/gdi32/FixBrushOrgEx.S b/libc/nt/gdi32/FixBrushOrgEx.S deleted file mode 100644 index 7b2b40775..000000000 --- a/libc/nt/gdi32/FixBrushOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FixBrushOrgEx,FixBrushOrgEx,1481 diff --git a/libc/nt/gdi32/FlattenPath.S b/libc/nt/gdi32/FlattenPath.S deleted file mode 100644 index 4bcc1dda7..000000000 --- a/libc/nt/gdi32/FlattenPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FlattenPath,FlattenPath,1482 diff --git a/libc/nt/gdi32/FloodFill.S b/libc/nt/gdi32/FloodFill.S deleted file mode 100644 index 36631aed7..000000000 --- a/libc/nt/gdi32/FloodFill.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FloodFill,FloodFill,1483 diff --git a/libc/nt/gdi32/FontIsLinked.S b/libc/nt/gdi32/FontIsLinked.S deleted file mode 100644 index e0efdb97b..000000000 --- a/libc/nt/gdi32/FontIsLinked.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FontIsLinked,FontIsLinked,1484 diff --git a/libc/nt/gdi32/FrameRgn.S b/libc/nt/gdi32/FrameRgn.S deleted file mode 100644 index 275cebeb7..000000000 --- a/libc/nt/gdi32/FrameRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_FrameRgn,FrameRgn,1485 diff --git a/libc/nt/gdi32/Gdi32DllInitialize.S b/libc/nt/gdi32/Gdi32DllInitialize.S deleted file mode 100644 index 83ffc68a3..000000000 --- a/libc/nt/gdi32/Gdi32DllInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Gdi32DllInitialize,Gdi32DllInitialize,1486 diff --git a/libc/nt/gdi32/GdiAddFontResourceW.S b/libc/nt/gdi32/GdiAddFontResourceW.S deleted file mode 100644 index 6047d27f3..000000000 --- a/libc/nt/gdi32/GdiAddFontResourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiAddFontResourceW,GdiAddFontResourceW,1487 diff --git a/libc/nt/gdi32/GdiAddGlsBounds.S b/libc/nt/gdi32/GdiAddGlsBounds.S deleted file mode 100644 index 0e069f8c3..000000000 --- a/libc/nt/gdi32/GdiAddGlsBounds.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiAddGlsBounds,GdiAddGlsBounds,1488 diff --git a/libc/nt/gdi32/GdiAddGlsRecord.S b/libc/nt/gdi32/GdiAddGlsRecord.S deleted file mode 100644 index b06eb9f33..000000000 --- a/libc/nt/gdi32/GdiAddGlsRecord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiAddGlsRecord,GdiAddGlsRecord,1489 diff --git a/libc/nt/gdi32/GdiAddInitialFonts.S b/libc/nt/gdi32/GdiAddInitialFonts.S deleted file mode 100644 index 7cd1f7b66..000000000 --- a/libc/nt/gdi32/GdiAddInitialFonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiAddInitialFonts,GdiAddInitialFonts,1490 diff --git a/libc/nt/gdi32/GdiAlphaBlend.S b/libc/nt/gdi32/GdiAlphaBlend.S deleted file mode 100644 index 090dbe9b0..000000000 --- a/libc/nt/gdi32/GdiAlphaBlend.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiAlphaBlend,GdiAlphaBlend,1491 diff --git a/libc/nt/gdi32/GdiArtificialDecrementDriver.S b/libc/nt/gdi32/GdiArtificialDecrementDriver.S deleted file mode 100644 index e46367b31..000000000 --- a/libc/nt/gdi32/GdiArtificialDecrementDriver.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiArtificialDecrementDriver,GdiArtificialDecrementDriver,1492 diff --git a/libc/nt/gdi32/GdiBatchLimit.S b/libc/nt/gdi32/GdiBatchLimit.S deleted file mode 100644 index 44d8c4617..000000000 --- a/libc/nt/gdi32/GdiBatchLimit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiBatchLimit,GdiBatchLimit,1493 diff --git a/libc/nt/gdi32/GdiCleanCacheDC.S b/libc/nt/gdi32/GdiCleanCacheDC.S deleted file mode 100644 index 7ad1beff4..000000000 --- a/libc/nt/gdi32/GdiCleanCacheDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiCleanCacheDC,GdiCleanCacheDC,1494 diff --git a/libc/nt/gdi32/GdiComment.S b/libc/nt/gdi32/GdiComment.S deleted file mode 100644 index efd8ac7a5..000000000 --- a/libc/nt/gdi32/GdiComment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiComment,GdiComment,1495 diff --git a/libc/nt/gdi32/GdiConsoleTextOut.S b/libc/nt/gdi32/GdiConsoleTextOut.S deleted file mode 100644 index 62367080a..000000000 --- a/libc/nt/gdi32/GdiConsoleTextOut.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConsoleTextOut,GdiConsoleTextOut,1496 diff --git a/libc/nt/gdi32/GdiConvertAndCheckDC.S b/libc/nt/gdi32/GdiConvertAndCheckDC.S deleted file mode 100644 index d47ddaf37..000000000 --- a/libc/nt/gdi32/GdiConvertAndCheckDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertAndCheckDC,GdiConvertAndCheckDC,1497 diff --git a/libc/nt/gdi32/GdiConvertBitmap.S b/libc/nt/gdi32/GdiConvertBitmap.S deleted file mode 100644 index 71e69f4c0..000000000 --- a/libc/nt/gdi32/GdiConvertBitmap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertBitmap,GdiConvertBitmap,1498 diff --git a/libc/nt/gdi32/GdiConvertBitmapV5.S b/libc/nt/gdi32/GdiConvertBitmapV5.S deleted file mode 100644 index 8e71287d9..000000000 --- a/libc/nt/gdi32/GdiConvertBitmapV5.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertBitmapV5,GdiConvertBitmapV5,1499 diff --git a/libc/nt/gdi32/GdiConvertBrush.S b/libc/nt/gdi32/GdiConvertBrush.S deleted file mode 100644 index 0701c40db..000000000 --- a/libc/nt/gdi32/GdiConvertBrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertBrush,GdiConvertBrush,1500 diff --git a/libc/nt/gdi32/GdiConvertDC.S b/libc/nt/gdi32/GdiConvertDC.S deleted file mode 100644 index 1ece5cbee..000000000 --- a/libc/nt/gdi32/GdiConvertDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertDC,GdiConvertDC,1501 diff --git a/libc/nt/gdi32/GdiConvertEnhMetaFile.S b/libc/nt/gdi32/GdiConvertEnhMetaFile.S deleted file mode 100644 index c7794f5db..000000000 --- a/libc/nt/gdi32/GdiConvertEnhMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertEnhMetaFile,GdiConvertEnhMetaFile,1502 diff --git a/libc/nt/gdi32/GdiConvertFont.S b/libc/nt/gdi32/GdiConvertFont.S deleted file mode 100644 index 05c76e866..000000000 --- a/libc/nt/gdi32/GdiConvertFont.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertFont,GdiConvertFont,1503 diff --git a/libc/nt/gdi32/GdiConvertMetaFilePict.S b/libc/nt/gdi32/GdiConvertMetaFilePict.S deleted file mode 100644 index 5c3df2027..000000000 --- a/libc/nt/gdi32/GdiConvertMetaFilePict.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertMetaFilePict,GdiConvertMetaFilePict,1504 diff --git a/libc/nt/gdi32/GdiConvertPalette.S b/libc/nt/gdi32/GdiConvertPalette.S deleted file mode 100644 index 2a5143eaa..000000000 --- a/libc/nt/gdi32/GdiConvertPalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertPalette,GdiConvertPalette,1505 diff --git a/libc/nt/gdi32/GdiConvertRegion.S b/libc/nt/gdi32/GdiConvertRegion.S deleted file mode 100644 index f804257cd..000000000 --- a/libc/nt/gdi32/GdiConvertRegion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertRegion,GdiConvertRegion,1506 diff --git a/libc/nt/gdi32/GdiConvertToDevmodeW.S b/libc/nt/gdi32/GdiConvertToDevmodeW.S deleted file mode 100644 index 682864ecb..000000000 --- a/libc/nt/gdi32/GdiConvertToDevmodeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiConvertToDevmodeW,GdiConvertToDevmodeW,1507 diff --git a/libc/nt/gdi32/GdiCreateLocalEnhMetaFile.S b/libc/nt/gdi32/GdiCreateLocalEnhMetaFile.S deleted file mode 100644 index 2be4825af..000000000 --- a/libc/nt/gdi32/GdiCreateLocalEnhMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiCreateLocalEnhMetaFile,GdiCreateLocalEnhMetaFile,1508 diff --git a/libc/nt/gdi32/GdiCreateLocalMetaFilePict.S b/libc/nt/gdi32/GdiCreateLocalMetaFilePict.S deleted file mode 100644 index 948075c83..000000000 --- a/libc/nt/gdi32/GdiCreateLocalMetaFilePict.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiCreateLocalMetaFilePict,GdiCreateLocalMetaFilePict,1509 diff --git a/libc/nt/gdi32/GdiDeleteLocalDC.S b/libc/nt/gdi32/GdiDeleteLocalDC.S deleted file mode 100644 index 10ff5b42c..000000000 --- a/libc/nt/gdi32/GdiDeleteLocalDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiDeleteLocalDC,GdiDeleteLocalDC,1511 diff --git a/libc/nt/gdi32/GdiDeleteSpoolFileHandle.S b/libc/nt/gdi32/GdiDeleteSpoolFileHandle.S deleted file mode 100644 index b757f7ce6..000000000 --- a/libc/nt/gdi32/GdiDeleteSpoolFileHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiDeleteSpoolFileHandle,GdiDeleteSpoolFileHandle,1512 diff --git a/libc/nt/gdi32/GdiDescribePixelFormat.S b/libc/nt/gdi32/GdiDescribePixelFormat.S deleted file mode 100644 index 3db1760d0..000000000 --- a/libc/nt/gdi32/GdiDescribePixelFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiDescribePixelFormat,GdiDescribePixelFormat,1513 diff --git a/libc/nt/gdi32/GdiDllInitialize.S b/libc/nt/gdi32/GdiDllInitialize.S deleted file mode 100644 index 64713c34f..000000000 --- a/libc/nt/gdi32/GdiDllInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiDllInitialize,GdiDllInitialize,1514 diff --git a/libc/nt/gdi32/GdiDrawStream.S b/libc/nt/gdi32/GdiDrawStream.S deleted file mode 100644 index 3f79580ee..000000000 --- a/libc/nt/gdi32/GdiDrawStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiDrawStream,GdiDrawStream,1515 diff --git a/libc/nt/gdi32/GdiEndDocEMF.S b/libc/nt/gdi32/GdiEndDocEMF.S deleted file mode 100644 index bec71fe2d..000000000 --- a/libc/nt/gdi32/GdiEndDocEMF.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiEndDocEMF,GdiEndDocEMF,1516 diff --git a/libc/nt/gdi32/GdiEndPageEMF.S b/libc/nt/gdi32/GdiEndPageEMF.S deleted file mode 100644 index cdafbeea5..000000000 --- a/libc/nt/gdi32/GdiEndPageEMF.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiEndPageEMF,GdiEndPageEMF,1517 diff --git a/libc/nt/gdi32/GdiFixUpHandle.S b/libc/nt/gdi32/GdiFixUpHandle.S deleted file mode 100644 index 8a2ce50da..000000000 --- a/libc/nt/gdi32/GdiFixUpHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiFixUpHandle,GdiFixUpHandle,1534 diff --git a/libc/nt/gdi32/GdiFlush.S b/libc/nt/gdi32/GdiFlush.S deleted file mode 100644 index 28e45ac4d..000000000 --- a/libc/nt/gdi32/GdiFlush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiFlush,GdiFlush,1535 diff --git a/libc/nt/gdi32/GdiFullscreenControl.S b/libc/nt/gdi32/GdiFullscreenControl.S deleted file mode 100644 index 9fbd2829e..000000000 --- a/libc/nt/gdi32/GdiFullscreenControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiFullscreenControl,GdiFullscreenControl,1536 diff --git a/libc/nt/gdi32/GdiGetBatchLimit.S b/libc/nt/gdi32/GdiGetBatchLimit.S deleted file mode 100644 index 1ae9c12b7..000000000 --- a/libc/nt/gdi32/GdiGetBatchLimit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetBatchLimit,GdiGetBatchLimit,1537 diff --git a/libc/nt/gdi32/GdiGetBitmapBitsSize.S b/libc/nt/gdi32/GdiGetBitmapBitsSize.S deleted file mode 100644 index 383b22586..000000000 --- a/libc/nt/gdi32/GdiGetBitmapBitsSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetBitmapBitsSize,GdiGetBitmapBitsSize,1538 diff --git a/libc/nt/gdi32/GdiGetCharDimensions.S b/libc/nt/gdi32/GdiGetCharDimensions.S deleted file mode 100644 index 24f447113..000000000 --- a/libc/nt/gdi32/GdiGetCharDimensions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetCharDimensions,GdiGetCharDimensions,1539 diff --git a/libc/nt/gdi32/GdiGetCodePage.S b/libc/nt/gdi32/GdiGetCodePage.S deleted file mode 100644 index 510ec931f..000000000 --- a/libc/nt/gdi32/GdiGetCodePage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetCodePage,GdiGetCodePage,1540 diff --git a/libc/nt/gdi32/GdiGetDC.S b/libc/nt/gdi32/GdiGetDC.S deleted file mode 100644 index 245ff8ad2..000000000 --- a/libc/nt/gdi32/GdiGetDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetDC,GdiGetDC,1541 diff --git a/libc/nt/gdi32/GdiGetDevmodeForPage.S b/libc/nt/gdi32/GdiGetDevmodeForPage.S deleted file mode 100644 index a22373355..000000000 --- a/libc/nt/gdi32/GdiGetDevmodeForPage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetDevmodeForPage,GdiGetDevmodeForPage,1542 diff --git a/libc/nt/gdi32/GdiGetEntry.S b/libc/nt/gdi32/GdiGetEntry.S deleted file mode 100644 index 9a4d0a316..000000000 --- a/libc/nt/gdi32/GdiGetEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetEntry,GdiGetEntry,1543 diff --git a/libc/nt/gdi32/GdiGetLocalBrush.S b/libc/nt/gdi32/GdiGetLocalBrush.S deleted file mode 100644 index 8e4b7bff2..000000000 --- a/libc/nt/gdi32/GdiGetLocalBrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetLocalBrush,GdiGetLocalBrush,1544 diff --git a/libc/nt/gdi32/GdiGetLocalDC.S b/libc/nt/gdi32/GdiGetLocalDC.S deleted file mode 100644 index 400b80e81..000000000 --- a/libc/nt/gdi32/GdiGetLocalDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetLocalDC,GdiGetLocalDC,1545 diff --git a/libc/nt/gdi32/GdiGetLocalFont.S b/libc/nt/gdi32/GdiGetLocalFont.S deleted file mode 100644 index 305aba8bf..000000000 --- a/libc/nt/gdi32/GdiGetLocalFont.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetLocalFont,GdiGetLocalFont,1546 diff --git a/libc/nt/gdi32/GdiGetPageCount.S b/libc/nt/gdi32/GdiGetPageCount.S deleted file mode 100644 index 91b56fc49..000000000 --- a/libc/nt/gdi32/GdiGetPageCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetPageCount,GdiGetPageCount,1547 diff --git a/libc/nt/gdi32/GdiGetPageHandle.S b/libc/nt/gdi32/GdiGetPageHandle.S deleted file mode 100644 index 995d02619..000000000 --- a/libc/nt/gdi32/GdiGetPageHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetPageHandle,GdiGetPageHandle,1548 diff --git a/libc/nt/gdi32/GdiGetSpoolFileHandle.S b/libc/nt/gdi32/GdiGetSpoolFileHandle.S deleted file mode 100644 index 738bd99f2..000000000 --- a/libc/nt/gdi32/GdiGetSpoolFileHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetSpoolFileHandle,GdiGetSpoolFileHandle,1549 diff --git a/libc/nt/gdi32/GdiGetSpoolMessage.S b/libc/nt/gdi32/GdiGetSpoolMessage.S deleted file mode 100644 index 4656f8a1a..000000000 --- a/libc/nt/gdi32/GdiGetSpoolMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetSpoolMessage,GdiGetSpoolMessage,1550 diff --git a/libc/nt/gdi32/GdiGetVariationStoreDelta.S b/libc/nt/gdi32/GdiGetVariationStoreDelta.S deleted file mode 100644 index e68e9a4f0..000000000 --- a/libc/nt/gdi32/GdiGetVariationStoreDelta.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGetVariationStoreDelta,GdiGetVariationStoreDelta,1551 diff --git a/libc/nt/gdi32/GdiGradientFill.S b/libc/nt/gdi32/GdiGradientFill.S deleted file mode 100644 index d82938c5a..000000000 --- a/libc/nt/gdi32/GdiGradientFill.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiGradientFill,GdiGradientFill,1552 diff --git a/libc/nt/gdi32/GdiInitSpool.S b/libc/nt/gdi32/GdiInitSpool.S deleted file mode 100644 index f00ce07ff..000000000 --- a/libc/nt/gdi32/GdiInitSpool.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiInitSpool,GdiInitSpool,1553 diff --git a/libc/nt/gdi32/GdiInitializeLanguagePack.S b/libc/nt/gdi32/GdiInitializeLanguagePack.S deleted file mode 100644 index 47dbef2a1..000000000 --- a/libc/nt/gdi32/GdiInitializeLanguagePack.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiInitializeLanguagePack,GdiInitializeLanguagePack,1554 diff --git a/libc/nt/gdi32/GdiIsMetaFileDC.S b/libc/nt/gdi32/GdiIsMetaFileDC.S deleted file mode 100644 index 059cee0b4..000000000 --- a/libc/nt/gdi32/GdiIsMetaFileDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiIsMetaFileDC,GdiIsMetaFileDC,1555 diff --git a/libc/nt/gdi32/GdiIsMetaPrintDC.S b/libc/nt/gdi32/GdiIsMetaPrintDC.S deleted file mode 100644 index 1d5add9a1..000000000 --- a/libc/nt/gdi32/GdiIsMetaPrintDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiIsMetaPrintDC,GdiIsMetaPrintDC,1556 diff --git a/libc/nt/gdi32/GdiIsPlayMetafileDC.S b/libc/nt/gdi32/GdiIsPlayMetafileDC.S deleted file mode 100644 index 400fd67c7..000000000 --- a/libc/nt/gdi32/GdiIsPlayMetafileDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiIsPlayMetafileDC,GdiIsPlayMetafileDC,1557 diff --git a/libc/nt/gdi32/GdiIsScreenDC.S b/libc/nt/gdi32/GdiIsScreenDC.S deleted file mode 100644 index 0baf4b496..000000000 --- a/libc/nt/gdi32/GdiIsScreenDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiIsScreenDC,GdiIsScreenDC,1558 diff --git a/libc/nt/gdi32/GdiIsTrackingEnabled.S b/libc/nt/gdi32/GdiIsTrackingEnabled.S deleted file mode 100644 index d8f102d33..000000000 --- a/libc/nt/gdi32/GdiIsTrackingEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiIsTrackingEnabled,GdiIsTrackingEnabled,1559 diff --git a/libc/nt/gdi32/GdiIsUMPDSandboxingEnabled.S b/libc/nt/gdi32/GdiIsUMPDSandboxingEnabled.S deleted file mode 100644 index 77462a966..000000000 --- a/libc/nt/gdi32/GdiIsUMPDSandboxingEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiIsUMPDSandboxingEnabled,GdiIsUMPDSandboxingEnabled,1560 diff --git a/libc/nt/gdi32/GdiLoadType1Fonts.S b/libc/nt/gdi32/GdiLoadType1Fonts.S deleted file mode 100644 index 9f046ba3d..000000000 --- a/libc/nt/gdi32/GdiLoadType1Fonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiLoadType1Fonts,GdiLoadType1Fonts,1561 diff --git a/libc/nt/gdi32/GdiPlayDCScript.S b/libc/nt/gdi32/GdiPlayDCScript.S deleted file mode 100644 index 0d395bc90..000000000 --- a/libc/nt/gdi32/GdiPlayDCScript.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiPlayDCScript,GdiPlayDCScript,1562 diff --git a/libc/nt/gdi32/GdiPlayEMF.S b/libc/nt/gdi32/GdiPlayEMF.S deleted file mode 100644 index 3028b99fb..000000000 --- a/libc/nt/gdi32/GdiPlayEMF.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiPlayEMF,GdiPlayEMF,1563 diff --git a/libc/nt/gdi32/GdiPlayJournal.S b/libc/nt/gdi32/GdiPlayJournal.S deleted file mode 100644 index 18e78a315..000000000 --- a/libc/nt/gdi32/GdiPlayJournal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiPlayJournal,GdiPlayJournal,1564 diff --git a/libc/nt/gdi32/GdiPlayPageEMF.S b/libc/nt/gdi32/GdiPlayPageEMF.S deleted file mode 100644 index 948d0a6c2..000000000 --- a/libc/nt/gdi32/GdiPlayPageEMF.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiPlayPageEMF,GdiPlayPageEMF,1565 diff --git a/libc/nt/gdi32/GdiPlayPrivatePageEMF.S b/libc/nt/gdi32/GdiPlayPrivatePageEMF.S deleted file mode 100644 index 85aa03032..000000000 --- a/libc/nt/gdi32/GdiPlayPrivatePageEMF.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiPlayPrivatePageEMF,GdiPlayPrivatePageEMF,1566 diff --git a/libc/nt/gdi32/GdiPlayScript.S b/libc/nt/gdi32/GdiPlayScript.S deleted file mode 100644 index 69ad7f532..000000000 --- a/libc/nt/gdi32/GdiPlayScript.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiPlayScript,GdiPlayScript,1567 diff --git a/libc/nt/gdi32/GdiPrinterThunk.S b/libc/nt/gdi32/GdiPrinterThunk.S deleted file mode 100644 index 064904b1b..000000000 --- a/libc/nt/gdi32/GdiPrinterThunk.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiPrinterThunk,GdiPrinterThunk,1568 diff --git a/libc/nt/gdi32/GdiProcessSetup.S b/libc/nt/gdi32/GdiProcessSetup.S deleted file mode 100644 index 890932029..000000000 --- a/libc/nt/gdi32/GdiProcessSetup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiProcessSetup,GdiProcessSetup,1569 diff --git a/libc/nt/gdi32/GdiQueryFonts.S b/libc/nt/gdi32/GdiQueryFonts.S deleted file mode 100644 index a5ffe74cf..000000000 --- a/libc/nt/gdi32/GdiQueryFonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiQueryFonts,GdiQueryFonts,1570 diff --git a/libc/nt/gdi32/GdiQueryTable.S b/libc/nt/gdi32/GdiQueryTable.S deleted file mode 100644 index 73d5caa0a..000000000 --- a/libc/nt/gdi32/GdiQueryTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiQueryTable,GdiQueryTable,1571 diff --git a/libc/nt/gdi32/GdiRealizationInfo.S b/libc/nt/gdi32/GdiRealizationInfo.S deleted file mode 100644 index 08cf7a676..000000000 --- a/libc/nt/gdi32/GdiRealizationInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiRealizationInfo,GdiRealizationInfo,1572 diff --git a/libc/nt/gdi32/GdiReleaseDC.S b/libc/nt/gdi32/GdiReleaseDC.S deleted file mode 100644 index 1ba689242..000000000 --- a/libc/nt/gdi32/GdiReleaseDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiReleaseDC,GdiReleaseDC,1573 diff --git a/libc/nt/gdi32/GdiReleaseLocalDC.S b/libc/nt/gdi32/GdiReleaseLocalDC.S deleted file mode 100644 index 7e6cdbd07..000000000 --- a/libc/nt/gdi32/GdiReleaseLocalDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiReleaseLocalDC,GdiReleaseLocalDC,1574 diff --git a/libc/nt/gdi32/GdiResetDCEMF.S b/libc/nt/gdi32/GdiResetDCEMF.S deleted file mode 100644 index 98c9f9412..000000000 --- a/libc/nt/gdi32/GdiResetDCEMF.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiResetDCEMF,GdiResetDCEMF,1575 diff --git a/libc/nt/gdi32/GdiSetAttrs.S b/libc/nt/gdi32/GdiSetAttrs.S deleted file mode 100644 index 9d9e3ba94..000000000 --- a/libc/nt/gdi32/GdiSetAttrs.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiSetAttrs,GdiSetAttrs,1576 diff --git a/libc/nt/gdi32/GdiSetBatchLimit.S b/libc/nt/gdi32/GdiSetBatchLimit.S deleted file mode 100644 index e9c0a8f56..000000000 --- a/libc/nt/gdi32/GdiSetBatchLimit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiSetBatchLimit,GdiSetBatchLimit,1577 diff --git a/libc/nt/gdi32/GdiSetLastError.S b/libc/nt/gdi32/GdiSetLastError.S deleted file mode 100644 index d1aec5617..000000000 --- a/libc/nt/gdi32/GdiSetLastError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiSetLastError,GdiSetLastError,1578 diff --git a/libc/nt/gdi32/GdiSetPixelFormat.S b/libc/nt/gdi32/GdiSetPixelFormat.S deleted file mode 100644 index 3aea7c265..000000000 --- a/libc/nt/gdi32/GdiSetPixelFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiSetPixelFormat,GdiSetPixelFormat,1579 diff --git a/libc/nt/gdi32/GdiSetServerAttr.S b/libc/nt/gdi32/GdiSetServerAttr.S deleted file mode 100644 index 761234f52..000000000 --- a/libc/nt/gdi32/GdiSetServerAttr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiSetServerAttr,GdiSetServerAttr,1580 diff --git a/libc/nt/gdi32/GdiStartDocEMF.S b/libc/nt/gdi32/GdiStartDocEMF.S deleted file mode 100644 index c98738558..000000000 --- a/libc/nt/gdi32/GdiStartDocEMF.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiStartDocEMF,GdiStartDocEMF,1581 diff --git a/libc/nt/gdi32/GdiStartPageEMF.S b/libc/nt/gdi32/GdiStartPageEMF.S deleted file mode 100644 index 6b8b50700..000000000 --- a/libc/nt/gdi32/GdiStartPageEMF.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiStartPageEMF,GdiStartPageEMF,1582 diff --git a/libc/nt/gdi32/GdiSupportsFontChangeEvent.S b/libc/nt/gdi32/GdiSupportsFontChangeEvent.S deleted file mode 100644 index 69af30977..000000000 --- a/libc/nt/gdi32/GdiSupportsFontChangeEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiSupportsFontChangeEvent,GdiSupportsFontChangeEvent,1583 diff --git a/libc/nt/gdi32/GdiSwapBuffers.S b/libc/nt/gdi32/GdiSwapBuffers.S deleted file mode 100644 index 107d1d3df..000000000 --- a/libc/nt/gdi32/GdiSwapBuffers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiSwapBuffers,GdiSwapBuffers,1584 diff --git a/libc/nt/gdi32/GdiTrackHCreate.S b/libc/nt/gdi32/GdiTrackHCreate.S deleted file mode 100644 index b24748443..000000000 --- a/libc/nt/gdi32/GdiTrackHCreate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiTrackHCreate,GdiTrackHCreate,1585 diff --git a/libc/nt/gdi32/GdiTrackHDelete.S b/libc/nt/gdi32/GdiTrackHDelete.S deleted file mode 100644 index 1a9e7217a..000000000 --- a/libc/nt/gdi32/GdiTrackHDelete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiTrackHDelete,GdiTrackHDelete,1586 diff --git a/libc/nt/gdi32/GdiTransparentBlt.S b/libc/nt/gdi32/GdiTransparentBlt.S deleted file mode 100644 index 4c45460d8..000000000 --- a/libc/nt/gdi32/GdiTransparentBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiTransparentBlt,GdiTransparentBlt,1587 diff --git a/libc/nt/gdi32/GdiValidateHandle.S b/libc/nt/gdi32/GdiValidateHandle.S deleted file mode 100644 index 4c14a2501..000000000 --- a/libc/nt/gdi32/GdiValidateHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GdiValidateHandle,GdiValidateHandle,1588 diff --git a/libc/nt/gdi32/GetArcDirection.S b/libc/nt/gdi32/GetArcDirection.S deleted file mode 100644 index c171d2f8f..000000000 --- a/libc/nt/gdi32/GetArcDirection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetArcDirection,GetArcDirection,1589 diff --git a/libc/nt/gdi32/GetAspectRatioFilterEx.S b/libc/nt/gdi32/GetAspectRatioFilterEx.S deleted file mode 100644 index 2ebbe929f..000000000 --- a/libc/nt/gdi32/GetAspectRatioFilterEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetAspectRatioFilterEx,GetAspectRatioFilterEx,1590 diff --git a/libc/nt/gdi32/GetBitmapAttributes.S b/libc/nt/gdi32/GetBitmapAttributes.S deleted file mode 100644 index 03fbea407..000000000 --- a/libc/nt/gdi32/GetBitmapAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBitmapAttributes,GetBitmapAttributes,1591 diff --git a/libc/nt/gdi32/GetBitmapBits.S b/libc/nt/gdi32/GetBitmapBits.S deleted file mode 100644 index b33b1d569..000000000 --- a/libc/nt/gdi32/GetBitmapBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBitmapBits,GetBitmapBits,1592 diff --git a/libc/nt/gdi32/GetBitmapDimensionEx.S b/libc/nt/gdi32/GetBitmapDimensionEx.S deleted file mode 100644 index b8dfcd667..000000000 --- a/libc/nt/gdi32/GetBitmapDimensionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBitmapDimensionEx,GetBitmapDimensionEx,1593 diff --git a/libc/nt/gdi32/GetBitmapDpiScaleValue.S b/libc/nt/gdi32/GetBitmapDpiScaleValue.S deleted file mode 100644 index c4f23f2a2..000000000 --- a/libc/nt/gdi32/GetBitmapDpiScaleValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBitmapDpiScaleValue,GetBitmapDpiScaleValue,1594 diff --git a/libc/nt/gdi32/GetBkColor.S b/libc/nt/gdi32/GetBkColor.S deleted file mode 100644 index f9c8f5c7c..000000000 --- a/libc/nt/gdi32/GetBkColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBkColor,GetBkColor,1595 diff --git a/libc/nt/gdi32/GetBkMode.S b/libc/nt/gdi32/GetBkMode.S deleted file mode 100644 index d54e8bec7..000000000 --- a/libc/nt/gdi32/GetBkMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBkMode,GetBkMode,1596 diff --git a/libc/nt/gdi32/GetBoundsRect.S b/libc/nt/gdi32/GetBoundsRect.S deleted file mode 100644 index ae59ac569..000000000 --- a/libc/nt/gdi32/GetBoundsRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBoundsRect,GetBoundsRect,1597 diff --git a/libc/nt/gdi32/GetBrushAttributes.S b/libc/nt/gdi32/GetBrushAttributes.S deleted file mode 100644 index c4c4d8b1d..000000000 --- a/libc/nt/gdi32/GetBrushAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBrushAttributes,GetBrushAttributes,1598 diff --git a/libc/nt/gdi32/GetBrushOrgEx.S b/libc/nt/gdi32/GetBrushOrgEx.S deleted file mode 100644 index a708f82e0..000000000 --- a/libc/nt/gdi32/GetBrushOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetBrushOrgEx,GetBrushOrgEx,1599 diff --git a/libc/nt/gdi32/GetCOPPCompatibleOPMInformation.S b/libc/nt/gdi32/GetCOPPCompatibleOPMInformation.S deleted file mode 100644 index b870a7a07..000000000 --- a/libc/nt/gdi32/GetCOPPCompatibleOPMInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCOPPCompatibleOPMInformation,GetCOPPCompatibleOPMInformation,1600 diff --git a/libc/nt/gdi32/GetCertificate.S b/libc/nt/gdi32/GetCertificate.S deleted file mode 100644 index 024742ce6..000000000 --- a/libc/nt/gdi32/GetCertificate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCertificate,GetCertificate,1601 diff --git a/libc/nt/gdi32/GetCertificateByHandle.S b/libc/nt/gdi32/GetCertificateByHandle.S deleted file mode 100644 index 279439b86..000000000 --- a/libc/nt/gdi32/GetCertificateByHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCertificateByHandle,GetCertificateByHandle,1602 diff --git a/libc/nt/gdi32/GetCertificateSize.S b/libc/nt/gdi32/GetCertificateSize.S deleted file mode 100644 index 588ba4327..000000000 --- a/libc/nt/gdi32/GetCertificateSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCertificateSize,GetCertificateSize,1603 diff --git a/libc/nt/gdi32/GetCertificateSizeByHandle.S b/libc/nt/gdi32/GetCertificateSizeByHandle.S deleted file mode 100644 index 4cbfc60c7..000000000 --- a/libc/nt/gdi32/GetCertificateSizeByHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCertificateSizeByHandle,GetCertificateSizeByHandle,1604 diff --git a/libc/nt/gdi32/GetCharABCWidthsFloatI.S b/libc/nt/gdi32/GetCharABCWidthsFloatI.S deleted file mode 100644 index ec06f65ce..000000000 --- a/libc/nt/gdi32/GetCharABCWidthsFloatI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharABCWidthsFloatI,GetCharABCWidthsFloatI,1607 diff --git a/libc/nt/gdi32/GetCharABCWidthsFloatW.S b/libc/nt/gdi32/GetCharABCWidthsFloatW.S deleted file mode 100644 index 80b6a4d9f..000000000 --- a/libc/nt/gdi32/GetCharABCWidthsFloatW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharABCWidthsFloatW,GetCharABCWidthsFloatW,1608 diff --git a/libc/nt/gdi32/GetCharABCWidthsI.S b/libc/nt/gdi32/GetCharABCWidthsI.S deleted file mode 100644 index 008e848cf..000000000 --- a/libc/nt/gdi32/GetCharABCWidthsI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharABCWidthsI,GetCharABCWidthsI,1609 diff --git a/libc/nt/gdi32/GetCharABCWidthsW.S b/libc/nt/gdi32/GetCharABCWidthsW.S deleted file mode 100644 index f63eeacdd..000000000 --- a/libc/nt/gdi32/GetCharABCWidthsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharABCWidthsW,GetCharABCWidthsW,1610 diff --git a/libc/nt/gdi32/GetCharWidth32W.S b/libc/nt/gdi32/GetCharWidth32W.S deleted file mode 100644 index 54683a15d..000000000 --- a/libc/nt/gdi32/GetCharWidth32W.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharWidth32W,GetCharWidth32W,1612 diff --git a/libc/nt/gdi32/GetCharWidthFloatW.S b/libc/nt/gdi32/GetCharWidthFloatW.S deleted file mode 100644 index c78f2ada7..000000000 --- a/libc/nt/gdi32/GetCharWidthFloatW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharWidthFloatW,GetCharWidthFloatW,1615 diff --git a/libc/nt/gdi32/GetCharWidthI.S b/libc/nt/gdi32/GetCharWidthI.S deleted file mode 100644 index 8b8eef171..000000000 --- a/libc/nt/gdi32/GetCharWidthI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharWidthI,GetCharWidthI,1616 diff --git a/libc/nt/gdi32/GetCharWidthInfo.S b/libc/nt/gdi32/GetCharWidthInfo.S deleted file mode 100644 index 1fe876e11..000000000 --- a/libc/nt/gdi32/GetCharWidthInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharWidthInfo,GetCharWidthInfo,1617 diff --git a/libc/nt/gdi32/GetCharWidthW.S b/libc/nt/gdi32/GetCharWidthW.S deleted file mode 100644 index 35174f33c..000000000 --- a/libc/nt/gdi32/GetCharWidthW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharWidthW,GetCharWidthW,1618 diff --git a/libc/nt/gdi32/GetCharacterPlacementW.S b/libc/nt/gdi32/GetCharacterPlacementW.S deleted file mode 100644 index 1a147260e..000000000 --- a/libc/nt/gdi32/GetCharacterPlacementW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCharacterPlacementW,GetCharacterPlacementW,1620 diff --git a/libc/nt/gdi32/GetClipBox.S b/libc/nt/gdi32/GetClipBox.S deleted file mode 100644 index 182912acd..000000000 --- a/libc/nt/gdi32/GetClipBox.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetClipBox,GetClipBox,1621 diff --git a/libc/nt/gdi32/GetClipRgn.S b/libc/nt/gdi32/GetClipRgn.S deleted file mode 100644 index 596f76a45..000000000 --- a/libc/nt/gdi32/GetClipRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetClipRgn,GetClipRgn,1622 diff --git a/libc/nt/gdi32/GetColorAdjustment.S b/libc/nt/gdi32/GetColorAdjustment.S deleted file mode 100644 index 01b95b890..000000000 --- a/libc/nt/gdi32/GetColorAdjustment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetColorAdjustment,GetColorAdjustment,1623 diff --git a/libc/nt/gdi32/GetColorSpace.S b/libc/nt/gdi32/GetColorSpace.S deleted file mode 100644 index 109cede6c..000000000 --- a/libc/nt/gdi32/GetColorSpace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetColorSpace,GetColorSpace,1624 diff --git a/libc/nt/gdi32/GetCurrentDpiInfo.S b/libc/nt/gdi32/GetCurrentDpiInfo.S deleted file mode 100644 index b553c2976..000000000 --- a/libc/nt/gdi32/GetCurrentDpiInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCurrentDpiInfo,GetCurrentDpiInfo,1625 diff --git a/libc/nt/gdi32/GetCurrentObject.S b/libc/nt/gdi32/GetCurrentObject.S deleted file mode 100644 index a069ad472..000000000 --- a/libc/nt/gdi32/GetCurrentObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCurrentObject,GetCurrentObject,1626 diff --git a/libc/nt/gdi32/GetCurrentPositionEx.S b/libc/nt/gdi32/GetCurrentPositionEx.S deleted file mode 100644 index b1b33b0ca..000000000 --- a/libc/nt/gdi32/GetCurrentPositionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetCurrentPositionEx,GetCurrentPositionEx,1627 diff --git a/libc/nt/gdi32/GetDCBrushColor.S b/libc/nt/gdi32/GetDCBrushColor.S deleted file mode 100644 index 92afd1780..000000000 --- a/libc/nt/gdi32/GetDCBrushColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetDCBrushColor,GetDCBrushColor,1628 diff --git a/libc/nt/gdi32/GetDCDpiScaleValue.S b/libc/nt/gdi32/GetDCDpiScaleValue.S deleted file mode 100644 index 29a40785b..000000000 --- a/libc/nt/gdi32/GetDCDpiScaleValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetDCDpiScaleValue,GetDCDpiScaleValue,1629 diff --git a/libc/nt/gdi32/GetDCOrgEx.S b/libc/nt/gdi32/GetDCOrgEx.S deleted file mode 100644 index 7138f200e..000000000 --- a/libc/nt/gdi32/GetDCOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetDCOrgEx,GetDCOrgEx,1630 diff --git a/libc/nt/gdi32/GetDCPenColor.S b/libc/nt/gdi32/GetDCPenColor.S deleted file mode 100644 index aecc08c14..000000000 --- a/libc/nt/gdi32/GetDCPenColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetDCPenColor,GetDCPenColor,1631 diff --git a/libc/nt/gdi32/GetDIBColorTable.S b/libc/nt/gdi32/GetDIBColorTable.S deleted file mode 100644 index de83bea70..000000000 --- a/libc/nt/gdi32/GetDIBColorTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetDIBColorTable,GetDIBColorTable,1632 diff --git a/libc/nt/gdi32/GetDIBits.S b/libc/nt/gdi32/GetDIBits.S deleted file mode 100644 index f5b55b896..000000000 --- a/libc/nt/gdi32/GetDIBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetDIBits,GetDIBits,1633 diff --git a/libc/nt/gdi32/GetDeviceCaps.S b/libc/nt/gdi32/GetDeviceCaps.S deleted file mode 100644 index 5745fe39f..000000000 --- a/libc/nt/gdi32/GetDeviceCaps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetDeviceCaps,GetDeviceCaps,1634 diff --git a/libc/nt/gdi32/GetDeviceGammaRamp.S b/libc/nt/gdi32/GetDeviceGammaRamp.S deleted file mode 100644 index c374f27e1..000000000 --- a/libc/nt/gdi32/GetDeviceGammaRamp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetDeviceGammaRamp,GetDeviceGammaRamp,1635 diff --git a/libc/nt/gdi32/GetETM.S b/libc/nt/gdi32/GetETM.S deleted file mode 100644 index d479eb140..000000000 --- a/libc/nt/gdi32/GetETM.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetETM,GetETM,1636 diff --git a/libc/nt/gdi32/GetEUDCTimeStamp.S b/libc/nt/gdi32/GetEUDCTimeStamp.S deleted file mode 100644 index c32cc72d4..000000000 --- a/libc/nt/gdi32/GetEUDCTimeStamp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetEUDCTimeStamp,GetEUDCTimeStamp,1637 diff --git a/libc/nt/gdi32/GetEUDCTimeStampExW.S b/libc/nt/gdi32/GetEUDCTimeStampExW.S deleted file mode 100644 index 5b9fbe18c..000000000 --- a/libc/nt/gdi32/GetEUDCTimeStampExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetEUDCTimeStampExW,GetEUDCTimeStampExW,1638 diff --git a/libc/nt/gdi32/GetEnhMetaFileBits.S b/libc/nt/gdi32/GetEnhMetaFileBits.S deleted file mode 100644 index ca1d64c0f..000000000 --- a/libc/nt/gdi32/GetEnhMetaFileBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetEnhMetaFileBits,GetEnhMetaFileBits,1640 diff --git a/libc/nt/gdi32/GetEnhMetaFileDescriptionW.S b/libc/nt/gdi32/GetEnhMetaFileDescriptionW.S deleted file mode 100644 index f38bd8efa..000000000 --- a/libc/nt/gdi32/GetEnhMetaFileDescriptionW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetEnhMetaFileDescriptionW,GetEnhMetaFileDescriptionW,1642 diff --git a/libc/nt/gdi32/GetEnhMetaFileHeader.S b/libc/nt/gdi32/GetEnhMetaFileHeader.S deleted file mode 100644 index 73c80f8e3..000000000 --- a/libc/nt/gdi32/GetEnhMetaFileHeader.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetEnhMetaFileHeader,GetEnhMetaFileHeader,1643 diff --git a/libc/nt/gdi32/GetEnhMetaFilePaletteEntries.S b/libc/nt/gdi32/GetEnhMetaFilePaletteEntries.S deleted file mode 100644 index fecb9e999..000000000 --- a/libc/nt/gdi32/GetEnhMetaFilePaletteEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetEnhMetaFilePaletteEntries,GetEnhMetaFilePaletteEntries,1644 diff --git a/libc/nt/gdi32/GetEnhMetaFilePixelFormat.S b/libc/nt/gdi32/GetEnhMetaFilePixelFormat.S deleted file mode 100644 index 31c772172..000000000 --- a/libc/nt/gdi32/GetEnhMetaFilePixelFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetEnhMetaFilePixelFormat,GetEnhMetaFilePixelFormat,1645 diff --git a/libc/nt/gdi32/GetEnhMetaFileW.S b/libc/nt/gdi32/GetEnhMetaFileW.S deleted file mode 100644 index 076294f0f..000000000 --- a/libc/nt/gdi32/GetEnhMetaFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetEnhMetaFileW,GetEnhMetaFileW,1646 diff --git a/libc/nt/gdi32/GetFontAssocStatus.S b/libc/nt/gdi32/GetFontAssocStatus.S deleted file mode 100644 index 5b6a24ccb..000000000 --- a/libc/nt/gdi32/GetFontAssocStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetFontAssocStatus,GetFontAssocStatus,1647 diff --git a/libc/nt/gdi32/GetFontData.S b/libc/nt/gdi32/GetFontData.S deleted file mode 100644 index bc482bc06..000000000 --- a/libc/nt/gdi32/GetFontData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetFontData,GetFontData,1648 diff --git a/libc/nt/gdi32/GetFontFileData.S b/libc/nt/gdi32/GetFontFileData.S deleted file mode 100644 index 266cbf14c..000000000 --- a/libc/nt/gdi32/GetFontFileData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetFontFileData,GetFontFileData,1649 diff --git a/libc/nt/gdi32/GetFontFileInfo.S b/libc/nt/gdi32/GetFontFileInfo.S deleted file mode 100644 index ab40e1a77..000000000 --- a/libc/nt/gdi32/GetFontFileInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetFontFileInfo,GetFontFileInfo,1650 diff --git a/libc/nt/gdi32/GetFontLanguageInfo.S b/libc/nt/gdi32/GetFontLanguageInfo.S deleted file mode 100644 index b6b80bfbb..000000000 --- a/libc/nt/gdi32/GetFontLanguageInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetFontLanguageInfo,GetFontLanguageInfo,1651 diff --git a/libc/nt/gdi32/GetFontRealizationInfo.S b/libc/nt/gdi32/GetFontRealizationInfo.S deleted file mode 100644 index 7b14f5e99..000000000 --- a/libc/nt/gdi32/GetFontRealizationInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetFontRealizationInfo,GetFontRealizationInfo,1652 diff --git a/libc/nt/gdi32/GetFontResourceInfoW.S b/libc/nt/gdi32/GetFontResourceInfoW.S deleted file mode 100644 index 5c8f12587..000000000 --- a/libc/nt/gdi32/GetFontResourceInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetFontResourceInfoW,GetFontResourceInfoW,1653 diff --git a/libc/nt/gdi32/GetFontUnicodeRanges.S b/libc/nt/gdi32/GetFontUnicodeRanges.S deleted file mode 100644 index f81689039..000000000 --- a/libc/nt/gdi32/GetFontUnicodeRanges.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetFontUnicodeRanges,GetFontUnicodeRanges,1654 diff --git a/libc/nt/gdi32/GetGlyphIndicesW.S b/libc/nt/gdi32/GetGlyphIndicesW.S deleted file mode 100644 index 01dfbf065..000000000 --- a/libc/nt/gdi32/GetGlyphIndicesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetGlyphIndicesW,GetGlyphIndicesW,1656 diff --git a/libc/nt/gdi32/GetGlyphOutlineW.S b/libc/nt/gdi32/GetGlyphOutlineW.S deleted file mode 100644 index 141d4f3ed..000000000 --- a/libc/nt/gdi32/GetGlyphOutlineW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetGlyphOutlineW,GetGlyphOutlineW,1659 diff --git a/libc/nt/gdi32/GetGlyphOutlineWow.S b/libc/nt/gdi32/GetGlyphOutlineWow.S deleted file mode 100644 index 459a3aa5a..000000000 --- a/libc/nt/gdi32/GetGlyphOutlineWow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetGlyphOutlineWow,GetGlyphOutlineWow,1660 diff --git a/libc/nt/gdi32/GetGraphicsMode.S b/libc/nt/gdi32/GetGraphicsMode.S deleted file mode 100644 index 926a3dc4d..000000000 --- a/libc/nt/gdi32/GetGraphicsMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetGraphicsMode,GetGraphicsMode,1661 diff --git a/libc/nt/gdi32/GetHFONT.S b/libc/nt/gdi32/GetHFONT.S deleted file mode 100644 index 30dddca18..000000000 --- a/libc/nt/gdi32/GetHFONT.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetHFONT,GetHFONT,1662 diff --git a/libc/nt/gdi32/GetICMProfileW.S b/libc/nt/gdi32/GetICMProfileW.S deleted file mode 100644 index 70382dfe4..000000000 --- a/libc/nt/gdi32/GetICMProfileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetICMProfileW,GetICMProfileW,1664 diff --git a/libc/nt/gdi32/GetKerningPairsW.S b/libc/nt/gdi32/GetKerningPairsW.S deleted file mode 100644 index d6ed40595..000000000 --- a/libc/nt/gdi32/GetKerningPairsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetKerningPairsW,GetKerningPairsW,1667 diff --git a/libc/nt/gdi32/GetLayout.S b/libc/nt/gdi32/GetLayout.S deleted file mode 100644 index 6f1152d8d..000000000 --- a/libc/nt/gdi32/GetLayout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetLayout,GetLayout,1668 diff --git a/libc/nt/gdi32/GetLogColorSpaceW.S b/libc/nt/gdi32/GetLogColorSpaceW.S deleted file mode 100644 index 72e02ec37..000000000 --- a/libc/nt/gdi32/GetLogColorSpaceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetLogColorSpaceW,GetLogColorSpaceW,1670 diff --git a/libc/nt/gdi32/GetMapMode.S b/libc/nt/gdi32/GetMapMode.S deleted file mode 100644 index 4e60fe7df..000000000 --- a/libc/nt/gdi32/GetMapMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetMapMode,GetMapMode,1671 diff --git a/libc/nt/gdi32/GetMetaFileBitsEx.S b/libc/nt/gdi32/GetMetaFileBitsEx.S deleted file mode 100644 index d996c1030..000000000 --- a/libc/nt/gdi32/GetMetaFileBitsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetMetaFileBitsEx,GetMetaFileBitsEx,1673 diff --git a/libc/nt/gdi32/GetMetaFileW.S b/libc/nt/gdi32/GetMetaFileW.S deleted file mode 100644 index 1ff93d173..000000000 --- a/libc/nt/gdi32/GetMetaFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetMetaFileW,GetMetaFileW,1674 diff --git a/libc/nt/gdi32/GetMetaRgn.S b/libc/nt/gdi32/GetMetaRgn.S deleted file mode 100644 index 15edf4417..000000000 --- a/libc/nt/gdi32/GetMetaRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetMetaRgn,GetMetaRgn,1675 diff --git a/libc/nt/gdi32/GetMiterLimit.S b/libc/nt/gdi32/GetMiterLimit.S deleted file mode 100644 index 9e4ad8992..000000000 --- a/libc/nt/gdi32/GetMiterLimit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetMiterLimit,GetMiterLimit,1676 diff --git a/libc/nt/gdi32/GetNearestColor.S b/libc/nt/gdi32/GetNearestColor.S deleted file mode 100644 index cfb73b458..000000000 --- a/libc/nt/gdi32/GetNearestColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetNearestColor,GetNearestColor,1677 diff --git a/libc/nt/gdi32/GetNearestPaletteIndex.S b/libc/nt/gdi32/GetNearestPaletteIndex.S deleted file mode 100644 index c9522788e..000000000 --- a/libc/nt/gdi32/GetNearestPaletteIndex.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetNearestPaletteIndex,GetNearestPaletteIndex,1678 diff --git a/libc/nt/gdi32/GetNumberOfPhysicalMonitors.S b/libc/nt/gdi32/GetNumberOfPhysicalMonitors.S deleted file mode 100644 index ae2158348..000000000 --- a/libc/nt/gdi32/GetNumberOfPhysicalMonitors.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetNumberOfPhysicalMonitors,GetNumberOfPhysicalMonitors,1679 diff --git a/libc/nt/gdi32/GetOPMInformation.S b/libc/nt/gdi32/GetOPMInformation.S deleted file mode 100644 index f70fed2cf..000000000 --- a/libc/nt/gdi32/GetOPMInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetOPMInformation,GetOPMInformation,1680 diff --git a/libc/nt/gdi32/GetOPMRandomNumber.S b/libc/nt/gdi32/GetOPMRandomNumber.S deleted file mode 100644 index 097ff4ea2..000000000 --- a/libc/nt/gdi32/GetOPMRandomNumber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetOPMRandomNumber,GetOPMRandomNumber,1681 diff --git a/libc/nt/gdi32/GetObjectType.S b/libc/nt/gdi32/GetObjectType.S deleted file mode 100644 index 056646c2b..000000000 --- a/libc/nt/gdi32/GetObjectType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetObjectType,GetObjectType,1683 diff --git a/libc/nt/gdi32/GetObjectW.S b/libc/nt/gdi32/GetObjectW.S deleted file mode 100644 index 00f65ca21..000000000 --- a/libc/nt/gdi32/GetObjectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetObjectW,GetObjectW,1684 diff --git a/libc/nt/gdi32/GetOutlineTextMetricsW.S b/libc/nt/gdi32/GetOutlineTextMetricsW.S deleted file mode 100644 index 3f0950663..000000000 --- a/libc/nt/gdi32/GetOutlineTextMetricsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetOutlineTextMetricsW,GetOutlineTextMetricsW,1686 diff --git a/libc/nt/gdi32/GetPaletteEntries.S b/libc/nt/gdi32/GetPaletteEntries.S deleted file mode 100644 index 44bffd82d..000000000 --- a/libc/nt/gdi32/GetPaletteEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetPaletteEntries,GetPaletteEntries,1687 diff --git a/libc/nt/gdi32/GetPath.S b/libc/nt/gdi32/GetPath.S deleted file mode 100644 index 7b958d611..000000000 --- a/libc/nt/gdi32/GetPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetPath,GetPath,1688 diff --git a/libc/nt/gdi32/GetPhysicalMonitorDescription.S b/libc/nt/gdi32/GetPhysicalMonitorDescription.S deleted file mode 100644 index 16890015e..000000000 --- a/libc/nt/gdi32/GetPhysicalMonitorDescription.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetPhysicalMonitorDescription,GetPhysicalMonitorDescription,1689 diff --git a/libc/nt/gdi32/GetPhysicalMonitors.S b/libc/nt/gdi32/GetPhysicalMonitors.S deleted file mode 100644 index 984c913d6..000000000 --- a/libc/nt/gdi32/GetPhysicalMonitors.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetPhysicalMonitors,GetPhysicalMonitors,1690 diff --git a/libc/nt/gdi32/GetPixel.S b/libc/nt/gdi32/GetPixel.S index d1fbf5efb..64be4d296 100644 --- a/libc/nt/gdi32/GetPixel.S +++ b/libc/nt/gdi32/GetPixel.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_GetPixel,GetPixel,1691 +.imp gdi32,__imp_GetPixel,GetPixel .text.windows .ftrace1 diff --git a/libc/nt/gdi32/GetPixelFormat.S b/libc/nt/gdi32/GetPixelFormat.S deleted file mode 100644 index aea7b6bb3..000000000 --- a/libc/nt/gdi32/GetPixelFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetPixelFormat,GetPixelFormat,1692 diff --git a/libc/nt/gdi32/GetPolyFillMode.S b/libc/nt/gdi32/GetPolyFillMode.S deleted file mode 100644 index e08b4ed7b..000000000 --- a/libc/nt/gdi32/GetPolyFillMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetPolyFillMode,GetPolyFillMode,1693 diff --git a/libc/nt/gdi32/GetProcessSessionFonts.S b/libc/nt/gdi32/GetProcessSessionFonts.S deleted file mode 100644 index bc2b923f8..000000000 --- a/libc/nt/gdi32/GetProcessSessionFonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetProcessSessionFonts,GetProcessSessionFonts,1694 diff --git a/libc/nt/gdi32/GetROP2.S b/libc/nt/gdi32/GetROP2.S deleted file mode 100644 index cc2c762aa..000000000 --- a/libc/nt/gdi32/GetROP2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetROP2,GetROP2,1695 diff --git a/libc/nt/gdi32/GetRandomRgn.S b/libc/nt/gdi32/GetRandomRgn.S deleted file mode 100644 index 440f46bc8..000000000 --- a/libc/nt/gdi32/GetRandomRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetRandomRgn,GetRandomRgn,1696 diff --git a/libc/nt/gdi32/GetRasterizerCaps.S b/libc/nt/gdi32/GetRasterizerCaps.S deleted file mode 100644 index 50adc1fa6..000000000 --- a/libc/nt/gdi32/GetRasterizerCaps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetRasterizerCaps,GetRasterizerCaps,1697 diff --git a/libc/nt/gdi32/GetRegionData.S b/libc/nt/gdi32/GetRegionData.S deleted file mode 100644 index 29ca9404e..000000000 --- a/libc/nt/gdi32/GetRegionData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetRegionData,GetRegionData,1698 diff --git a/libc/nt/gdi32/GetRelAbs.S b/libc/nt/gdi32/GetRelAbs.S deleted file mode 100644 index 472679b5d..000000000 --- a/libc/nt/gdi32/GetRelAbs.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetRelAbs,GetRelAbs,1699 diff --git a/libc/nt/gdi32/GetRgnBox.S b/libc/nt/gdi32/GetRgnBox.S deleted file mode 100644 index c4b919a45..000000000 --- a/libc/nt/gdi32/GetRgnBox.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetRgnBox,GetRgnBox,1700 diff --git a/libc/nt/gdi32/GetStockObject.S b/libc/nt/gdi32/GetStockObject.S deleted file mode 100644 index e337c8edf..000000000 --- a/libc/nt/gdi32/GetStockObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetStockObject,GetStockObject,1701 diff --git a/libc/nt/gdi32/GetStretchBltMode.S b/libc/nt/gdi32/GetStretchBltMode.S deleted file mode 100644 index 1827e73c4..000000000 --- a/libc/nt/gdi32/GetStretchBltMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetStretchBltMode,GetStretchBltMode,1702 diff --git a/libc/nt/gdi32/GetStringBitmapW.S b/libc/nt/gdi32/GetStringBitmapW.S deleted file mode 100644 index a40159ca8..000000000 --- a/libc/nt/gdi32/GetStringBitmapW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetStringBitmapW,GetStringBitmapW,1704 diff --git a/libc/nt/gdi32/GetSuggestedOPMProtectedOutputArraySize.S b/libc/nt/gdi32/GetSuggestedOPMProtectedOutputArraySize.S deleted file mode 100644 index 1314e01d3..000000000 --- a/libc/nt/gdi32/GetSuggestedOPMProtectedOutputArraySize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetSuggestedOPMProtectedOutputArraySize,GetSuggestedOPMProtectedOutputArraySize,1705 diff --git a/libc/nt/gdi32/GetSystemPaletteEntries.S b/libc/nt/gdi32/GetSystemPaletteEntries.S deleted file mode 100644 index fa7a174c2..000000000 --- a/libc/nt/gdi32/GetSystemPaletteEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetSystemPaletteEntries,GetSystemPaletteEntries,1706 diff --git a/libc/nt/gdi32/GetSystemPaletteUse.S b/libc/nt/gdi32/GetSystemPaletteUse.S deleted file mode 100644 index d08e9ad18..000000000 --- a/libc/nt/gdi32/GetSystemPaletteUse.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetSystemPaletteUse,GetSystemPaletteUse,1707 diff --git a/libc/nt/gdi32/GetTextAlign.S b/libc/nt/gdi32/GetTextAlign.S deleted file mode 100644 index 34d5ddd4d..000000000 --- a/libc/nt/gdi32/GetTextAlign.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextAlign,GetTextAlign,1708 diff --git a/libc/nt/gdi32/GetTextCharacterExtra.S b/libc/nt/gdi32/GetTextCharacterExtra.S deleted file mode 100644 index 6864597a6..000000000 --- a/libc/nt/gdi32/GetTextCharacterExtra.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextCharacterExtra,GetTextCharacterExtra,1709 diff --git a/libc/nt/gdi32/GetTextCharset.S b/libc/nt/gdi32/GetTextCharset.S deleted file mode 100644 index af709721a..000000000 --- a/libc/nt/gdi32/GetTextCharset.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextCharset,GetTextCharset,1710 diff --git a/libc/nt/gdi32/GetTextCharsetInfo.S b/libc/nt/gdi32/GetTextCharsetInfo.S deleted file mode 100644 index 5dc9ec120..000000000 --- a/libc/nt/gdi32/GetTextCharsetInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextCharsetInfo,GetTextCharsetInfo,1711 diff --git a/libc/nt/gdi32/GetTextColor.S b/libc/nt/gdi32/GetTextColor.S deleted file mode 100644 index b47fd03f5..000000000 --- a/libc/nt/gdi32/GetTextColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextColor,GetTextColor,1712 diff --git a/libc/nt/gdi32/GetTextExtentExPointI.S b/libc/nt/gdi32/GetTextExtentExPointI.S deleted file mode 100644 index b5a5a67e8..000000000 --- a/libc/nt/gdi32/GetTextExtentExPointI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextExtentExPointI,GetTextExtentExPointI,1714 diff --git a/libc/nt/gdi32/GetTextExtentExPointW.S b/libc/nt/gdi32/GetTextExtentExPointW.S deleted file mode 100644 index 242e1a0b4..000000000 --- a/libc/nt/gdi32/GetTextExtentExPointW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextExtentExPointW,GetTextExtentExPointW,1715 diff --git a/libc/nt/gdi32/GetTextExtentExPointWPri.S b/libc/nt/gdi32/GetTextExtentExPointWPri.S deleted file mode 100644 index e0095f117..000000000 --- a/libc/nt/gdi32/GetTextExtentExPointWPri.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextExtentExPointWPri,GetTextExtentExPointWPri,1716 diff --git a/libc/nt/gdi32/GetTextExtentPoint32W.S b/libc/nt/gdi32/GetTextExtentPoint32W.S deleted file mode 100644 index b8a7675b7..000000000 --- a/libc/nt/gdi32/GetTextExtentPoint32W.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextExtentPoint32W,GetTextExtentPoint32W,1718 diff --git a/libc/nt/gdi32/GetTextExtentPointI.S b/libc/nt/gdi32/GetTextExtentPointI.S deleted file mode 100644 index a38307d3e..000000000 --- a/libc/nt/gdi32/GetTextExtentPointI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextExtentPointI,GetTextExtentPointI,1720 diff --git a/libc/nt/gdi32/GetTextExtentPointW.S b/libc/nt/gdi32/GetTextExtentPointW.S deleted file mode 100644 index d4c8d841d..000000000 --- a/libc/nt/gdi32/GetTextExtentPointW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextExtentPointW,GetTextExtentPointW,1721 diff --git a/libc/nt/gdi32/GetTextFaceAliasW.S b/libc/nt/gdi32/GetTextFaceAliasW.S deleted file mode 100644 index 8376e6828..000000000 --- a/libc/nt/gdi32/GetTextFaceAliasW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextFaceAliasW,GetTextFaceAliasW,1723 diff --git a/libc/nt/gdi32/GetTextFaceW.S b/libc/nt/gdi32/GetTextFaceW.S deleted file mode 100644 index fe4423482..000000000 --- a/libc/nt/gdi32/GetTextFaceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextFaceW,GetTextFaceW,1724 diff --git a/libc/nt/gdi32/GetTextMetricsW.S b/libc/nt/gdi32/GetTextMetricsW.S deleted file mode 100644 index 36a930e82..000000000 --- a/libc/nt/gdi32/GetTextMetricsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTextMetricsW,GetTextMetricsW,1726 diff --git a/libc/nt/gdi32/GetTransform.S b/libc/nt/gdi32/GetTransform.S deleted file mode 100644 index 1eef96d75..000000000 --- a/libc/nt/gdi32/GetTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetTransform,GetTransform,1727 diff --git a/libc/nt/gdi32/GetViewportExtEx.S b/libc/nt/gdi32/GetViewportExtEx.S deleted file mode 100644 index e58a70909..000000000 --- a/libc/nt/gdi32/GetViewportExtEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetViewportExtEx,GetViewportExtEx,1728 diff --git a/libc/nt/gdi32/GetViewportOrgEx.S b/libc/nt/gdi32/GetViewportOrgEx.S deleted file mode 100644 index c914eb7bb..000000000 --- a/libc/nt/gdi32/GetViewportOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetViewportOrgEx,GetViewportOrgEx,1729 diff --git a/libc/nt/gdi32/GetWinMetaFileBits.S b/libc/nt/gdi32/GetWinMetaFileBits.S deleted file mode 100644 index 58ad3f113..000000000 --- a/libc/nt/gdi32/GetWinMetaFileBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetWinMetaFileBits,GetWinMetaFileBits,1730 diff --git a/libc/nt/gdi32/GetWindowExtEx.S b/libc/nt/gdi32/GetWindowExtEx.S deleted file mode 100644 index f4ea86806..000000000 --- a/libc/nt/gdi32/GetWindowExtEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetWindowExtEx,GetWindowExtEx,1731 diff --git a/libc/nt/gdi32/GetWindowOrgEx.S b/libc/nt/gdi32/GetWindowOrgEx.S deleted file mode 100644 index 83fbff113..000000000 --- a/libc/nt/gdi32/GetWindowOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetWindowOrgEx,GetWindowOrgEx,1732 diff --git a/libc/nt/gdi32/GetWorldTransform.S b/libc/nt/gdi32/GetWorldTransform.S deleted file mode 100644 index 8c1cb3996..000000000 --- a/libc/nt/gdi32/GetWorldTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_GetWorldTransform,GetWorldTransform,1733 diff --git a/libc/nt/gdi32/HT_Get8BPPFormatPalette.S b/libc/nt/gdi32/HT_Get8BPPFormatPalette.S deleted file mode 100644 index f6bfc6ab9..000000000 --- a/libc/nt/gdi32/HT_Get8BPPFormatPalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_HT_Get8BPPFormatPalette,HT_Get8BPPFormatPalette,1734 diff --git a/libc/nt/gdi32/HT_Get8BPPMaskPalette.S b/libc/nt/gdi32/HT_Get8BPPMaskPalette.S deleted file mode 100644 index 563f453cc..000000000 --- a/libc/nt/gdi32/HT_Get8BPPMaskPalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_HT_Get8BPPMaskPalette,HT_Get8BPPMaskPalette,1735 diff --git a/libc/nt/gdi32/InternalDeleteDC.S b/libc/nt/gdi32/InternalDeleteDC.S deleted file mode 100644 index dd7096651..000000000 --- a/libc/nt/gdi32/InternalDeleteDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_InternalDeleteDC,InternalDeleteDC,1736 diff --git a/libc/nt/gdi32/IntersectClipRect.S b/libc/nt/gdi32/IntersectClipRect.S deleted file mode 100644 index 2a97ffde5..000000000 --- a/libc/nt/gdi32/IntersectClipRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_IntersectClipRect,IntersectClipRect,1737 diff --git a/libc/nt/gdi32/InvertRgn.S b/libc/nt/gdi32/InvertRgn.S deleted file mode 100644 index 2907867eb..000000000 --- a/libc/nt/gdi32/InvertRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_InvertRgn,InvertRgn,1738 diff --git a/libc/nt/gdi32/IsValidEnhMetaRecord.S b/libc/nt/gdi32/IsValidEnhMetaRecord.S deleted file mode 100644 index e9d5851c1..000000000 --- a/libc/nt/gdi32/IsValidEnhMetaRecord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_IsValidEnhMetaRecord,IsValidEnhMetaRecord,1739 diff --git a/libc/nt/gdi32/IsValidEnhMetaRecordOffExt.S b/libc/nt/gdi32/IsValidEnhMetaRecordOffExt.S deleted file mode 100644 index 56172169b..000000000 --- a/libc/nt/gdi32/IsValidEnhMetaRecordOffExt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_IsValidEnhMetaRecordOffExt,IsValidEnhMetaRecordOffExt,1740 diff --git a/libc/nt/gdi32/LPtoDP.S b/libc/nt/gdi32/LPtoDP.S deleted file mode 100644 index 0fe6f436a..000000000 --- a/libc/nt/gdi32/LPtoDP.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_LPtoDP,LPtoDP,1741 diff --git a/libc/nt/gdi32/LineTo.S b/libc/nt/gdi32/LineTo.S deleted file mode 100644 index cdbca0595..000000000 --- a/libc/nt/gdi32/LineTo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_LineTo,LineTo,1743 diff --git a/libc/nt/gdi32/LpkEditControl.S b/libc/nt/gdi32/LpkEditControl.S deleted file mode 100644 index 55abd17ea..000000000 --- a/libc/nt/gdi32/LpkEditControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_LpkEditControl,LpkEditControl,1745 diff --git a/libc/nt/gdi32/LpkGetEditControl.S b/libc/nt/gdi32/LpkGetEditControl.S deleted file mode 100644 index e5bacfc65..000000000 --- a/libc/nt/gdi32/LpkGetEditControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_LpkGetEditControl,LpkGetEditControl,1748 diff --git a/libc/nt/gdi32/LpkpEditControlSize.S b/libc/nt/gdi32/LpkpEditControlSize.S deleted file mode 100644 index 74629c889..000000000 --- a/libc/nt/gdi32/LpkpEditControlSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_LpkpEditControlSize,LpkpEditControlSize,1755 diff --git a/libc/nt/gdi32/LpkpInitializeEditControl.S b/libc/nt/gdi32/LpkpInitializeEditControl.S deleted file mode 100644 index 131a8146f..000000000 --- a/libc/nt/gdi32/LpkpInitializeEditControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_LpkpInitializeEditControl,LpkpInitializeEditControl,1756 diff --git a/libc/nt/gdi32/MaskBlt.S b/libc/nt/gdi32/MaskBlt.S deleted file mode 100644 index 5091dc5a9..000000000 --- a/libc/nt/gdi32/MaskBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_MaskBlt,MaskBlt,1757 diff --git a/libc/nt/gdi32/MirrorRgn.S b/libc/nt/gdi32/MirrorRgn.S deleted file mode 100644 index aa2b00ca5..000000000 --- a/libc/nt/gdi32/MirrorRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_MirrorRgn,MirrorRgn,1758 diff --git a/libc/nt/gdi32/ModerncoreGdiInit.S b/libc/nt/gdi32/ModerncoreGdiInit.S deleted file mode 100644 index 6d6abdcb6..000000000 --- a/libc/nt/gdi32/ModerncoreGdiInit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ModerncoreGdiInit,ModerncoreGdiInit,1759 diff --git a/libc/nt/gdi32/ModifyWorldTransform.S b/libc/nt/gdi32/ModifyWorldTransform.S deleted file mode 100644 index bb33060ea..000000000 --- a/libc/nt/gdi32/ModifyWorldTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ModifyWorldTransform,ModifyWorldTransform,1760 diff --git a/libc/nt/gdi32/MoveToEx.S b/libc/nt/gdi32/MoveToEx.S deleted file mode 100644 index 6d786b91d..000000000 --- a/libc/nt/gdi32/MoveToEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_MoveToEx,MoveToEx,1761 diff --git a/libc/nt/gdi32/NamedEscape.S b/libc/nt/gdi32/NamedEscape.S deleted file mode 100644 index d8fa20cc3..000000000 --- a/libc/nt/gdi32/NamedEscape.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_NamedEscape,NamedEscape,1762 diff --git a/libc/nt/gdi32/OffsetClipRgn.S b/libc/nt/gdi32/OffsetClipRgn.S deleted file mode 100644 index 5e3f2fee1..000000000 --- a/libc/nt/gdi32/OffsetClipRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_OffsetClipRgn,OffsetClipRgn,1763 diff --git a/libc/nt/gdi32/OffsetRgn.S b/libc/nt/gdi32/OffsetRgn.S deleted file mode 100644 index 4a1e4d71f..000000000 --- a/libc/nt/gdi32/OffsetRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_OffsetRgn,OffsetRgn,1764 diff --git a/libc/nt/gdi32/OffsetViewportOrgEx.S b/libc/nt/gdi32/OffsetViewportOrgEx.S deleted file mode 100644 index 322460884..000000000 --- a/libc/nt/gdi32/OffsetViewportOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_OffsetViewportOrgEx,OffsetViewportOrgEx,1765 diff --git a/libc/nt/gdi32/OffsetWindowOrgEx.S b/libc/nt/gdi32/OffsetWindowOrgEx.S deleted file mode 100644 index d1ef99a77..000000000 --- a/libc/nt/gdi32/OffsetWindowOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_OffsetWindowOrgEx,OffsetWindowOrgEx,1766 diff --git a/libc/nt/gdi32/PATHOBJ_bEnum.S b/libc/nt/gdi32/PATHOBJ_bEnum.S deleted file mode 100644 index 41bcc7c1b..000000000 --- a/libc/nt/gdi32/PATHOBJ_bEnum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PATHOBJ_bEnum,PATHOBJ_bEnum,1767 diff --git a/libc/nt/gdi32/PATHOBJ_bEnumClipLines.S b/libc/nt/gdi32/PATHOBJ_bEnumClipLines.S deleted file mode 100644 index 0bacda1a2..000000000 --- a/libc/nt/gdi32/PATHOBJ_bEnumClipLines.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PATHOBJ_bEnumClipLines,PATHOBJ_bEnumClipLines,1768 diff --git a/libc/nt/gdi32/PATHOBJ_vEnumStart.S b/libc/nt/gdi32/PATHOBJ_vEnumStart.S deleted file mode 100644 index 29ee163c8..000000000 --- a/libc/nt/gdi32/PATHOBJ_vEnumStart.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PATHOBJ_vEnumStart,PATHOBJ_vEnumStart,1769 diff --git a/libc/nt/gdi32/PATHOBJ_vEnumStartClipLines.S b/libc/nt/gdi32/PATHOBJ_vEnumStartClipLines.S deleted file mode 100644 index 7fdbce209..000000000 --- a/libc/nt/gdi32/PATHOBJ_vEnumStartClipLines.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PATHOBJ_vEnumStartClipLines,PATHOBJ_vEnumStartClipLines,1770 diff --git a/libc/nt/gdi32/PATHOBJ_vGetBounds.S b/libc/nt/gdi32/PATHOBJ_vGetBounds.S deleted file mode 100644 index dc6235d37..000000000 --- a/libc/nt/gdi32/PATHOBJ_vGetBounds.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PATHOBJ_vGetBounds,PATHOBJ_vGetBounds,1771 diff --git a/libc/nt/gdi32/PaintRgn.S b/libc/nt/gdi32/PaintRgn.S deleted file mode 100644 index ae4799a2a..000000000 --- a/libc/nt/gdi32/PaintRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PaintRgn,PaintRgn,1772 diff --git a/libc/nt/gdi32/PatBlt.S b/libc/nt/gdi32/PatBlt.S deleted file mode 100644 index aaa3902f5..000000000 --- a/libc/nt/gdi32/PatBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PatBlt,PatBlt,1773 diff --git a/libc/nt/gdi32/PathToRegion.S b/libc/nt/gdi32/PathToRegion.S deleted file mode 100644 index df31ac994..000000000 --- a/libc/nt/gdi32/PathToRegion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PathToRegion,PathToRegion,1774 diff --git a/libc/nt/gdi32/Pie.S b/libc/nt/gdi32/Pie.S deleted file mode 100644 index 0029b587c..000000000 --- a/libc/nt/gdi32/Pie.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Pie,Pie,1775 diff --git a/libc/nt/gdi32/PlayEnhMetaFile.S b/libc/nt/gdi32/PlayEnhMetaFile.S deleted file mode 100644 index 88f529340..000000000 --- a/libc/nt/gdi32/PlayEnhMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PlayEnhMetaFile,PlayEnhMetaFile,1776 diff --git a/libc/nt/gdi32/PlayEnhMetaFileRecord.S b/libc/nt/gdi32/PlayEnhMetaFileRecord.S deleted file mode 100644 index ecf903a71..000000000 --- a/libc/nt/gdi32/PlayEnhMetaFileRecord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PlayEnhMetaFileRecord,PlayEnhMetaFileRecord,1777 diff --git a/libc/nt/gdi32/PlayMetaFile.S b/libc/nt/gdi32/PlayMetaFile.S deleted file mode 100644 index fb84e8a5b..000000000 --- a/libc/nt/gdi32/PlayMetaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PlayMetaFile,PlayMetaFile,1778 diff --git a/libc/nt/gdi32/PlayMetaFileRecord.S b/libc/nt/gdi32/PlayMetaFileRecord.S deleted file mode 100644 index 6dd79e123..000000000 --- a/libc/nt/gdi32/PlayMetaFileRecord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PlayMetaFileRecord,PlayMetaFileRecord,1779 diff --git a/libc/nt/gdi32/PlgBlt.S b/libc/nt/gdi32/PlgBlt.S deleted file mode 100644 index 8b0f2a694..000000000 --- a/libc/nt/gdi32/PlgBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PlgBlt,PlgBlt,1780 diff --git a/libc/nt/gdi32/PolyBezier.S b/libc/nt/gdi32/PolyBezier.S deleted file mode 100644 index 0f5729111..000000000 --- a/libc/nt/gdi32/PolyBezier.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PolyBezier,PolyBezier,1781 diff --git a/libc/nt/gdi32/PolyBezierTo.S b/libc/nt/gdi32/PolyBezierTo.S deleted file mode 100644 index d381e7a6b..000000000 --- a/libc/nt/gdi32/PolyBezierTo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PolyBezierTo,PolyBezierTo,1782 diff --git a/libc/nt/gdi32/PolyDraw.S b/libc/nt/gdi32/PolyDraw.S deleted file mode 100644 index d05e14288..000000000 --- a/libc/nt/gdi32/PolyDraw.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PolyDraw,PolyDraw,1783 diff --git a/libc/nt/gdi32/PolyPatBlt.S b/libc/nt/gdi32/PolyPatBlt.S deleted file mode 100644 index a27d1f711..000000000 --- a/libc/nt/gdi32/PolyPatBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PolyPatBlt,PolyPatBlt,1784 diff --git a/libc/nt/gdi32/PolyPolygon.S b/libc/nt/gdi32/PolyPolygon.S deleted file mode 100644 index 84bb48165..000000000 --- a/libc/nt/gdi32/PolyPolygon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PolyPolygon,PolyPolygon,1785 diff --git a/libc/nt/gdi32/PolyPolyline.S b/libc/nt/gdi32/PolyPolyline.S deleted file mode 100644 index 40bdc94de..000000000 --- a/libc/nt/gdi32/PolyPolyline.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PolyPolyline,PolyPolyline,1786 diff --git a/libc/nt/gdi32/PolyTextOutW.S b/libc/nt/gdi32/PolyTextOutW.S deleted file mode 100644 index 7a85feeaf..000000000 --- a/libc/nt/gdi32/PolyTextOutW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PolyTextOutW,PolyTextOutW,1788 diff --git a/libc/nt/gdi32/Polygon.S b/libc/nt/gdi32/Polygon.S deleted file mode 100644 index ddef379ac..000000000 --- a/libc/nt/gdi32/Polygon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Polygon,Polygon,1789 diff --git a/libc/nt/gdi32/Polyline.S b/libc/nt/gdi32/Polyline.S deleted file mode 100644 index 2c444720b..000000000 --- a/libc/nt/gdi32/Polyline.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Polyline,Polyline,1790 diff --git a/libc/nt/gdi32/PolylineTo.S b/libc/nt/gdi32/PolylineTo.S deleted file mode 100644 index 0aa876575..000000000 --- a/libc/nt/gdi32/PolylineTo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PolylineTo,PolylineTo,1791 diff --git a/libc/nt/gdi32/PtInRegion.S b/libc/nt/gdi32/PtInRegion.S deleted file mode 100644 index 4f4872108..000000000 --- a/libc/nt/gdi32/PtInRegion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PtInRegion,PtInRegion,1792 diff --git a/libc/nt/gdi32/PtVisible.S b/libc/nt/gdi32/PtVisible.S deleted file mode 100644 index 9496071d4..000000000 --- a/libc/nt/gdi32/PtVisible.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_PtVisible,PtVisible,1793 diff --git a/libc/nt/gdi32/QueryFontAssocStatus.S b/libc/nt/gdi32/QueryFontAssocStatus.S deleted file mode 100644 index 8aea99ae7..000000000 --- a/libc/nt/gdi32/QueryFontAssocStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_QueryFontAssocStatus,QueryFontAssocStatus,1794 diff --git a/libc/nt/gdi32/RealizePalette.S b/libc/nt/gdi32/RealizePalette.S deleted file mode 100644 index 356405b61..000000000 --- a/libc/nt/gdi32/RealizePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_RealizePalette,RealizePalette,1795 diff --git a/libc/nt/gdi32/RectInRegion.S b/libc/nt/gdi32/RectInRegion.S deleted file mode 100644 index f148bc0a7..000000000 --- a/libc/nt/gdi32/RectInRegion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_RectInRegion,RectInRegion,1796 diff --git a/libc/nt/gdi32/RectVisible.S b/libc/nt/gdi32/RectVisible.S deleted file mode 100644 index 8f60dfa5e..000000000 --- a/libc/nt/gdi32/RectVisible.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_RectVisible,RectVisible,1797 diff --git a/libc/nt/gdi32/Rectangle.S b/libc/nt/gdi32/Rectangle.S deleted file mode 100644 index e5e22ec46..000000000 --- a/libc/nt/gdi32/Rectangle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_Rectangle,Rectangle,1798 diff --git a/libc/nt/gdi32/RemoveFontMemResourceEx.S b/libc/nt/gdi32/RemoveFontMemResourceEx.S deleted file mode 100644 index df851dcb4..000000000 --- a/libc/nt/gdi32/RemoveFontMemResourceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_RemoveFontMemResourceEx,RemoveFontMemResourceEx,1799 diff --git a/libc/nt/gdi32/RemoveFontResourceExW.S b/libc/nt/gdi32/RemoveFontResourceExW.S deleted file mode 100644 index e3a0a127b..000000000 --- a/libc/nt/gdi32/RemoveFontResourceExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_RemoveFontResourceExW,RemoveFontResourceExW,1802 diff --git a/libc/nt/gdi32/RemoveFontResourceTracking.S b/libc/nt/gdi32/RemoveFontResourceTracking.S deleted file mode 100644 index b3bcd95c0..000000000 --- a/libc/nt/gdi32/RemoveFontResourceTracking.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_RemoveFontResourceTracking,RemoveFontResourceTracking,1803 diff --git a/libc/nt/gdi32/RemoveFontResourceW.S b/libc/nt/gdi32/RemoveFontResourceW.S deleted file mode 100644 index 618a16af5..000000000 --- a/libc/nt/gdi32/RemoveFontResourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_RemoveFontResourceW,RemoveFontResourceW,1804 diff --git a/libc/nt/gdi32/ResetDCW.S b/libc/nt/gdi32/ResetDCW.S deleted file mode 100644 index 06e9c7288..000000000 --- a/libc/nt/gdi32/ResetDCW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ResetDCW,ResetDCW,1806 diff --git a/libc/nt/gdi32/ResizePalette.S b/libc/nt/gdi32/ResizePalette.S deleted file mode 100644 index fa7103772..000000000 --- a/libc/nt/gdi32/ResizePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ResizePalette,ResizePalette,1807 diff --git a/libc/nt/gdi32/RestoreDC.S b/libc/nt/gdi32/RestoreDC.S index f98fbd122..0bc13138c 100644 --- a/libc/nt/gdi32/RestoreDC.S +++ b/libc/nt/gdi32/RestoreDC.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_RestoreDC,RestoreDC,1808 +.imp gdi32,__imp_RestoreDC,RestoreDC .text.windows .ftrace1 diff --git a/libc/nt/gdi32/RoundRect.S b/libc/nt/gdi32/RoundRect.S deleted file mode 100644 index 5cc207463..000000000 --- a/libc/nt/gdi32/RoundRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_RoundRect,RoundRect,1809 diff --git a/libc/nt/gdi32/STROBJ_bEnum.S b/libc/nt/gdi32/STROBJ_bEnum.S deleted file mode 100644 index 1481966b5..000000000 --- a/libc/nt/gdi32/STROBJ_bEnum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_STROBJ_bEnum,STROBJ_bEnum,1810 diff --git a/libc/nt/gdi32/STROBJ_bEnumPositionsOnly.S b/libc/nt/gdi32/STROBJ_bEnumPositionsOnly.S deleted file mode 100644 index 79ad94ae6..000000000 --- a/libc/nt/gdi32/STROBJ_bEnumPositionsOnly.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_STROBJ_bEnumPositionsOnly,STROBJ_bEnumPositionsOnly,1811 diff --git a/libc/nt/gdi32/STROBJ_bGetAdvanceWidths.S b/libc/nt/gdi32/STROBJ_bGetAdvanceWidths.S deleted file mode 100644 index aeabfef79..000000000 --- a/libc/nt/gdi32/STROBJ_bGetAdvanceWidths.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_STROBJ_bGetAdvanceWidths,STROBJ_bGetAdvanceWidths,1812 diff --git a/libc/nt/gdi32/STROBJ_dwGetCodePage.S b/libc/nt/gdi32/STROBJ_dwGetCodePage.S deleted file mode 100644 index f7b9ee642..000000000 --- a/libc/nt/gdi32/STROBJ_dwGetCodePage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_STROBJ_dwGetCodePage,STROBJ_dwGetCodePage,1813 diff --git a/libc/nt/gdi32/STROBJ_vEnumStart.S b/libc/nt/gdi32/STROBJ_vEnumStart.S deleted file mode 100644 index 2e9f73468..000000000 --- a/libc/nt/gdi32/STROBJ_vEnumStart.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_STROBJ_vEnumStart,STROBJ_vEnumStart,1814 diff --git a/libc/nt/gdi32/SaveDC.S b/libc/nt/gdi32/SaveDC.S index 8d95732d4..1b6ed114c 100644 --- a/libc/nt/gdi32/SaveDC.S +++ b/libc/nt/gdi32/SaveDC.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SaveDC,SaveDC,1815 +.imp gdi32,__imp_SaveDC,SaveDC .text.windows .ftrace1 diff --git a/libc/nt/gdi32/ScaleRgn.S b/libc/nt/gdi32/ScaleRgn.S deleted file mode 100644 index 9fe25b6a8..000000000 --- a/libc/nt/gdi32/ScaleRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ScaleRgn,ScaleRgn,1816 diff --git a/libc/nt/gdi32/ScaleValues.S b/libc/nt/gdi32/ScaleValues.S deleted file mode 100644 index d574f9303..000000000 --- a/libc/nt/gdi32/ScaleValues.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ScaleValues,ScaleValues,1817 diff --git a/libc/nt/gdi32/ScaleViewportExtEx.S b/libc/nt/gdi32/ScaleViewportExtEx.S deleted file mode 100644 index c9b128510..000000000 --- a/libc/nt/gdi32/ScaleViewportExtEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ScaleViewportExtEx,ScaleViewportExtEx,1818 diff --git a/libc/nt/gdi32/ScaleWindowExtEx.S b/libc/nt/gdi32/ScaleWindowExtEx.S deleted file mode 100644 index 16379d49e..000000000 --- a/libc/nt/gdi32/ScaleWindowExtEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_ScaleWindowExtEx,ScaleWindowExtEx,1819 diff --git a/libc/nt/gdi32/SelectBrushLocal.S b/libc/nt/gdi32/SelectBrushLocal.S deleted file mode 100644 index af13e12a0..000000000 --- a/libc/nt/gdi32/SelectBrushLocal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SelectBrushLocal,SelectBrushLocal,1860 diff --git a/libc/nt/gdi32/SelectClipPath.S b/libc/nt/gdi32/SelectClipPath.S deleted file mode 100644 index 24dd8dd69..000000000 --- a/libc/nt/gdi32/SelectClipPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SelectClipPath,SelectClipPath,1861 diff --git a/libc/nt/gdi32/SelectClipRgn.S b/libc/nt/gdi32/SelectClipRgn.S deleted file mode 100644 index 207150422..000000000 --- a/libc/nt/gdi32/SelectClipRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SelectClipRgn,SelectClipRgn,1862 diff --git a/libc/nt/gdi32/SelectFontLocal.S b/libc/nt/gdi32/SelectFontLocal.S deleted file mode 100644 index ed721716a..000000000 --- a/libc/nt/gdi32/SelectFontLocal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SelectFontLocal,SelectFontLocal,1863 diff --git a/libc/nt/gdi32/SelectObject.S b/libc/nt/gdi32/SelectObject.S index f1fa2a39c..02480341b 100644 --- a/libc/nt/gdi32/SelectObject.S +++ b/libc/nt/gdi32/SelectObject.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SelectObject,SelectObject,1864 +.imp gdi32,__imp_SelectObject,SelectObject .text.windows .ftrace1 diff --git a/libc/nt/gdi32/SelectPalette.S b/libc/nt/gdi32/SelectPalette.S deleted file mode 100644 index 5c0a43156..000000000 --- a/libc/nt/gdi32/SelectPalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SelectPalette,SelectPalette,1865 diff --git a/libc/nt/gdi32/SetAbortProc.S b/libc/nt/gdi32/SetAbortProc.S deleted file mode 100644 index 6e115c5e3..000000000 --- a/libc/nt/gdi32/SetAbortProc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetAbortProc,SetAbortProc,1866 diff --git a/libc/nt/gdi32/SetArcDirection.S b/libc/nt/gdi32/SetArcDirection.S deleted file mode 100644 index bd0e9f9cd..000000000 --- a/libc/nt/gdi32/SetArcDirection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetArcDirection,SetArcDirection,1867 diff --git a/libc/nt/gdi32/SetBitmapAttributes.S b/libc/nt/gdi32/SetBitmapAttributes.S deleted file mode 100644 index 37f7e32ff..000000000 --- a/libc/nt/gdi32/SetBitmapAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetBitmapAttributes,SetBitmapAttributes,1868 diff --git a/libc/nt/gdi32/SetBitmapBits.S b/libc/nt/gdi32/SetBitmapBits.S deleted file mode 100644 index ee23537f1..000000000 --- a/libc/nt/gdi32/SetBitmapBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetBitmapBits,SetBitmapBits,1869 diff --git a/libc/nt/gdi32/SetBitmapDimensionEx.S b/libc/nt/gdi32/SetBitmapDimensionEx.S deleted file mode 100644 index 37824d1ef..000000000 --- a/libc/nt/gdi32/SetBitmapDimensionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetBitmapDimensionEx,SetBitmapDimensionEx,1870 diff --git a/libc/nt/gdi32/SetBkColor.S b/libc/nt/gdi32/SetBkColor.S deleted file mode 100644 index f18eb47f6..000000000 --- a/libc/nt/gdi32/SetBkColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetBkColor,SetBkColor,1871 diff --git a/libc/nt/gdi32/SetBkMode.S b/libc/nt/gdi32/SetBkMode.S index eed5c0565..6f3afad43 100644 --- a/libc/nt/gdi32/SetBkMode.S +++ b/libc/nt/gdi32/SetBkMode.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SetBkMode,SetBkMode,1872 +.imp gdi32,__imp_SetBkMode,SetBkMode .text.windows .ftrace1 diff --git a/libc/nt/gdi32/SetBoundsRect.S b/libc/nt/gdi32/SetBoundsRect.S deleted file mode 100644 index 845b7894c..000000000 --- a/libc/nt/gdi32/SetBoundsRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetBoundsRect,SetBoundsRect,1873 diff --git a/libc/nt/gdi32/SetBrushAttributes.S b/libc/nt/gdi32/SetBrushAttributes.S deleted file mode 100644 index 8fe41983b..000000000 --- a/libc/nt/gdi32/SetBrushAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetBrushAttributes,SetBrushAttributes,1874 diff --git a/libc/nt/gdi32/SetBrushOrgEx.S b/libc/nt/gdi32/SetBrushOrgEx.S deleted file mode 100644 index 3d2f524d3..000000000 --- a/libc/nt/gdi32/SetBrushOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetBrushOrgEx,SetBrushOrgEx,1875 diff --git a/libc/nt/gdi32/SetColorAdjustment.S b/libc/nt/gdi32/SetColorAdjustment.S deleted file mode 100644 index aec0dac9b..000000000 --- a/libc/nt/gdi32/SetColorAdjustment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetColorAdjustment,SetColorAdjustment,1876 diff --git a/libc/nt/gdi32/SetColorSpace.S b/libc/nt/gdi32/SetColorSpace.S deleted file mode 100644 index 6e32e6634..000000000 --- a/libc/nt/gdi32/SetColorSpace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetColorSpace,SetColorSpace,1877 diff --git a/libc/nt/gdi32/SetDCBrushColor.S b/libc/nt/gdi32/SetDCBrushColor.S deleted file mode 100644 index 6338052d5..000000000 --- a/libc/nt/gdi32/SetDCBrushColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetDCBrushColor,SetDCBrushColor,1878 diff --git a/libc/nt/gdi32/SetDCDpiScaleValue.S b/libc/nt/gdi32/SetDCDpiScaleValue.S deleted file mode 100644 index 1b58bc9b1..000000000 --- a/libc/nt/gdi32/SetDCDpiScaleValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetDCDpiScaleValue,SetDCDpiScaleValue,1879 diff --git a/libc/nt/gdi32/SetDCPenColor.S b/libc/nt/gdi32/SetDCPenColor.S deleted file mode 100644 index bc33b7b0d..000000000 --- a/libc/nt/gdi32/SetDCPenColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetDCPenColor,SetDCPenColor,1880 diff --git a/libc/nt/gdi32/SetDIBColorTable.S b/libc/nt/gdi32/SetDIBColorTable.S deleted file mode 100644 index c5b8b1d40..000000000 --- a/libc/nt/gdi32/SetDIBColorTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetDIBColorTable,SetDIBColorTable,1881 diff --git a/libc/nt/gdi32/SetDIBits.S b/libc/nt/gdi32/SetDIBits.S deleted file mode 100644 index 2d7009333..000000000 --- a/libc/nt/gdi32/SetDIBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetDIBits,SetDIBits,1882 diff --git a/libc/nt/gdi32/SetDIBitsToDevice.S b/libc/nt/gdi32/SetDIBitsToDevice.S deleted file mode 100644 index 4762854e8..000000000 --- a/libc/nt/gdi32/SetDIBitsToDevice.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetDIBitsToDevice,SetDIBitsToDevice,1883 diff --git a/libc/nt/gdi32/SetDeviceGammaRamp.S b/libc/nt/gdi32/SetDeviceGammaRamp.S deleted file mode 100644 index 76674e133..000000000 --- a/libc/nt/gdi32/SetDeviceGammaRamp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetDeviceGammaRamp,SetDeviceGammaRamp,1884 diff --git a/libc/nt/gdi32/SetEnhMetaFileBits.S b/libc/nt/gdi32/SetEnhMetaFileBits.S deleted file mode 100644 index 38e494e9f..000000000 --- a/libc/nt/gdi32/SetEnhMetaFileBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetEnhMetaFileBits,SetEnhMetaFileBits,1885 diff --git a/libc/nt/gdi32/SetFontEnumeration.S b/libc/nt/gdi32/SetFontEnumeration.S deleted file mode 100644 index 8574225b5..000000000 --- a/libc/nt/gdi32/SetFontEnumeration.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetFontEnumeration,SetFontEnumeration,1886 diff --git a/libc/nt/gdi32/SetGraphicsMode.S b/libc/nt/gdi32/SetGraphicsMode.S deleted file mode 100644 index 5a685fd45..000000000 --- a/libc/nt/gdi32/SetGraphicsMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetGraphicsMode,SetGraphicsMode,1887 diff --git a/libc/nt/gdi32/SetICMMode.S b/libc/nt/gdi32/SetICMMode.S deleted file mode 100644 index 4e645c027..000000000 --- a/libc/nt/gdi32/SetICMMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetICMMode,SetICMMode,1888 diff --git a/libc/nt/gdi32/SetICMProfileW.S b/libc/nt/gdi32/SetICMProfileW.S deleted file mode 100644 index f17b0dd21..000000000 --- a/libc/nt/gdi32/SetICMProfileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetICMProfileW,SetICMProfileW,1890 diff --git a/libc/nt/gdi32/SetLayout.S b/libc/nt/gdi32/SetLayout.S deleted file mode 100644 index e4902327b..000000000 --- a/libc/nt/gdi32/SetLayout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetLayout,SetLayout,1891 diff --git a/libc/nt/gdi32/SetLayoutWidth.S b/libc/nt/gdi32/SetLayoutWidth.S deleted file mode 100644 index 8ecbf3cd4..000000000 --- a/libc/nt/gdi32/SetLayoutWidth.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetLayoutWidth,SetLayoutWidth,1892 diff --git a/libc/nt/gdi32/SetMagicColors.S b/libc/nt/gdi32/SetMagicColors.S deleted file mode 100644 index 712be32b1..000000000 --- a/libc/nt/gdi32/SetMagicColors.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetMagicColors,SetMagicColors,1893 diff --git a/libc/nt/gdi32/SetMapMode.S b/libc/nt/gdi32/SetMapMode.S deleted file mode 100644 index 1f24c5140..000000000 --- a/libc/nt/gdi32/SetMapMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetMapMode,SetMapMode,1894 diff --git a/libc/nt/gdi32/SetMapperFlags.S b/libc/nt/gdi32/SetMapperFlags.S deleted file mode 100644 index 2530db88e..000000000 --- a/libc/nt/gdi32/SetMapperFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetMapperFlags,SetMapperFlags,1895 diff --git a/libc/nt/gdi32/SetMetaFileBitsEx.S b/libc/nt/gdi32/SetMetaFileBitsEx.S deleted file mode 100644 index 116bacdee..000000000 --- a/libc/nt/gdi32/SetMetaFileBitsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetMetaFileBitsEx,SetMetaFileBitsEx,1896 diff --git a/libc/nt/gdi32/SetMetaRgn.S b/libc/nt/gdi32/SetMetaRgn.S deleted file mode 100644 index 699b7e523..000000000 --- a/libc/nt/gdi32/SetMetaRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetMetaRgn,SetMetaRgn,1897 diff --git a/libc/nt/gdi32/SetMiterLimit.S b/libc/nt/gdi32/SetMiterLimit.S deleted file mode 100644 index 151900623..000000000 --- a/libc/nt/gdi32/SetMiterLimit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetMiterLimit,SetMiterLimit,1898 diff --git a/libc/nt/gdi32/SetOPMSigningKeyAndSequenceNumbers.S b/libc/nt/gdi32/SetOPMSigningKeyAndSequenceNumbers.S deleted file mode 100644 index c3579c837..000000000 --- a/libc/nt/gdi32/SetOPMSigningKeyAndSequenceNumbers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetOPMSigningKeyAndSequenceNumbers,SetOPMSigningKeyAndSequenceNumbers,1899 diff --git a/libc/nt/gdi32/SetPaletteEntries.S b/libc/nt/gdi32/SetPaletteEntries.S deleted file mode 100644 index df31a4330..000000000 --- a/libc/nt/gdi32/SetPaletteEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetPaletteEntries,SetPaletteEntries,1900 diff --git a/libc/nt/gdi32/SetPixel.S b/libc/nt/gdi32/SetPixel.S index 8f9a2b858..91df1fb3b 100644 --- a/libc/nt/gdi32/SetPixel.S +++ b/libc/nt/gdi32/SetPixel.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SetPixel,SetPixel,1901 +.imp gdi32,__imp_SetPixel,SetPixel .text.windows .ftrace1 diff --git a/libc/nt/gdi32/SetPixelFormat.S b/libc/nt/gdi32/SetPixelFormat.S index 951ce5b16..b5c6155d2 100644 --- a/libc/nt/gdi32/SetPixelFormat.S +++ b/libc/nt/gdi32/SetPixelFormat.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SetPixelFormat,SetPixelFormat,1902 +.imp gdi32,__imp_SetPixelFormat,SetPixelFormat .text.windows .ftrace1 diff --git a/libc/nt/gdi32/SetPixelV.S b/libc/nt/gdi32/SetPixelV.S deleted file mode 100644 index a6646aaeb..000000000 --- a/libc/nt/gdi32/SetPixelV.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetPixelV,SetPixelV,1903 diff --git a/libc/nt/gdi32/SetPolyFillMode.S b/libc/nt/gdi32/SetPolyFillMode.S deleted file mode 100644 index 2571145ea..000000000 --- a/libc/nt/gdi32/SetPolyFillMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetPolyFillMode,SetPolyFillMode,1904 diff --git a/libc/nt/gdi32/SetROP2.S b/libc/nt/gdi32/SetROP2.S deleted file mode 100644 index d1a4f4a1f..000000000 --- a/libc/nt/gdi32/SetROP2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetROP2,SetROP2,1905 diff --git a/libc/nt/gdi32/SetRectRgn.S b/libc/nt/gdi32/SetRectRgn.S deleted file mode 100644 index 0532b415c..000000000 --- a/libc/nt/gdi32/SetRectRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetRectRgn,SetRectRgn,1906 diff --git a/libc/nt/gdi32/SetRelAbs.S b/libc/nt/gdi32/SetRelAbs.S deleted file mode 100644 index 627fcf99e..000000000 --- a/libc/nt/gdi32/SetRelAbs.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetRelAbs,SetRelAbs,1907 diff --git a/libc/nt/gdi32/SetStretchBltMode.S b/libc/nt/gdi32/SetStretchBltMode.S deleted file mode 100644 index d09d508ab..000000000 --- a/libc/nt/gdi32/SetStretchBltMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetStretchBltMode,SetStretchBltMode,1908 diff --git a/libc/nt/gdi32/SetSystemPaletteUse.S b/libc/nt/gdi32/SetSystemPaletteUse.S deleted file mode 100644 index 986bbc0f6..000000000 --- a/libc/nt/gdi32/SetSystemPaletteUse.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetSystemPaletteUse,SetSystemPaletteUse,1909 diff --git a/libc/nt/gdi32/SetTextAlign.S b/libc/nt/gdi32/SetTextAlign.S index 2a9c21422..a5ce6ae5b 100644 --- a/libc/nt/gdi32/SetTextAlign.S +++ b/libc/nt/gdi32/SetTextAlign.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SetTextAlign,SetTextAlign,1910 +.imp gdi32,__imp_SetTextAlign,SetTextAlign .text.windows .ftrace1 diff --git a/libc/nt/gdi32/SetTextCharacterExtra.S b/libc/nt/gdi32/SetTextCharacterExtra.S deleted file mode 100644 index 51bf38aa6..000000000 --- a/libc/nt/gdi32/SetTextCharacterExtra.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetTextCharacterExtra,SetTextCharacterExtra,1911 diff --git a/libc/nt/gdi32/SetTextColor.S b/libc/nt/gdi32/SetTextColor.S index 48aeb3032..03a6e8227 100644 --- a/libc/nt/gdi32/SetTextColor.S +++ b/libc/nt/gdi32/SetTextColor.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SetTextColor,SetTextColor,1912 +.imp gdi32,__imp_SetTextColor,SetTextColor .text.windows .ftrace1 diff --git a/libc/nt/gdi32/SetTextJustification.S b/libc/nt/gdi32/SetTextJustification.S index 2008030df..b2ca9e1cb 100644 --- a/libc/nt/gdi32/SetTextJustification.S +++ b/libc/nt/gdi32/SetTextJustification.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SetTextJustification,SetTextJustification,1913 +.imp gdi32,__imp_SetTextJustification,SetTextJustification .text.windows .ftrace1 diff --git a/libc/nt/gdi32/SetViewportExtEx.S b/libc/nt/gdi32/SetViewportExtEx.S deleted file mode 100644 index f86888f12..000000000 --- a/libc/nt/gdi32/SetViewportExtEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetViewportExtEx,SetViewportExtEx,1914 diff --git a/libc/nt/gdi32/SetViewportOrgEx.S b/libc/nt/gdi32/SetViewportOrgEx.S deleted file mode 100644 index 03af04ffb..000000000 --- a/libc/nt/gdi32/SetViewportOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetViewportOrgEx,SetViewportOrgEx,1915 diff --git a/libc/nt/gdi32/SetVirtualResolution.S b/libc/nt/gdi32/SetVirtualResolution.S deleted file mode 100644 index 541aee693..000000000 --- a/libc/nt/gdi32/SetVirtualResolution.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetVirtualResolution,SetVirtualResolution,1916 diff --git a/libc/nt/gdi32/SetWinMetaFileBits.S b/libc/nt/gdi32/SetWinMetaFileBits.S deleted file mode 100644 index 2d3f4d4be..000000000 --- a/libc/nt/gdi32/SetWinMetaFileBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetWinMetaFileBits,SetWinMetaFileBits,1917 diff --git a/libc/nt/gdi32/SetWindowExtEx.S b/libc/nt/gdi32/SetWindowExtEx.S deleted file mode 100644 index fb0c5c458..000000000 --- a/libc/nt/gdi32/SetWindowExtEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetWindowExtEx,SetWindowExtEx,1918 diff --git a/libc/nt/gdi32/SetWindowOrgEx.S b/libc/nt/gdi32/SetWindowOrgEx.S deleted file mode 100644 index 143cb098a..000000000 --- a/libc/nt/gdi32/SetWindowOrgEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetWindowOrgEx,SetWindowOrgEx,1919 diff --git a/libc/nt/gdi32/SetWorldTransform.S b/libc/nt/gdi32/SetWorldTransform.S deleted file mode 100644 index 1b7b794ba..000000000 --- a/libc/nt/gdi32/SetWorldTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_SetWorldTransform,SetWorldTransform,1920 diff --git a/libc/nt/gdi32/StartDocW.S b/libc/nt/gdi32/StartDocW.S deleted file mode 100644 index 2598184aa..000000000 --- a/libc/nt/gdi32/StartDocW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_StartDocW,StartDocW,1922 diff --git a/libc/nt/gdi32/StartFormPage.S b/libc/nt/gdi32/StartFormPage.S deleted file mode 100644 index 4874e0552..000000000 --- a/libc/nt/gdi32/StartFormPage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_StartFormPage,StartFormPage,1923 diff --git a/libc/nt/gdi32/StartPage.S b/libc/nt/gdi32/StartPage.S deleted file mode 100644 index e6f6c34f5..000000000 --- a/libc/nt/gdi32/StartPage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_StartPage,StartPage,1924 diff --git a/libc/nt/gdi32/StretchBlt.S b/libc/nt/gdi32/StretchBlt.S deleted file mode 100644 index 049a9ef3d..000000000 --- a/libc/nt/gdi32/StretchBlt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_StretchBlt,StretchBlt,1925 diff --git a/libc/nt/gdi32/StretchDIBits.S b/libc/nt/gdi32/StretchDIBits.S deleted file mode 100644 index 912f675dc..000000000 --- a/libc/nt/gdi32/StretchDIBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_StretchDIBits,StretchDIBits,1926 diff --git a/libc/nt/gdi32/StrokeAndFillPath.S b/libc/nt/gdi32/StrokeAndFillPath.S deleted file mode 100644 index 6447033cc..000000000 --- a/libc/nt/gdi32/StrokeAndFillPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_StrokeAndFillPath,StrokeAndFillPath,1927 diff --git a/libc/nt/gdi32/StrokePath.S b/libc/nt/gdi32/StrokePath.S deleted file mode 100644 index 2a85c2180..000000000 --- a/libc/nt/gdi32/StrokePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_StrokePath,StrokePath,1928 diff --git a/libc/nt/gdi32/SwapBuffers.S b/libc/nt/gdi32/SwapBuffers.S index 09b222431..f2b12ab95 100644 --- a/libc/nt/gdi32/SwapBuffers.S +++ b/libc/nt/gdi32/SwapBuffers.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp gdi32,__imp_SwapBuffers,SwapBuffers,1929 +.imp gdi32,__imp_SwapBuffers,SwapBuffers .text.windows .ftrace1 diff --git a/libc/nt/gdi32/TextOutW.S b/libc/nt/gdi32/TextOutW.S deleted file mode 100644 index 11f840f80..000000000 --- a/libc/nt/gdi32/TextOutW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_TextOutW,TextOutW,1931 diff --git a/libc/nt/gdi32/TranslateCharsetInfo.S b/libc/nt/gdi32/TranslateCharsetInfo.S deleted file mode 100644 index 9ed04710f..000000000 --- a/libc/nt/gdi32/TranslateCharsetInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_TranslateCharsetInfo,TranslateCharsetInfo,1932 diff --git a/libc/nt/gdi32/UnloadNetworkFonts.S b/libc/nt/gdi32/UnloadNetworkFonts.S deleted file mode 100644 index 80fbceabd..000000000 --- a/libc/nt/gdi32/UnloadNetworkFonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_UnloadNetworkFonts,UnloadNetworkFonts,1933 diff --git a/libc/nt/gdi32/UnrealizeObject.S b/libc/nt/gdi32/UnrealizeObject.S deleted file mode 100644 index cfda07c81..000000000 --- a/libc/nt/gdi32/UnrealizeObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_UnrealizeObject,UnrealizeObject,1934 diff --git a/libc/nt/gdi32/UpdateColors.S b/libc/nt/gdi32/UpdateColors.S deleted file mode 100644 index 10192b5d3..000000000 --- a/libc/nt/gdi32/UpdateColors.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_UpdateColors,UpdateColors,1935 diff --git a/libc/nt/gdi32/UpdateICMRegKeyW.S b/libc/nt/gdi32/UpdateICMRegKeyW.S deleted file mode 100644 index 3a0a43381..000000000 --- a/libc/nt/gdi32/UpdateICMRegKeyW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_UpdateICMRegKeyW,UpdateICMRegKeyW,1937 diff --git a/libc/nt/gdi32/WidenPath.S b/libc/nt/gdi32/WidenPath.S deleted file mode 100644 index 8c8a992c1..000000000 --- a/libc/nt/gdi32/WidenPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_WidenPath,WidenPath,1941 diff --git a/libc/nt/gdi32/XFORMOBJ_bApplyXform.S b/libc/nt/gdi32/XFORMOBJ_bApplyXform.S deleted file mode 100644 index bead35756..000000000 --- a/libc/nt/gdi32/XFORMOBJ_bApplyXform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_XFORMOBJ_bApplyXform,XFORMOBJ_bApplyXform,1942 diff --git a/libc/nt/gdi32/XFORMOBJ_iGetXform.S b/libc/nt/gdi32/XFORMOBJ_iGetXform.S deleted file mode 100644 index de79a15db..000000000 --- a/libc/nt/gdi32/XFORMOBJ_iGetXform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_XFORMOBJ_iGetXform,XFORMOBJ_iGetXform,1943 diff --git a/libc/nt/gdi32/XLATEOBJ_cGetPalette.S b/libc/nt/gdi32/XLATEOBJ_cGetPalette.S deleted file mode 100644 index d372da3f0..000000000 --- a/libc/nt/gdi32/XLATEOBJ_cGetPalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_XLATEOBJ_cGetPalette,XLATEOBJ_cGetPalette,1944 diff --git a/libc/nt/gdi32/XLATEOBJ_hGetColorTransform.S b/libc/nt/gdi32/XLATEOBJ_hGetColorTransform.S deleted file mode 100644 index b85e54bd0..000000000 --- a/libc/nt/gdi32/XLATEOBJ_hGetColorTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_XLATEOBJ_hGetColorTransform,XLATEOBJ_hGetColorTransform,1945 diff --git a/libc/nt/gdi32/XLATEOBJ_iXlate.S b/libc/nt/gdi32/XLATEOBJ_iXlate.S deleted file mode 100644 index 99a9527c3..000000000 --- a/libc/nt/gdi32/XLATEOBJ_iXlate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_XLATEOBJ_iXlate,XLATEOBJ_iXlate,1946 diff --git a/libc/nt/gdi32/XLATEOBJ_piVector.S b/libc/nt/gdi32/XLATEOBJ_piVector.S deleted file mode 100644 index d2f1042fe..000000000 --- a/libc/nt/gdi32/XLATEOBJ_piVector.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_XLATEOBJ_piVector,XLATEOBJ_piVector,1947 diff --git a/libc/nt/gdi32/cGetTTFFromFOT.S b/libc/nt/gdi32/cGetTTFFromFOT.S deleted file mode 100644 index 317569b88..000000000 --- a/libc/nt/gdi32/cGetTTFFromFOT.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_cGetTTFFromFOT,cGetTTFFromFOT,1952 diff --git a/libc/nt/gdi32/fpClosePrinter.S b/libc/nt/gdi32/fpClosePrinter.S deleted file mode 100644 index 042c23c0c..000000000 --- a/libc/nt/gdi32/fpClosePrinter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_fpClosePrinter,fpClosePrinter,1953 diff --git a/libc/nt/gdi32/gMaxGdiHandleCount.S b/libc/nt/gdi32/gMaxGdiHandleCount.S deleted file mode 100644 index 8d0dc93d7..000000000 --- a/libc/nt/gdi32/gMaxGdiHandleCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_gMaxGdiHandleCount,gMaxGdiHandleCount,1955 diff --git a/libc/nt/gdi32/gW32PID.S b/libc/nt/gdi32/gW32PID.S deleted file mode 100644 index a4bdb1306..000000000 --- a/libc/nt/gdi32/gW32PID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_gW32PID,gW32PID,1956 diff --git a/libc/nt/gdi32/g_systemCallFilterId.S b/libc/nt/gdi32/g_systemCallFilterId.S deleted file mode 100644 index 839325c83..000000000 --- a/libc/nt/gdi32/g_systemCallFilterId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_g_systemCallFilterId,g_systemCallFilterId,1957 diff --git a/libc/nt/gdi32/gdiPlaySpoolStream.S b/libc/nt/gdi32/gdiPlaySpoolStream.S deleted file mode 100644 index a359b1aff..000000000 --- a/libc/nt/gdi32/gdiPlaySpoolStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp gdi32,__imp_gdiPlaySpoolStream,gdiPlaySpoolStream,1958 diff --git a/libc/nt/iphlpapi/AddIPAddress.S b/libc/nt/iphlpapi/AddIPAddress.S index 4bb85889f..a209b5aca 100644 --- a/libc/nt/iphlpapi/AddIPAddress.S +++ b/libc/nt/iphlpapi/AddIPAddress.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_AddIPAddress,AddIPAddress,0 +.imp iphlpapi,__imp_AddIPAddress,AddIPAddress .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/AllocateAndGetTcpExTableFromStack.S b/libc/nt/iphlpapi/AllocateAndGetTcpExTableFromStack.S index b65582cce..d30b90fd9 100644 --- a/libc/nt/iphlpapi/AllocateAndGetTcpExTableFromStack.S +++ b/libc/nt/iphlpapi/AllocateAndGetTcpExTableFromStack.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_AllocateAndGetTcpExTableFromStack,AllocateAndGetTcpExTableFromStack,0 +.imp iphlpapi,__imp_AllocateAndGetTcpExTableFromStack,AllocateAndGetTcpExTableFromStack .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/AllocateAndGetUdpExTableFromStack.S b/libc/nt/iphlpapi/AllocateAndGetUdpExTableFromStack.S index 3265051c2..1bca2335e 100644 --- a/libc/nt/iphlpapi/AllocateAndGetUdpExTableFromStack.S +++ b/libc/nt/iphlpapi/AllocateAndGetUdpExTableFromStack.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_AllocateAndGetUdpExTableFromStack,AllocateAndGetUdpExTableFromStack,0 +.imp iphlpapi,__imp_AllocateAndGetUdpExTableFromStack,AllocateAndGetUdpExTableFromStack .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/CancelIPChangeNotify.S b/libc/nt/iphlpapi/CancelIPChangeNotify.S index 4d8282fb4..a8c9413cb 100644 --- a/libc/nt/iphlpapi/CancelIPChangeNotify.S +++ b/libc/nt/iphlpapi/CancelIPChangeNotify.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_CancelIPChangeNotify,CancelIPChangeNotify,0 +.imp iphlpapi,__imp_CancelIPChangeNotify,CancelIPChangeNotify .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/CaptureInterfaceHardwareCrossTimestamp.S b/libc/nt/iphlpapi/CaptureInterfaceHardwareCrossTimestamp.S index af8d376b4..32c7902e6 100644 --- a/libc/nt/iphlpapi/CaptureInterfaceHardwareCrossTimestamp.S +++ b/libc/nt/iphlpapi/CaptureInterfaceHardwareCrossTimestamp.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_CaptureInterfaceHardwareCrossTimestamp,CaptureInterfaceHardwareCrossTimestamp,0 +.imp iphlpapi,__imp_CaptureInterfaceHardwareCrossTimestamp,CaptureInterfaceHardwareCrossTimestamp .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/CreateIpForwardEntry.S b/libc/nt/iphlpapi/CreateIpForwardEntry.S index bef247d45..035e35198 100644 --- a/libc/nt/iphlpapi/CreateIpForwardEntry.S +++ b/libc/nt/iphlpapi/CreateIpForwardEntry.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_CreateIpForwardEntry,CreateIpForwardEntry,0 +.imp iphlpapi,__imp_CreateIpForwardEntry,CreateIpForwardEntry .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/CreateIpNetEntry.S b/libc/nt/iphlpapi/CreateIpNetEntry.S deleted file mode 100644 index 3dd65feb3..000000000 --- a/libc/nt/iphlpapi/CreateIpNetEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_CreateIpNetEntry,CreateIpNetEntry,0 diff --git a/libc/nt/iphlpapi/CreatePersistentTcpPortReservation.S b/libc/nt/iphlpapi/CreatePersistentTcpPortReservation.S deleted file mode 100644 index 4daf51598..000000000 --- a/libc/nt/iphlpapi/CreatePersistentTcpPortReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_CreatePersistentTcpPortReservation,CreatePersistentTcpPortReservation,0 diff --git a/libc/nt/iphlpapi/CreatePersistentUdpPortReservation.S b/libc/nt/iphlpapi/CreatePersistentUdpPortReservation.S deleted file mode 100644 index d1fd02ef8..000000000 --- a/libc/nt/iphlpapi/CreatePersistentUdpPortReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_CreatePersistentUdpPortReservation,CreatePersistentUdpPortReservation,0 diff --git a/libc/nt/iphlpapi/CreateProxyArpEntry.S b/libc/nt/iphlpapi/CreateProxyArpEntry.S deleted file mode 100644 index b9370234a..000000000 --- a/libc/nt/iphlpapi/CreateProxyArpEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_CreateProxyArpEntry,CreateProxyArpEntry,0 diff --git a/libc/nt/iphlpapi/DeleteIPAddress.S b/libc/nt/iphlpapi/DeleteIPAddress.S deleted file mode 100644 index 65faadb3a..000000000 --- a/libc/nt/iphlpapi/DeleteIPAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_DeleteIPAddress,DeleteIPAddress,0 diff --git a/libc/nt/iphlpapi/DeleteIpForwardEntry.S b/libc/nt/iphlpapi/DeleteIpForwardEntry.S deleted file mode 100644 index 3c94aee47..000000000 --- a/libc/nt/iphlpapi/DeleteIpForwardEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_DeleteIpForwardEntry,DeleteIpForwardEntry,0 diff --git a/libc/nt/iphlpapi/DeleteIpNetEntry.S b/libc/nt/iphlpapi/DeleteIpNetEntry.S deleted file mode 100644 index e50b1a509..000000000 --- a/libc/nt/iphlpapi/DeleteIpNetEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_DeleteIpNetEntry,DeleteIpNetEntry,0 diff --git a/libc/nt/iphlpapi/DeletePersistentTcpPortReservation.S b/libc/nt/iphlpapi/DeletePersistentTcpPortReservation.S deleted file mode 100644 index 5d4d7399a..000000000 --- a/libc/nt/iphlpapi/DeletePersistentTcpPortReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_DeletePersistentTcpPortReservation,DeletePersistentTcpPortReservation,0 diff --git a/libc/nt/iphlpapi/DeletePersistentUdpPortReservation.S b/libc/nt/iphlpapi/DeletePersistentUdpPortReservation.S deleted file mode 100644 index cc5d4b7ff..000000000 --- a/libc/nt/iphlpapi/DeletePersistentUdpPortReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_DeletePersistentUdpPortReservation,DeletePersistentUdpPortReservation,0 diff --git a/libc/nt/iphlpapi/DeleteProxyArpEntry.S b/libc/nt/iphlpapi/DeleteProxyArpEntry.S deleted file mode 100644 index 478c18ed2..000000000 --- a/libc/nt/iphlpapi/DeleteProxyArpEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_DeleteProxyArpEntry,DeleteProxyArpEntry,0 diff --git a/libc/nt/iphlpapi/DisableMediaSense.S b/libc/nt/iphlpapi/DisableMediaSense.S deleted file mode 100644 index 8f5c641cf..000000000 --- a/libc/nt/iphlpapi/DisableMediaSense.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_DisableMediaSense,DisableMediaSense,0 diff --git a/libc/nt/iphlpapi/EnableRouter.S b/libc/nt/iphlpapi/EnableRouter.S deleted file mode 100644 index 7ca776616..000000000 --- a/libc/nt/iphlpapi/EnableRouter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_EnableRouter,EnableRouter,0 diff --git a/libc/nt/iphlpapi/FlushIpNetTable.S b/libc/nt/iphlpapi/FlushIpNetTable.S index d24f7e64c..9c5d85a7f 100644 --- a/libc/nt/iphlpapi/FlushIpNetTable.S +++ b/libc/nt/iphlpapi/FlushIpNetTable.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_FlushIpNetTable,FlushIpNetTable,0 +.imp iphlpapi,__imp_FlushIpNetTable,FlushIpNetTable .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetAdapterIndex.S b/libc/nt/iphlpapi/GetAdapterIndex.S index 5d1225d6b..82a332225 100644 --- a/libc/nt/iphlpapi/GetAdapterIndex.S +++ b/libc/nt/iphlpapi/GetAdapterIndex.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetAdapterIndex,GetAdapterIndex,0 +.imp iphlpapi,__imp_GetAdapterIndex,GetAdapterIndex .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetAdapterOrderMap.S b/libc/nt/iphlpapi/GetAdapterOrderMap.S index 23df4fe5c..afb1397de 100644 --- a/libc/nt/iphlpapi/GetAdapterOrderMap.S +++ b/libc/nt/iphlpapi/GetAdapterOrderMap.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetAdapterOrderMap,GetAdapterOrderMap,0 +.imp iphlpapi,__imp_GetAdapterOrderMap,GetAdapterOrderMap .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetAdaptersAddresses.S b/libc/nt/iphlpapi/GetAdaptersAddresses.S index 94d52f2f9..ad6f07db8 100644 --- a/libc/nt/iphlpapi/GetAdaptersAddresses.S +++ b/libc/nt/iphlpapi/GetAdaptersAddresses.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetAdaptersAddresses,GetAdaptersAddresses,67 +.imp iphlpapi,__imp_GetAdaptersAddresses,GetAdaptersAddresses .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetAdaptersInfo.S b/libc/nt/iphlpapi/GetAdaptersInfo.S index eff3fd425..fcb78d164 100644 --- a/libc/nt/iphlpapi/GetAdaptersInfo.S +++ b/libc/nt/iphlpapi/GetAdaptersInfo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetAdaptersInfo,GetAdaptersInfo,0 +.imp iphlpapi,__imp_GetAdaptersInfo,GetAdaptersInfo .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetBestInterface.S b/libc/nt/iphlpapi/GetBestInterface.S index 2469bcede..be6c4c0f6 100644 --- a/libc/nt/iphlpapi/GetBestInterface.S +++ b/libc/nt/iphlpapi/GetBestInterface.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetBestInterface,GetBestInterface,0 +.imp iphlpapi,__imp_GetBestInterface,GetBestInterface .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetBestInterfaceEx.S b/libc/nt/iphlpapi/GetBestInterfaceEx.S index 91a25ab74..79143b113 100644 --- a/libc/nt/iphlpapi/GetBestInterfaceEx.S +++ b/libc/nt/iphlpapi/GetBestInterfaceEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetBestInterfaceEx,GetBestInterfaceEx,0 +.imp iphlpapi,__imp_GetBestInterfaceEx,GetBestInterfaceEx .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetBestRoute.S b/libc/nt/iphlpapi/GetBestRoute.S index 7768347af..4bfccc2ef 100644 --- a/libc/nt/iphlpapi/GetBestRoute.S +++ b/libc/nt/iphlpapi/GetBestRoute.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetBestRoute,GetBestRoute,0 +.imp iphlpapi,__imp_GetBestRoute,GetBestRoute .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetExtendedTcpTable.S b/libc/nt/iphlpapi/GetExtendedTcpTable.S deleted file mode 100644 index 695008843..000000000 --- a/libc/nt/iphlpapi/GetExtendedTcpTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetExtendedTcpTable,GetExtendedTcpTable,0 diff --git a/libc/nt/iphlpapi/GetExtendedUdpTable.S b/libc/nt/iphlpapi/GetExtendedUdpTable.S deleted file mode 100644 index 3cd47213a..000000000 --- a/libc/nt/iphlpapi/GetExtendedUdpTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetExtendedUdpTable,GetExtendedUdpTable,0 diff --git a/libc/nt/iphlpapi/GetFriendlyIfIndex.S b/libc/nt/iphlpapi/GetFriendlyIfIndex.S deleted file mode 100644 index 82facfedf..000000000 --- a/libc/nt/iphlpapi/GetFriendlyIfIndex.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetFriendlyIfIndex,GetFriendlyIfIndex,0 diff --git a/libc/nt/iphlpapi/GetIcmpStatistics.S b/libc/nt/iphlpapi/GetIcmpStatistics.S deleted file mode 100644 index e610a7917..000000000 --- a/libc/nt/iphlpapi/GetIcmpStatistics.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIcmpStatistics,GetIcmpStatistics,0 diff --git a/libc/nt/iphlpapi/GetIcmpStatisticsEx.S b/libc/nt/iphlpapi/GetIcmpStatisticsEx.S deleted file mode 100644 index 59e57b2fb..000000000 --- a/libc/nt/iphlpapi/GetIcmpStatisticsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIcmpStatisticsEx,GetIcmpStatisticsEx,0 diff --git a/libc/nt/iphlpapi/GetIfEntry.S b/libc/nt/iphlpapi/GetIfEntry.S deleted file mode 100644 index 92ffb30c4..000000000 --- a/libc/nt/iphlpapi/GetIfEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIfEntry,GetIfEntry,0 diff --git a/libc/nt/iphlpapi/GetIfTable.S b/libc/nt/iphlpapi/GetIfTable.S deleted file mode 100644 index 7b8c71565..000000000 --- a/libc/nt/iphlpapi/GetIfTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIfTable,GetIfTable,0 diff --git a/libc/nt/iphlpapi/GetInterfaceActiveTimestampCapabilities.S b/libc/nt/iphlpapi/GetInterfaceActiveTimestampCapabilities.S deleted file mode 100644 index e9f11f566..000000000 --- a/libc/nt/iphlpapi/GetInterfaceActiveTimestampCapabilities.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetInterfaceActiveTimestampCapabilities,GetInterfaceActiveTimestampCapabilities,0 diff --git a/libc/nt/iphlpapi/GetInterfaceInfo.S b/libc/nt/iphlpapi/GetInterfaceInfo.S deleted file mode 100644 index 89c95e092..000000000 --- a/libc/nt/iphlpapi/GetInterfaceInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetInterfaceInfo,GetInterfaceInfo,0 diff --git a/libc/nt/iphlpapi/GetInterfaceSupportedTimestampCapabilities.S b/libc/nt/iphlpapi/GetInterfaceSupportedTimestampCapabilities.S deleted file mode 100644 index 971cabf8f..000000000 --- a/libc/nt/iphlpapi/GetInterfaceSupportedTimestampCapabilities.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetInterfaceSupportedTimestampCapabilities,GetInterfaceSupportedTimestampCapabilities,0 diff --git a/libc/nt/iphlpapi/GetIpAddrTable.S b/libc/nt/iphlpapi/GetIpAddrTable.S deleted file mode 100644 index e39afa2b0..000000000 --- a/libc/nt/iphlpapi/GetIpAddrTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIpAddrTable,GetIpAddrTable,0 diff --git a/libc/nt/iphlpapi/GetIpErrorString.S b/libc/nt/iphlpapi/GetIpErrorString.S deleted file mode 100644 index 1ba140658..000000000 --- a/libc/nt/iphlpapi/GetIpErrorString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIpErrorString,GetIpErrorString,0 diff --git a/libc/nt/iphlpapi/GetIpForwardTable.S b/libc/nt/iphlpapi/GetIpForwardTable.S deleted file mode 100644 index c79f41d52..000000000 --- a/libc/nt/iphlpapi/GetIpForwardTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIpForwardTable,GetIpForwardTable,0 diff --git a/libc/nt/iphlpapi/GetIpNetTable.S b/libc/nt/iphlpapi/GetIpNetTable.S deleted file mode 100644 index 0ddc3599e..000000000 --- a/libc/nt/iphlpapi/GetIpNetTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIpNetTable,GetIpNetTable,0 diff --git a/libc/nt/iphlpapi/GetIpStatistics.S b/libc/nt/iphlpapi/GetIpStatistics.S deleted file mode 100644 index cc1509235..000000000 --- a/libc/nt/iphlpapi/GetIpStatistics.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIpStatistics,GetIpStatistics,0 diff --git a/libc/nt/iphlpapi/GetIpStatisticsEx.S b/libc/nt/iphlpapi/GetIpStatisticsEx.S deleted file mode 100644 index 31ef1d646..000000000 --- a/libc/nt/iphlpapi/GetIpStatisticsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetIpStatisticsEx,GetIpStatisticsEx,0 diff --git a/libc/nt/iphlpapi/GetNetworkParams.S b/libc/nt/iphlpapi/GetNetworkParams.S deleted file mode 100644 index 2f355f7ee..000000000 --- a/libc/nt/iphlpapi/GetNetworkParams.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetNetworkParams,GetNetworkParams,0 diff --git a/libc/nt/iphlpapi/GetNumberOfInterfaces.S b/libc/nt/iphlpapi/GetNumberOfInterfaces.S index d03c34217..8a47ce528 100644 --- a/libc/nt/iphlpapi/GetNumberOfInterfaces.S +++ b/libc/nt/iphlpapi/GetNumberOfInterfaces.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetNumberOfInterfaces,GetNumberOfInterfaces,0 +.imp iphlpapi,__imp_GetNumberOfInterfaces,GetNumberOfInterfaces .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetOwnerModuleFromTcp6Entry.S b/libc/nt/iphlpapi/GetOwnerModuleFromTcp6Entry.S deleted file mode 100644 index 6be4c7b3b..000000000 --- a/libc/nt/iphlpapi/GetOwnerModuleFromTcp6Entry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetOwnerModuleFromTcp6Entry,GetOwnerModuleFromTcp6Entry,0 diff --git a/libc/nt/iphlpapi/GetOwnerModuleFromTcpEntry.S b/libc/nt/iphlpapi/GetOwnerModuleFromTcpEntry.S deleted file mode 100644 index 8f4f19cfe..000000000 --- a/libc/nt/iphlpapi/GetOwnerModuleFromTcpEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetOwnerModuleFromTcpEntry,GetOwnerModuleFromTcpEntry,0 diff --git a/libc/nt/iphlpapi/GetOwnerModuleFromUdp6Entry.S b/libc/nt/iphlpapi/GetOwnerModuleFromUdp6Entry.S deleted file mode 100644 index 31a9ba291..000000000 --- a/libc/nt/iphlpapi/GetOwnerModuleFromUdp6Entry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetOwnerModuleFromUdp6Entry,GetOwnerModuleFromUdp6Entry,0 diff --git a/libc/nt/iphlpapi/GetOwnerModuleFromUdpEntry.S b/libc/nt/iphlpapi/GetOwnerModuleFromUdpEntry.S deleted file mode 100644 index 2e2f3c790..000000000 --- a/libc/nt/iphlpapi/GetOwnerModuleFromUdpEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetOwnerModuleFromUdpEntry,GetOwnerModuleFromUdpEntry,0 diff --git a/libc/nt/iphlpapi/GetPerAdapterInfo.S b/libc/nt/iphlpapi/GetPerAdapterInfo.S deleted file mode 100644 index 0c4c0dd9d..000000000 --- a/libc/nt/iphlpapi/GetPerAdapterInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetPerAdapterInfo,GetPerAdapterInfo,0 diff --git a/libc/nt/iphlpapi/GetPerTcp6ConnectionEStats.S b/libc/nt/iphlpapi/GetPerTcp6ConnectionEStats.S deleted file mode 100644 index a7fb025e2..000000000 --- a/libc/nt/iphlpapi/GetPerTcp6ConnectionEStats.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetPerTcp6ConnectionEStats,GetPerTcp6ConnectionEStats,0 diff --git a/libc/nt/iphlpapi/GetPerTcpConnectionEStats.S b/libc/nt/iphlpapi/GetPerTcpConnectionEStats.S deleted file mode 100644 index 8da26f425..000000000 --- a/libc/nt/iphlpapi/GetPerTcpConnectionEStats.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetPerTcpConnectionEStats,GetPerTcpConnectionEStats,0 diff --git a/libc/nt/iphlpapi/GetRTTAndHopCount.S b/libc/nt/iphlpapi/GetRTTAndHopCount.S deleted file mode 100644 index a2ea524d5..000000000 --- a/libc/nt/iphlpapi/GetRTTAndHopCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetRTTAndHopCount,GetRTTAndHopCount,0 diff --git a/libc/nt/iphlpapi/GetTcp6Table.S b/libc/nt/iphlpapi/GetTcp6Table.S deleted file mode 100644 index 030dc9aec..000000000 --- a/libc/nt/iphlpapi/GetTcp6Table.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetTcp6Table,GetTcp6Table,0 diff --git a/libc/nt/iphlpapi/GetTcp6Table2.S b/libc/nt/iphlpapi/GetTcp6Table2.S deleted file mode 100644 index 1cec84b96..000000000 --- a/libc/nt/iphlpapi/GetTcp6Table2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetTcp6Table2,GetTcp6Table2,0 diff --git a/libc/nt/iphlpapi/GetTcpStatistics.S b/libc/nt/iphlpapi/GetTcpStatistics.S deleted file mode 100644 index 293db93d7..000000000 --- a/libc/nt/iphlpapi/GetTcpStatistics.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetTcpStatistics,GetTcpStatistics,0 diff --git a/libc/nt/iphlpapi/GetTcpStatisticsEx.S b/libc/nt/iphlpapi/GetTcpStatisticsEx.S deleted file mode 100644 index 12633992a..000000000 --- a/libc/nt/iphlpapi/GetTcpStatisticsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetTcpStatisticsEx,GetTcpStatisticsEx,0 diff --git a/libc/nt/iphlpapi/GetTcpStatisticsEx2.S b/libc/nt/iphlpapi/GetTcpStatisticsEx2.S deleted file mode 100644 index 507de1dc9..000000000 --- a/libc/nt/iphlpapi/GetTcpStatisticsEx2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetTcpStatisticsEx2,GetTcpStatisticsEx2,0 diff --git a/libc/nt/iphlpapi/GetTcpTable.S b/libc/nt/iphlpapi/GetTcpTable.S index 1dcf67aeb..0e1960eb4 100644 --- a/libc/nt/iphlpapi/GetTcpTable.S +++ b/libc/nt/iphlpapi/GetTcpTable.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetTcpTable,GetTcpTable,0 +.imp iphlpapi,__imp_GetTcpTable,GetTcpTable .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetTcpTable2.S b/libc/nt/iphlpapi/GetTcpTable2.S index 0d96ab200..afe1aaa74 100644 --- a/libc/nt/iphlpapi/GetTcpTable2.S +++ b/libc/nt/iphlpapi/GetTcpTable2.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetTcpTable2,GetTcpTable2,0 +.imp iphlpapi,__imp_GetTcpTable2,GetTcpTable2 .text.windows .ftrace1 diff --git a/libc/nt/iphlpapi/GetUdp6Table.S b/libc/nt/iphlpapi/GetUdp6Table.S deleted file mode 100644 index 409256110..000000000 --- a/libc/nt/iphlpapi/GetUdp6Table.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetUdp6Table,GetUdp6Table,0 diff --git a/libc/nt/iphlpapi/GetUdpStatistics.S b/libc/nt/iphlpapi/GetUdpStatistics.S deleted file mode 100644 index 587d3a429..000000000 --- a/libc/nt/iphlpapi/GetUdpStatistics.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetUdpStatistics,GetUdpStatistics,0 diff --git a/libc/nt/iphlpapi/GetUdpStatisticsEx.S b/libc/nt/iphlpapi/GetUdpStatisticsEx.S deleted file mode 100644 index 339b3aa9b..000000000 --- a/libc/nt/iphlpapi/GetUdpStatisticsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetUdpStatisticsEx,GetUdpStatisticsEx,0 diff --git a/libc/nt/iphlpapi/GetUdpStatisticsEx2.S b/libc/nt/iphlpapi/GetUdpStatisticsEx2.S deleted file mode 100644 index 5ecbca122..000000000 --- a/libc/nt/iphlpapi/GetUdpStatisticsEx2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetUdpStatisticsEx2,GetUdpStatisticsEx2,0 diff --git a/libc/nt/iphlpapi/GetUdpTable.S b/libc/nt/iphlpapi/GetUdpTable.S deleted file mode 100644 index 4df7943fc..000000000 --- a/libc/nt/iphlpapi/GetUdpTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetUdpTable,GetUdpTable,0 diff --git a/libc/nt/iphlpapi/GetUniDirectionalAdapterInfo.S b/libc/nt/iphlpapi/GetUniDirectionalAdapterInfo.S deleted file mode 100644 index 3ebfd65fa..000000000 --- a/libc/nt/iphlpapi/GetUniDirectionalAdapterInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_GetUniDirectionalAdapterInfo,GetUniDirectionalAdapterInfo,0 diff --git a/libc/nt/iphlpapi/IpReleaseAddress.S b/libc/nt/iphlpapi/IpReleaseAddress.S deleted file mode 100644 index dbac5d216..000000000 --- a/libc/nt/iphlpapi/IpReleaseAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_IpReleaseAddress,IpReleaseAddress,0 diff --git a/libc/nt/iphlpapi/IpRenewAddress.S b/libc/nt/iphlpapi/IpRenewAddress.S deleted file mode 100644 index 37df1ac8a..000000000 --- a/libc/nt/iphlpapi/IpRenewAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_IpRenewAddress,IpRenewAddress,0 diff --git a/libc/nt/iphlpapi/LookupPersistentTcpPortReservation.S b/libc/nt/iphlpapi/LookupPersistentTcpPortReservation.S deleted file mode 100644 index a459e2b4c..000000000 --- a/libc/nt/iphlpapi/LookupPersistentTcpPortReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_LookupPersistentTcpPortReservation,LookupPersistentTcpPortReservation,0 diff --git a/libc/nt/iphlpapi/LookupPersistentUdpPortReservation.S b/libc/nt/iphlpapi/LookupPersistentUdpPortReservation.S deleted file mode 100644 index 50011cb7b..000000000 --- a/libc/nt/iphlpapi/LookupPersistentUdpPortReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_LookupPersistentUdpPortReservation,LookupPersistentUdpPortReservation,0 diff --git a/libc/nt/iphlpapi/NhpAllocateAndGetInterfaceInfoFromStack.S b/libc/nt/iphlpapi/NhpAllocateAndGetInterfaceInfoFromStack.S deleted file mode 100644 index 590167568..000000000 --- a/libc/nt/iphlpapi/NhpAllocateAndGetInterfaceInfoFromStack.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_NhpAllocateAndGetInterfaceInfoFromStack,NhpAllocateAndGetInterfaceInfoFromStack,0 diff --git a/libc/nt/iphlpapi/NotifyAddrChange.S b/libc/nt/iphlpapi/NotifyAddrChange.S deleted file mode 100644 index e5e642cc9..000000000 --- a/libc/nt/iphlpapi/NotifyAddrChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_NotifyAddrChange,NotifyAddrChange,0 diff --git a/libc/nt/iphlpapi/NotifyRouteChange.S b/libc/nt/iphlpapi/NotifyRouteChange.S deleted file mode 100644 index c12e938c2..000000000 --- a/libc/nt/iphlpapi/NotifyRouteChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_NotifyRouteChange,NotifyRouteChange,0 diff --git a/libc/nt/iphlpapi/ParseNetworkString.S b/libc/nt/iphlpapi/ParseNetworkString.S deleted file mode 100644 index 99466356a..000000000 --- a/libc/nt/iphlpapi/ParseNetworkString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_ParseNetworkString,ParseNetworkString,0 diff --git a/libc/nt/iphlpapi/RegisterInterfaceTimestampConfigChange.S b/libc/nt/iphlpapi/RegisterInterfaceTimestampConfigChange.S deleted file mode 100644 index 9fb986f9d..000000000 --- a/libc/nt/iphlpapi/RegisterInterfaceTimestampConfigChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_RegisterInterfaceTimestampConfigChange,RegisterInterfaceTimestampConfigChange,0 diff --git a/libc/nt/iphlpapi/ResolveNeighbor.S b/libc/nt/iphlpapi/ResolveNeighbor.S deleted file mode 100644 index 210dc0ab3..000000000 --- a/libc/nt/iphlpapi/ResolveNeighbor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_ResolveNeighbor,ResolveNeighbor,0 diff --git a/libc/nt/iphlpapi/RestoreMediaSense.S b/libc/nt/iphlpapi/RestoreMediaSense.S deleted file mode 100644 index 879ccb583..000000000 --- a/libc/nt/iphlpapi/RestoreMediaSense.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_RestoreMediaSense,RestoreMediaSense,0 diff --git a/libc/nt/iphlpapi/SendARP.S b/libc/nt/iphlpapi/SendARP.S deleted file mode 100644 index 46b73074a..000000000 --- a/libc/nt/iphlpapi/SendARP.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SendARP,SendARP,0 diff --git a/libc/nt/iphlpapi/SetIfEntry.S b/libc/nt/iphlpapi/SetIfEntry.S deleted file mode 100644 index fb4d302c4..000000000 --- a/libc/nt/iphlpapi/SetIfEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetIfEntry,SetIfEntry,0 diff --git a/libc/nt/iphlpapi/SetIpForwardEntry.S b/libc/nt/iphlpapi/SetIpForwardEntry.S deleted file mode 100644 index d6c90eac2..000000000 --- a/libc/nt/iphlpapi/SetIpForwardEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetIpForwardEntry,SetIpForwardEntry,0 diff --git a/libc/nt/iphlpapi/SetIpNetEntry.S b/libc/nt/iphlpapi/SetIpNetEntry.S deleted file mode 100644 index c97907a56..000000000 --- a/libc/nt/iphlpapi/SetIpNetEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetIpNetEntry,SetIpNetEntry,0 diff --git a/libc/nt/iphlpapi/SetIpStatistics.S b/libc/nt/iphlpapi/SetIpStatistics.S deleted file mode 100644 index d1ba6d1c4..000000000 --- a/libc/nt/iphlpapi/SetIpStatistics.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetIpStatistics,SetIpStatistics,0 diff --git a/libc/nt/iphlpapi/SetIpStatisticsEx.S b/libc/nt/iphlpapi/SetIpStatisticsEx.S deleted file mode 100644 index cf3e493ff..000000000 --- a/libc/nt/iphlpapi/SetIpStatisticsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetIpStatisticsEx,SetIpStatisticsEx,0 diff --git a/libc/nt/iphlpapi/SetIpTTL.S b/libc/nt/iphlpapi/SetIpTTL.S deleted file mode 100644 index 321ae756c..000000000 --- a/libc/nt/iphlpapi/SetIpTTL.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetIpTTL,SetIpTTL,0 diff --git a/libc/nt/iphlpapi/SetPerTcp6ConnectionEStats.S b/libc/nt/iphlpapi/SetPerTcp6ConnectionEStats.S deleted file mode 100644 index 0baa3ce85..000000000 --- a/libc/nt/iphlpapi/SetPerTcp6ConnectionEStats.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetPerTcp6ConnectionEStats,SetPerTcp6ConnectionEStats,0 diff --git a/libc/nt/iphlpapi/SetPerTcpConnectionEStats.S b/libc/nt/iphlpapi/SetPerTcpConnectionEStats.S deleted file mode 100644 index 58a51c69e..000000000 --- a/libc/nt/iphlpapi/SetPerTcpConnectionEStats.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetPerTcpConnectionEStats,SetPerTcpConnectionEStats,0 diff --git a/libc/nt/iphlpapi/SetTcpEntry.S b/libc/nt/iphlpapi/SetTcpEntry.S deleted file mode 100644 index 8f13514c3..000000000 --- a/libc/nt/iphlpapi/SetTcpEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_SetTcpEntry,SetTcpEntry,0 diff --git a/libc/nt/iphlpapi/UnenableRouter.S b/libc/nt/iphlpapi/UnenableRouter.S deleted file mode 100644 index ca778ffb5..000000000 --- a/libc/nt/iphlpapi/UnenableRouter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_UnenableRouter,UnenableRouter,0 diff --git a/libc/nt/iphlpapi/UnregisterInterfaceTimestampConfigChange.S b/libc/nt/iphlpapi/UnregisterInterfaceTimestampConfigChange.S deleted file mode 100644 index aa1c4de30..000000000 --- a/libc/nt/iphlpapi/UnregisterInterfaceTimestampConfigChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp iphlpapi,__imp_UnregisterInterfaceTimestampConfigChange,UnregisterInterfaceTimestampConfigChange,0 diff --git a/libc/nt/kernel32/AcquireSRWLockExclusive.S b/libc/nt/kernel32/AcquireSRWLockExclusive.S index 16eae6688..9aee77c35 100644 --- a/libc/nt/kernel32/AcquireSRWLockExclusive.S +++ b/libc/nt/kernel32/AcquireSRWLockExclusive.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_AcquireSRWLockExclusive,AcquireSRWLockExclusive,0 +.imp kernel32,__imp_AcquireSRWLockExclusive,AcquireSRWLockExclusive .text.windows .ftrace1 diff --git a/libc/nt/kernel32/AcquireSRWLockShared.S b/libc/nt/kernel32/AcquireSRWLockShared.S index 8f3359bde..77aca4beb 100644 --- a/libc/nt/kernel32/AcquireSRWLockShared.S +++ b/libc/nt/kernel32/AcquireSRWLockShared.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_AcquireSRWLockShared,AcquireSRWLockShared,0 +.imp kernel32,__imp_AcquireSRWLockShared,AcquireSRWLockShared .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ActivateActCtx.S b/libc/nt/kernel32/ActivateActCtx.S deleted file mode 100644 index 15f852177..000000000 --- a/libc/nt/kernel32/ActivateActCtx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ActivateActCtx,ActivateActCtx,0 diff --git a/libc/nt/kernel32/ActivateActCtxWorker.S b/libc/nt/kernel32/ActivateActCtxWorker.S deleted file mode 100644 index f70f5d0a5..000000000 --- a/libc/nt/kernel32/ActivateActCtxWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ActivateActCtxWorker,ActivateActCtxWorker,4 diff --git a/libc/nt/kernel32/AddAtomW.S b/libc/nt/kernel32/AddAtomW.S deleted file mode 100644 index 461181c61..000000000 --- a/libc/nt/kernel32/AddAtomW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddAtomW,AddAtomW,6 diff --git a/libc/nt/kernel32/AddConsoleAliasW.S b/libc/nt/kernel32/AddConsoleAliasW.S deleted file mode 100644 index 01c7564ce..000000000 --- a/libc/nt/kernel32/AddConsoleAliasW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddConsoleAliasW,AddConsoleAliasW,0 diff --git a/libc/nt/kernel32/AddDllDirectory.S b/libc/nt/kernel32/AddDllDirectory.S deleted file mode 100644 index 157c0190f..000000000 --- a/libc/nt/kernel32/AddDllDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddDllDirectory,AddDllDirectory,0 diff --git a/libc/nt/kernel32/AddIntegrityLabelToBoundaryDescriptor.S b/libc/nt/kernel32/AddIntegrityLabelToBoundaryDescriptor.S deleted file mode 100644 index 83b064a6d..000000000 --- a/libc/nt/kernel32/AddIntegrityLabelToBoundaryDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddIntegrityLabelToBoundaryDescriptor,AddIntegrityLabelToBoundaryDescriptor,10 diff --git a/libc/nt/kernel32/AddLocalAlternateComputerNameW.S b/libc/nt/kernel32/AddLocalAlternateComputerNameW.S deleted file mode 100644 index 56f601841..000000000 --- a/libc/nt/kernel32/AddLocalAlternateComputerNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddLocalAlternateComputerNameW,AddLocalAlternateComputerNameW,12 diff --git a/libc/nt/kernel32/AddRefActCtx.S b/libc/nt/kernel32/AddRefActCtx.S deleted file mode 100644 index 192358408..000000000 --- a/libc/nt/kernel32/AddRefActCtx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddRefActCtx,AddRefActCtx,0 diff --git a/libc/nt/kernel32/AddRefActCtxWorker.S b/libc/nt/kernel32/AddRefActCtxWorker.S deleted file mode 100644 index 793c8369f..000000000 --- a/libc/nt/kernel32/AddRefActCtxWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddRefActCtxWorker,AddRefActCtxWorker,14 diff --git a/libc/nt/kernel32/AddResourceAttributeAce.S b/libc/nt/kernel32/AddResourceAttributeAce.S deleted file mode 100644 index dd6a4afdd..000000000 --- a/libc/nt/kernel32/AddResourceAttributeAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddResourceAttributeAce,AddResourceAttributeAce,0 diff --git a/libc/nt/kernel32/AddSIDToBoundaryDescriptor.S b/libc/nt/kernel32/AddSIDToBoundaryDescriptor.S deleted file mode 100644 index 0e3aa3cef..000000000 --- a/libc/nt/kernel32/AddSIDToBoundaryDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddSIDToBoundaryDescriptor,AddSIDToBoundaryDescriptor,0 diff --git a/libc/nt/kernel32/AddScopedPolicyIDAce.S b/libc/nt/kernel32/AddScopedPolicyIDAce.S deleted file mode 100644 index 51d773d23..000000000 --- a/libc/nt/kernel32/AddScopedPolicyIDAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddScopedPolicyIDAce,AddScopedPolicyIDAce,0 diff --git a/libc/nt/kernel32/AddSecureMemoryCacheCallback.S b/libc/nt/kernel32/AddSecureMemoryCacheCallback.S deleted file mode 100644 index 0609623e4..000000000 --- a/libc/nt/kernel32/AddSecureMemoryCacheCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AddSecureMemoryCacheCallback,AddSecureMemoryCacheCallback,18 diff --git a/libc/nt/kernel32/AddVectoredContinueHandler.S b/libc/nt/kernel32/AddVectoredContinueHandler.S index 0f7fdb043..123967910 100644 --- a/libc/nt/kernel32/AddVectoredContinueHandler.S +++ b/libc/nt/kernel32/AddVectoredContinueHandler.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_AddVectoredContinueHandler,AddVectoredContinueHandler,0 +.imp kernel32,__imp_AddVectoredContinueHandler,AddVectoredContinueHandler .text.windows .ftrace1 diff --git a/libc/nt/kernel32/AddVectoredExceptionHandler.S b/libc/nt/kernel32/AddVectoredExceptionHandler.S index 0bbdc6fc0..20829c62d 100644 --- a/libc/nt/kernel32/AddVectoredExceptionHandler.S +++ b/libc/nt/kernel32/AddVectoredExceptionHandler.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_AddVectoredExceptionHandler,AddVectoredExceptionHandler,0 +.imp kernel32,__imp_AddVectoredExceptionHandler,AddVectoredExceptionHandler .text.windows .ftrace1 diff --git a/libc/nt/kernel32/AdjustCalendarDate.S b/libc/nt/kernel32/AdjustCalendarDate.S deleted file mode 100644 index bf0533575..000000000 --- a/libc/nt/kernel32/AdjustCalendarDate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AdjustCalendarDate,AdjustCalendarDate,21 diff --git a/libc/nt/kernel32/AllocConsole.S b/libc/nt/kernel32/AllocConsole.S index 273df5027..4c9c8e918 100644 --- a/libc/nt/kernel32/AllocConsole.S +++ b/libc/nt/kernel32/AllocConsole.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_AllocConsole,AllocConsole,0 +.imp kernel32,__imp_AllocConsole,AllocConsole .text.windows .ftrace1 diff --git a/libc/nt/kernel32/AllocateUserPhysicalPages.S b/libc/nt/kernel32/AllocateUserPhysicalPages.S deleted file mode 100644 index c8f7786d1..000000000 --- a/libc/nt/kernel32/AllocateUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AllocateUserPhysicalPages,AllocateUserPhysicalPages,0 diff --git a/libc/nt/kernel32/AllocateUserPhysicalPagesNuma.S b/libc/nt/kernel32/AllocateUserPhysicalPagesNuma.S deleted file mode 100644 index 85681a2e7..000000000 --- a/libc/nt/kernel32/AllocateUserPhysicalPagesNuma.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AllocateUserPhysicalPagesNuma,AllocateUserPhysicalPagesNuma,0 diff --git a/libc/nt/kernel32/ApplicationRecoveryFinished.S b/libc/nt/kernel32/ApplicationRecoveryFinished.S deleted file mode 100644 index 444555d8d..000000000 --- a/libc/nt/kernel32/ApplicationRecoveryFinished.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ApplicationRecoveryFinished,ApplicationRecoveryFinished,34 diff --git a/libc/nt/kernel32/ApplicationRecoveryInProgress.S b/libc/nt/kernel32/ApplicationRecoveryInProgress.S deleted file mode 100644 index bedfee8e5..000000000 --- a/libc/nt/kernel32/ApplicationRecoveryInProgress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ApplicationRecoveryInProgress,ApplicationRecoveryInProgress,35 diff --git a/libc/nt/kernel32/AreFileApisANSI.S b/libc/nt/kernel32/AreFileApisANSI.S deleted file mode 100644 index bdd7e7043..000000000 --- a/libc/nt/kernel32/AreFileApisANSI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AreFileApisANSI,AreFileApisANSI,0 diff --git a/libc/nt/kernel32/AssignProcessToJobObject.S b/libc/nt/kernel32/AssignProcessToJobObject.S deleted file mode 100644 index 015f839b1..000000000 --- a/libc/nt/kernel32/AssignProcessToJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_AssignProcessToJobObject,AssignProcessToJobObject,37 diff --git a/libc/nt/kernel32/AttachConsole.S b/libc/nt/kernel32/AttachConsole.S index 273023b19..f98ce7a15 100644 --- a/libc/nt/kernel32/AttachConsole.S +++ b/libc/nt/kernel32/AttachConsole.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_AttachConsole,AttachConsole,0 +.imp kernel32,__imp_AttachConsole,AttachConsole .text.windows .ftrace1 diff --git a/libc/nt/kernel32/BackupRead.S b/libc/nt/kernel32/BackupRead.S deleted file mode 100644 index cc2362d78..000000000 --- a/libc/nt/kernel32/BackupRead.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BackupRead,BackupRead,39 diff --git a/libc/nt/kernel32/BackupSeek.S b/libc/nt/kernel32/BackupSeek.S deleted file mode 100644 index 4e50c2103..000000000 --- a/libc/nt/kernel32/BackupSeek.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BackupSeek,BackupSeek,40 diff --git a/libc/nt/kernel32/BackupWrite.S b/libc/nt/kernel32/BackupWrite.S deleted file mode 100644 index 273e57f9e..000000000 --- a/libc/nt/kernel32/BackupWrite.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BackupWrite,BackupWrite,41 diff --git a/libc/nt/kernel32/BaseCheckAppcompatCacheExWorker.S b/libc/nt/kernel32/BaseCheckAppcompatCacheExWorker.S deleted file mode 100644 index 837be64cf..000000000 --- a/libc/nt/kernel32/BaseCheckAppcompatCacheExWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseCheckAppcompatCacheExWorker,BaseCheckAppcompatCacheExWorker,44 diff --git a/libc/nt/kernel32/BaseCheckAppcompatCacheWorker.S b/libc/nt/kernel32/BaseCheckAppcompatCacheWorker.S deleted file mode 100644 index 3504c58d6..000000000 --- a/libc/nt/kernel32/BaseCheckAppcompatCacheWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseCheckAppcompatCacheWorker,BaseCheckAppcompatCacheWorker,45 diff --git a/libc/nt/kernel32/BaseCheckElevation.S b/libc/nt/kernel32/BaseCheckElevation.S deleted file mode 100644 index e06cf3fb9..000000000 --- a/libc/nt/kernel32/BaseCheckElevation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseCheckElevation,BaseCheckElevation,46 diff --git a/libc/nt/kernel32/BaseCleanupAppcompatCacheSupportWorker.S b/libc/nt/kernel32/BaseCleanupAppcompatCacheSupportWorker.S deleted file mode 100644 index d1f596d1d..000000000 --- a/libc/nt/kernel32/BaseCleanupAppcompatCacheSupportWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseCleanupAppcompatCacheSupportWorker,BaseCleanupAppcompatCacheSupportWorker,48 diff --git a/libc/nt/kernel32/BaseDestroyVDMEnvironment.S b/libc/nt/kernel32/BaseDestroyVDMEnvironment.S deleted file mode 100644 index e2f594618..000000000 --- a/libc/nt/kernel32/BaseDestroyVDMEnvironment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseDestroyVDMEnvironment,BaseDestroyVDMEnvironment,49 diff --git a/libc/nt/kernel32/BaseDllReadWriteIniFile.S b/libc/nt/kernel32/BaseDllReadWriteIniFile.S deleted file mode 100644 index c6573acaf..000000000 --- a/libc/nt/kernel32/BaseDllReadWriteIniFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseDllReadWriteIniFile,BaseDllReadWriteIniFile,50 diff --git a/libc/nt/kernel32/BaseDumpAppcompatCacheWorker.S b/libc/nt/kernel32/BaseDumpAppcompatCacheWorker.S deleted file mode 100644 index 40851cb15..000000000 --- a/libc/nt/kernel32/BaseDumpAppcompatCacheWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseDumpAppcompatCacheWorker,BaseDumpAppcompatCacheWorker,52 diff --git a/libc/nt/kernel32/BaseElevationPostProcessing.S b/libc/nt/kernel32/BaseElevationPostProcessing.S deleted file mode 100644 index 7bc63133c..000000000 --- a/libc/nt/kernel32/BaseElevationPostProcessing.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseElevationPostProcessing,BaseElevationPostProcessing,53 diff --git a/libc/nt/kernel32/BaseFlushAppcompatCacheWorker.S b/libc/nt/kernel32/BaseFlushAppcompatCacheWorker.S deleted file mode 100644 index b58f9230a..000000000 --- a/libc/nt/kernel32/BaseFlushAppcompatCacheWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseFlushAppcompatCacheWorker,BaseFlushAppcompatCacheWorker,55 diff --git a/libc/nt/kernel32/BaseFormatTimeOut.S b/libc/nt/kernel32/BaseFormatTimeOut.S deleted file mode 100644 index 6ed3c7e3b..000000000 --- a/libc/nt/kernel32/BaseFormatTimeOut.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseFormatTimeOut,BaseFormatTimeOut,57 diff --git a/libc/nt/kernel32/BaseFreeAppCompatDataForProcessWorker.S b/libc/nt/kernel32/BaseFreeAppCompatDataForProcessWorker.S deleted file mode 100644 index 0b5b6486f..000000000 --- a/libc/nt/kernel32/BaseFreeAppCompatDataForProcessWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseFreeAppCompatDataForProcessWorker,BaseFreeAppCompatDataForProcessWorker,58 diff --git a/libc/nt/kernel32/BaseGenerateAppCompatData.S b/libc/nt/kernel32/BaseGenerateAppCompatData.S deleted file mode 100644 index 8f22f55e7..000000000 --- a/libc/nt/kernel32/BaseGenerateAppCompatData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseGenerateAppCompatData,BaseGenerateAppCompatData,59 diff --git a/libc/nt/kernel32/BaseInitAppcompatCacheSupportWorker.S b/libc/nt/kernel32/BaseInitAppcompatCacheSupportWorker.S deleted file mode 100644 index 0aeea4f87..000000000 --- a/libc/nt/kernel32/BaseInitAppcompatCacheSupportWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseInitAppcompatCacheSupportWorker,BaseInitAppcompatCacheSupportWorker,62 diff --git a/libc/nt/kernel32/BaseIsAppcompatInfrastructureDisabledWorker.S b/libc/nt/kernel32/BaseIsAppcompatInfrastructureDisabledWorker.S deleted file mode 100644 index 3c619fedd..000000000 --- a/libc/nt/kernel32/BaseIsAppcompatInfrastructureDisabledWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseIsAppcompatInfrastructureDisabledWorker,BaseIsAppcompatInfrastructureDisabledWorker,64 diff --git a/libc/nt/kernel32/BaseIsDosApplication.S b/libc/nt/kernel32/BaseIsDosApplication.S deleted file mode 100644 index 67d8c4c44..000000000 --- a/libc/nt/kernel32/BaseIsDosApplication.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseIsDosApplication,BaseIsDosApplication,65 diff --git a/libc/nt/kernel32/BaseQueryModuleData.S b/libc/nt/kernel32/BaseQueryModuleData.S deleted file mode 100644 index 933750d18..000000000 --- a/libc/nt/kernel32/BaseQueryModuleData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseQueryModuleData,BaseQueryModuleData,66 diff --git a/libc/nt/kernel32/BaseReadAppCompatDataForProcessWorker.S b/libc/nt/kernel32/BaseReadAppCompatDataForProcessWorker.S deleted file mode 100644 index 43691721d..000000000 --- a/libc/nt/kernel32/BaseReadAppCompatDataForProcessWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseReadAppCompatDataForProcessWorker,BaseReadAppCompatDataForProcessWorker,67 diff --git a/libc/nt/kernel32/BaseSetLastNTError.S b/libc/nt/kernel32/BaseSetLastNTError.S deleted file mode 100644 index 48366b701..000000000 --- a/libc/nt/kernel32/BaseSetLastNTError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseSetLastNTError,BaseSetLastNTError,68 diff --git a/libc/nt/kernel32/BaseThreadInitThunk.S b/libc/nt/kernel32/BaseThreadInitThunk.S deleted file mode 100644 index 8fb532568..000000000 --- a/libc/nt/kernel32/BaseThreadInitThunk.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseThreadInitThunk,BaseThreadInitThunk,69 diff --git a/libc/nt/kernel32/BaseUpdateAppcompatCacheWorker.S b/libc/nt/kernel32/BaseUpdateAppcompatCacheWorker.S deleted file mode 100644 index 6f8345ca2..000000000 --- a/libc/nt/kernel32/BaseUpdateAppcompatCacheWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseUpdateAppcompatCacheWorker,BaseUpdateAppcompatCacheWorker,71 diff --git a/libc/nt/kernel32/BaseUpdateVDMEntry.S b/libc/nt/kernel32/BaseUpdateVDMEntry.S deleted file mode 100644 index 5cda21ddb..000000000 --- a/libc/nt/kernel32/BaseUpdateVDMEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseUpdateVDMEntry,BaseUpdateVDMEntry,72 diff --git a/libc/nt/kernel32/BaseVerifyUnicodeString.S b/libc/nt/kernel32/BaseVerifyUnicodeString.S deleted file mode 100644 index dcf4987b7..000000000 --- a/libc/nt/kernel32/BaseVerifyUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseVerifyUnicodeString,BaseVerifyUnicodeString,73 diff --git a/libc/nt/kernel32/BaseWriteErrorElevationRequiredEvent.S b/libc/nt/kernel32/BaseWriteErrorElevationRequiredEvent.S deleted file mode 100644 index 7661bb40f..000000000 --- a/libc/nt/kernel32/BaseWriteErrorElevationRequiredEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BaseWriteErrorElevationRequiredEvent,BaseWriteErrorElevationRequiredEvent,74 diff --git a/libc/nt/kernel32/Basep8BitStringToDynamicUnicodeString.S b/libc/nt/kernel32/Basep8BitStringToDynamicUnicodeString.S deleted file mode 100644 index abad3ccd6..000000000 --- a/libc/nt/kernel32/Basep8BitStringToDynamicUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Basep8BitStringToDynamicUnicodeString,Basep8BitStringToDynamicUnicodeString,75 diff --git a/libc/nt/kernel32/BasepAllocateActivationContextActivationBlock.S b/libc/nt/kernel32/BasepAllocateActivationContextActivationBlock.S deleted file mode 100644 index 74e8a3938..000000000 --- a/libc/nt/kernel32/BasepAllocateActivationContextActivationBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepAllocateActivationContextActivationBlock,BasepAllocateActivationContextActivationBlock,76 diff --git a/libc/nt/kernel32/BasepAnsiStringToDynamicUnicodeString.S b/libc/nt/kernel32/BasepAnsiStringToDynamicUnicodeString.S deleted file mode 100644 index 344319d58..000000000 --- a/libc/nt/kernel32/BasepAnsiStringToDynamicUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepAnsiStringToDynamicUnicodeString,BasepAnsiStringToDynamicUnicodeString,77 diff --git a/libc/nt/kernel32/BasepAppContainerEnvironmentExtension.S b/libc/nt/kernel32/BasepAppContainerEnvironmentExtension.S deleted file mode 100644 index a2ab84b37..000000000 --- a/libc/nt/kernel32/BasepAppContainerEnvironmentExtension.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepAppContainerEnvironmentExtension,BasepAppContainerEnvironmentExtension,78 diff --git a/libc/nt/kernel32/BasepAppXExtension.S b/libc/nt/kernel32/BasepAppXExtension.S deleted file mode 100644 index 926cabdb9..000000000 --- a/libc/nt/kernel32/BasepAppXExtension.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepAppXExtension,BasepAppXExtension,79 diff --git a/libc/nt/kernel32/BasepCheckAppCompat.S b/libc/nt/kernel32/BasepCheckAppCompat.S deleted file mode 100644 index 8ee744db8..000000000 --- a/libc/nt/kernel32/BasepCheckAppCompat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepCheckAppCompat,BasepCheckAppCompat,80 diff --git a/libc/nt/kernel32/BasepCheckWebBladeHashes.S b/libc/nt/kernel32/BasepCheckWebBladeHashes.S deleted file mode 100644 index 252f9fdd2..000000000 --- a/libc/nt/kernel32/BasepCheckWebBladeHashes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepCheckWebBladeHashes,BasepCheckWebBladeHashes,81 diff --git a/libc/nt/kernel32/BasepCheckWinSaferRestrictions.S b/libc/nt/kernel32/BasepCheckWinSaferRestrictions.S deleted file mode 100644 index 74839ba91..000000000 --- a/libc/nt/kernel32/BasepCheckWinSaferRestrictions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepCheckWinSaferRestrictions,BasepCheckWinSaferRestrictions,82 diff --git a/libc/nt/kernel32/BasepConstructSxsCreateProcessMessage.S b/libc/nt/kernel32/BasepConstructSxsCreateProcessMessage.S deleted file mode 100644 index b89d921ab..000000000 --- a/libc/nt/kernel32/BasepConstructSxsCreateProcessMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepConstructSxsCreateProcessMessage,BasepConstructSxsCreateProcessMessage,83 diff --git a/libc/nt/kernel32/BasepCopyEncryption.S b/libc/nt/kernel32/BasepCopyEncryption.S deleted file mode 100644 index 6d55e4358..000000000 --- a/libc/nt/kernel32/BasepCopyEncryption.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepCopyEncryption,BasepCopyEncryption,84 diff --git a/libc/nt/kernel32/BasepFreeActivationContextActivationBlock.S b/libc/nt/kernel32/BasepFreeActivationContextActivationBlock.S deleted file mode 100644 index 8abfe79e3..000000000 --- a/libc/nt/kernel32/BasepFreeActivationContextActivationBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepFreeActivationContextActivationBlock,BasepFreeActivationContextActivationBlock,85 diff --git a/libc/nt/kernel32/BasepFreeAppCompatData.S b/libc/nt/kernel32/BasepFreeAppCompatData.S deleted file mode 100644 index dbeeb4859..000000000 --- a/libc/nt/kernel32/BasepFreeAppCompatData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepFreeAppCompatData,BasepFreeAppCompatData,86 diff --git a/libc/nt/kernel32/BasepGetAppCompatData.S b/libc/nt/kernel32/BasepGetAppCompatData.S deleted file mode 100644 index 227820338..000000000 --- a/libc/nt/kernel32/BasepGetAppCompatData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepGetAppCompatData,BasepGetAppCompatData,87 diff --git a/libc/nt/kernel32/BasepGetComputerNameFromNtPath.S b/libc/nt/kernel32/BasepGetComputerNameFromNtPath.S deleted file mode 100644 index e9c4a81af..000000000 --- a/libc/nt/kernel32/BasepGetComputerNameFromNtPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepGetComputerNameFromNtPath,BasepGetComputerNameFromNtPath,88 diff --git a/libc/nt/kernel32/BasepGetExeArchType.S b/libc/nt/kernel32/BasepGetExeArchType.S deleted file mode 100644 index d24afc07d..000000000 --- a/libc/nt/kernel32/BasepGetExeArchType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepGetExeArchType,BasepGetExeArchType,89 diff --git a/libc/nt/kernel32/BasepInitAppCompatData.S b/libc/nt/kernel32/BasepInitAppCompatData.S deleted file mode 100644 index 5bd68fe48..000000000 --- a/libc/nt/kernel32/BasepInitAppCompatData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepInitAppCompatData,BasepInitAppCompatData,90 diff --git a/libc/nt/kernel32/BasepIsProcessAllowed.S b/libc/nt/kernel32/BasepIsProcessAllowed.S deleted file mode 100644 index b2741f48c..000000000 --- a/libc/nt/kernel32/BasepIsProcessAllowed.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepIsProcessAllowed,BasepIsProcessAllowed,91 diff --git a/libc/nt/kernel32/BasepMapModuleHandle.S b/libc/nt/kernel32/BasepMapModuleHandle.S deleted file mode 100644 index 149589b0d..000000000 --- a/libc/nt/kernel32/BasepMapModuleHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepMapModuleHandle,BasepMapModuleHandle,92 diff --git a/libc/nt/kernel32/BasepNotifyLoadStringResource.S b/libc/nt/kernel32/BasepNotifyLoadStringResource.S deleted file mode 100644 index af1a9c11d..000000000 --- a/libc/nt/kernel32/BasepNotifyLoadStringResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepNotifyLoadStringResource,BasepNotifyLoadStringResource,93 diff --git a/libc/nt/kernel32/BasepPostSuccessAppXExtension.S b/libc/nt/kernel32/BasepPostSuccessAppXExtension.S deleted file mode 100644 index c9559bbd0..000000000 --- a/libc/nt/kernel32/BasepPostSuccessAppXExtension.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepPostSuccessAppXExtension,BasepPostSuccessAppXExtension,94 diff --git a/libc/nt/kernel32/BasepProcessInvalidImage.S b/libc/nt/kernel32/BasepProcessInvalidImage.S deleted file mode 100644 index f3f175a55..000000000 --- a/libc/nt/kernel32/BasepProcessInvalidImage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepProcessInvalidImage,BasepProcessInvalidImage,95 diff --git a/libc/nt/kernel32/BasepQueryAppCompat.S b/libc/nt/kernel32/BasepQueryAppCompat.S deleted file mode 100644 index 68b29d67d..000000000 --- a/libc/nt/kernel32/BasepQueryAppCompat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepQueryAppCompat,BasepQueryAppCompat,96 diff --git a/libc/nt/kernel32/BasepQueryModuleChpeSettings.S b/libc/nt/kernel32/BasepQueryModuleChpeSettings.S deleted file mode 100644 index 5f9cb8881..000000000 --- a/libc/nt/kernel32/BasepQueryModuleChpeSettings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepQueryModuleChpeSettings,BasepQueryModuleChpeSettings,97 diff --git a/libc/nt/kernel32/BasepReleaseAppXContext.S b/libc/nt/kernel32/BasepReleaseAppXContext.S deleted file mode 100644 index 5b81e1305..000000000 --- a/libc/nt/kernel32/BasepReleaseAppXContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepReleaseAppXContext,BasepReleaseAppXContext,98 diff --git a/libc/nt/kernel32/BasepReleaseSxsCreateProcessUtilityStruct.S b/libc/nt/kernel32/BasepReleaseSxsCreateProcessUtilityStruct.S deleted file mode 100644 index d45a5a17e..000000000 --- a/libc/nt/kernel32/BasepReleaseSxsCreateProcessUtilityStruct.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepReleaseSxsCreateProcessUtilityStruct,BasepReleaseSxsCreateProcessUtilityStruct,99 diff --git a/libc/nt/kernel32/BasepReportFault.S b/libc/nt/kernel32/BasepReportFault.S deleted file mode 100644 index 52f1c5adc..000000000 --- a/libc/nt/kernel32/BasepReportFault.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepReportFault,BasepReportFault,100 diff --git a/libc/nt/kernel32/BasepSetFileEncryptionCompression.S b/libc/nt/kernel32/BasepSetFileEncryptionCompression.S deleted file mode 100644 index 9422c4fe4..000000000 --- a/libc/nt/kernel32/BasepSetFileEncryptionCompression.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BasepSetFileEncryptionCompression,BasepSetFileEncryptionCompression,101 diff --git a/libc/nt/kernel32/Beep.S b/libc/nt/kernel32/Beep.S deleted file mode 100644 index d39661ed0..000000000 --- a/libc/nt/kernel32/Beep.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Beep,Beep,0 diff --git a/libc/nt/kernel32/BeginUpdateResourceW.S b/libc/nt/kernel32/BeginUpdateResourceW.S deleted file mode 100644 index 8aae95494..000000000 --- a/libc/nt/kernel32/BeginUpdateResourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BeginUpdateResourceW,BeginUpdateResourceW,104 diff --git a/libc/nt/kernel32/BindIoCompletionCallback.S b/libc/nt/kernel32/BindIoCompletionCallback.S deleted file mode 100644 index 27a9278ed..000000000 --- a/libc/nt/kernel32/BindIoCompletionCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BindIoCompletionCallback,BindIoCompletionCallback,105 diff --git a/libc/nt/kernel32/BuildCommDCBAndTimeoutsW.S b/libc/nt/kernel32/BuildCommDCBAndTimeoutsW.S deleted file mode 100644 index 8bed47581..000000000 --- a/libc/nt/kernel32/BuildCommDCBAndTimeoutsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BuildCommDCBAndTimeoutsW,BuildCommDCBAndTimeoutsW,108 diff --git a/libc/nt/kernel32/BuildCommDCBW.S b/libc/nt/kernel32/BuildCommDCBW.S deleted file mode 100644 index 525c3f888..000000000 --- a/libc/nt/kernel32/BuildCommDCBW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_BuildCommDCBW,BuildCommDCBW,109 diff --git a/libc/nt/kernel32/CallNamedPipeA.S b/libc/nt/kernel32/CallNamedPipeA.S index e2331955a..e140ef910 100644 --- a/libc/nt/kernel32/CallNamedPipeA.S +++ b/libc/nt/kernel32/CallNamedPipeA.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CallNamedPipeA,CallNamedPipeA,110 +.imp kernel32,__imp_CallNamedPipeA,CallNamedPipeA .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CallNamedPipeW.S b/libc/nt/kernel32/CallNamedPipeW.S index b18bdd335..fa699c00c 100644 --- a/libc/nt/kernel32/CallNamedPipeW.S +++ b/libc/nt/kernel32/CallNamedPipeW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CallNamedPipeW,CallNamedPipeW,0 +.imp kernel32,__imp_CallNamedPipeW,CallNamedPipeW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CallbackMayRunLong.S b/libc/nt/kernel32/CallbackMayRunLong.S deleted file mode 100644 index df5a18d1f..000000000 --- a/libc/nt/kernel32/CallbackMayRunLong.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CallbackMayRunLong,CallbackMayRunLong,0 diff --git a/libc/nt/kernel32/CancelDeviceWakeupRequest.S b/libc/nt/kernel32/CancelDeviceWakeupRequest.S deleted file mode 100644 index b26a3e33f..000000000 --- a/libc/nt/kernel32/CancelDeviceWakeupRequest.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CancelDeviceWakeupRequest,CancelDeviceWakeupRequest,113 diff --git a/libc/nt/kernel32/CancelIo.S b/libc/nt/kernel32/CancelIo.S index c95290945..c930034bd 100644 --- a/libc/nt/kernel32/CancelIo.S +++ b/libc/nt/kernel32/CancelIo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CancelIo,CancelIo,0 +.imp kernel32,__imp_CancelIo,CancelIo .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CancelIoEx.S b/libc/nt/kernel32/CancelIoEx.S index a586f6ca9..a7f1bc545 100644 --- a/libc/nt/kernel32/CancelIoEx.S +++ b/libc/nt/kernel32/CancelIoEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CancelIoEx,CancelIoEx,0 +.imp kernel32,__imp_CancelIoEx,CancelIoEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CancelSynchronousIo.S b/libc/nt/kernel32/CancelSynchronousIo.S index 1cf9bada5..33d3486ca 100644 --- a/libc/nt/kernel32/CancelSynchronousIo.S +++ b/libc/nt/kernel32/CancelSynchronousIo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CancelSynchronousIo,CancelSynchronousIo,0 +.imp kernel32,__imp_CancelSynchronousIo,CancelSynchronousIo .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CancelTimerQueueTimer.S b/libc/nt/kernel32/CancelTimerQueueTimer.S deleted file mode 100644 index 63b9a7a5a..000000000 --- a/libc/nt/kernel32/CancelTimerQueueTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CancelTimerQueueTimer,CancelTimerQueueTimer,118 diff --git a/libc/nt/kernel32/CancelWaitableTimer.S b/libc/nt/kernel32/CancelWaitableTimer.S deleted file mode 100644 index e49dc8ca3..000000000 --- a/libc/nt/kernel32/CancelWaitableTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CancelWaitableTimer,CancelWaitableTimer,0 diff --git a/libc/nt/kernel32/CeipIsOptedIn.S b/libc/nt/kernel32/CeipIsOptedIn.S deleted file mode 100644 index 69523e73a..000000000 --- a/libc/nt/kernel32/CeipIsOptedIn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CeipIsOptedIn,CeipIsOptedIn,0 diff --git a/libc/nt/kernel32/ChangeTimerQueueTimer.S b/libc/nt/kernel32/ChangeTimerQueueTimer.S deleted file mode 100644 index be6a3fe69..000000000 --- a/libc/nt/kernel32/ChangeTimerQueueTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ChangeTimerQueueTimer,ChangeTimerQueueTimer,0 diff --git a/libc/nt/kernel32/CheckElevation.S b/libc/nt/kernel32/CheckElevation.S deleted file mode 100644 index 80059828d..000000000 --- a/libc/nt/kernel32/CheckElevation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CheckElevation,CheckElevation,123 diff --git a/libc/nt/kernel32/CheckElevationEnabled.S b/libc/nt/kernel32/CheckElevationEnabled.S deleted file mode 100644 index 1e81975f5..000000000 --- a/libc/nt/kernel32/CheckElevationEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CheckElevationEnabled,CheckElevationEnabled,124 diff --git a/libc/nt/kernel32/CheckForReadOnlyResource.S b/libc/nt/kernel32/CheckForReadOnlyResource.S deleted file mode 100644 index 8903cef31..000000000 --- a/libc/nt/kernel32/CheckForReadOnlyResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CheckForReadOnlyResource,CheckForReadOnlyResource,125 diff --git a/libc/nt/kernel32/CheckForReadOnlyResourceFilter.S b/libc/nt/kernel32/CheckForReadOnlyResourceFilter.S deleted file mode 100644 index 2abddb1ec..000000000 --- a/libc/nt/kernel32/CheckForReadOnlyResourceFilter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CheckForReadOnlyResourceFilter,CheckForReadOnlyResourceFilter,126 diff --git a/libc/nt/kernel32/CheckNameLegalDOS8Dot3W.S b/libc/nt/kernel32/CheckNameLegalDOS8Dot3W.S deleted file mode 100644 index 73028c61f..000000000 --- a/libc/nt/kernel32/CheckNameLegalDOS8Dot3W.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CheckNameLegalDOS8Dot3W,CheckNameLegalDOS8Dot3W,128 diff --git a/libc/nt/kernel32/CheckRemoteDebuggerPresent.S b/libc/nt/kernel32/CheckRemoteDebuggerPresent.S index aebbac9c9..93cfb58ea 100644 --- a/libc/nt/kernel32/CheckRemoteDebuggerPresent.S +++ b/libc/nt/kernel32/CheckRemoteDebuggerPresent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CheckRemoteDebuggerPresent,CheckRemoteDebuggerPresent,0 +.imp kernel32,__imp_CheckRemoteDebuggerPresent,CheckRemoteDebuggerPresent .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CheckTokenCapability.S b/libc/nt/kernel32/CheckTokenCapability.S deleted file mode 100644 index 0c25a6982..000000000 --- a/libc/nt/kernel32/CheckTokenCapability.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CheckTokenCapability,CheckTokenCapability,0 diff --git a/libc/nt/kernel32/CheckTokenMembershipEx.S b/libc/nt/kernel32/CheckTokenMembershipEx.S deleted file mode 100644 index 803626fbc..000000000 --- a/libc/nt/kernel32/CheckTokenMembershipEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CheckTokenMembershipEx,CheckTokenMembershipEx,0 diff --git a/libc/nt/kernel32/ClearCommBreak.S b/libc/nt/kernel32/ClearCommBreak.S index 93c1ab8ff..22638d50c 100644 --- a/libc/nt/kernel32/ClearCommBreak.S +++ b/libc/nt/kernel32/ClearCommBreak.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ClearCommBreak,ClearCommBreak,0 +.imp kernel32,__imp_ClearCommBreak,ClearCommBreak .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ClearCommError.S b/libc/nt/kernel32/ClearCommError.S deleted file mode 100644 index 0a56c1fa3..000000000 --- a/libc/nt/kernel32/ClearCommError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ClearCommError,ClearCommError,0 diff --git a/libc/nt/kernel32/CloseConsoleHandle.S b/libc/nt/kernel32/CloseConsoleHandle.S deleted file mode 100644 index 618c7131b..000000000 --- a/libc/nt/kernel32/CloseConsoleHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CloseConsoleHandle,CloseConsoleHandle,134 diff --git a/libc/nt/kernel32/CloseHandle.S b/libc/nt/kernel32/CloseHandle.S index f1a12f0ec..0617d5e50 100644 --- a/libc/nt/kernel32/CloseHandle.S +++ b/libc/nt/kernel32/CloseHandle.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CloseHandle,CloseHandle,0 +.imp kernel32,__imp_CloseHandle,CloseHandle .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ClosePackageInfo.S b/libc/nt/kernel32/ClosePackageInfo.S deleted file mode 100644 index d59977b8b..000000000 --- a/libc/nt/kernel32/ClosePackageInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ClosePackageInfo,ClosePackageInfo,0 diff --git a/libc/nt/kernel32/ClosePrivateNamespace.S b/libc/nt/kernel32/ClosePrivateNamespace.S deleted file mode 100644 index 8e7df6f8b..000000000 --- a/libc/nt/kernel32/ClosePrivateNamespace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ClosePrivateNamespace,ClosePrivateNamespace,0 diff --git a/libc/nt/kernel32/CloseProfileUserMapping.S b/libc/nt/kernel32/CloseProfileUserMapping.S deleted file mode 100644 index 21552727c..000000000 --- a/libc/nt/kernel32/CloseProfileUserMapping.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CloseProfileUserMapping,CloseProfileUserMapping,138 diff --git a/libc/nt/kernel32/CmdBatNotification.S b/libc/nt/kernel32/CmdBatNotification.S deleted file mode 100644 index 19d73af46..000000000 --- a/libc/nt/kernel32/CmdBatNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CmdBatNotification,CmdBatNotification,147 diff --git a/libc/nt/kernel32/CommConfigDialogW.S b/libc/nt/kernel32/CommConfigDialogW.S deleted file mode 100644 index 1bcc65029..000000000 --- a/libc/nt/kernel32/CommConfigDialogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CommConfigDialogW,CommConfigDialogW,149 diff --git a/libc/nt/kernel32/CompareCalendarDates.S b/libc/nt/kernel32/CompareCalendarDates.S deleted file mode 100644 index 002c1a744..000000000 --- a/libc/nt/kernel32/CompareCalendarDates.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CompareCalendarDates,CompareCalendarDates,150 diff --git a/libc/nt/kernel32/CompareFileTime.S b/libc/nt/kernel32/CompareFileTime.S deleted file mode 100644 index 734620484..000000000 --- a/libc/nt/kernel32/CompareFileTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CompareFileTime,CompareFileTime,0 diff --git a/libc/nt/kernel32/CompareStringEx.S b/libc/nt/kernel32/CompareStringEx.S deleted file mode 100644 index 7cecbb94d..000000000 --- a/libc/nt/kernel32/CompareStringEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CompareStringEx,CompareStringEx,0 diff --git a/libc/nt/kernel32/CompareStringOrdinal.S b/libc/nt/kernel32/CompareStringOrdinal.S deleted file mode 100644 index 9b4644f9b..000000000 --- a/libc/nt/kernel32/CompareStringOrdinal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CompareStringOrdinal,CompareStringOrdinal,0 diff --git a/libc/nt/kernel32/CompareStringW.S b/libc/nt/kernel32/CompareStringW.S deleted file mode 100644 index 8c76ef0f4..000000000 --- a/libc/nt/kernel32/CompareStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CompareStringW,CompareStringW,0 diff --git a/libc/nt/kernel32/ConnectNamedPipe.S b/libc/nt/kernel32/ConnectNamedPipe.S index cdb1762e1..bbaf6a2bc 100644 --- a/libc/nt/kernel32/ConnectNamedPipe.S +++ b/libc/nt/kernel32/ConnectNamedPipe.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ConnectNamedPipe,ConnectNamedPipe,0 +.imp kernel32,__imp_ConnectNamedPipe,ConnectNamedPipe .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ConsoleMenuControl.S b/libc/nt/kernel32/ConsoleMenuControl.S deleted file mode 100644 index 8748fa736..000000000 --- a/libc/nt/kernel32/ConsoleMenuControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ConsoleMenuControl,ConsoleMenuControl,157 diff --git a/libc/nt/kernel32/ContinueDebugEvent.S b/libc/nt/kernel32/ContinueDebugEvent.S index 9c9a55c34..c77e9f214 100644 --- a/libc/nt/kernel32/ContinueDebugEvent.S +++ b/libc/nt/kernel32/ContinueDebugEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ContinueDebugEvent,ContinueDebugEvent,0 +.imp kernel32,__imp_ContinueDebugEvent,ContinueDebugEvent .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ConvertCalDateTimeToSystemTime.S b/libc/nt/kernel32/ConvertCalDateTimeToSystemTime.S deleted file mode 100644 index a9c1d4947..000000000 --- a/libc/nt/kernel32/ConvertCalDateTimeToSystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ConvertCalDateTimeToSystemTime,ConvertCalDateTimeToSystemTime,159 diff --git a/libc/nt/kernel32/ConvertDefaultLocale.S b/libc/nt/kernel32/ConvertDefaultLocale.S deleted file mode 100644 index d98f358b3..000000000 --- a/libc/nt/kernel32/ConvertDefaultLocale.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ConvertDefaultLocale,ConvertDefaultLocale,0 diff --git a/libc/nt/kernel32/ConvertFiberToThread.S b/libc/nt/kernel32/ConvertFiberToThread.S deleted file mode 100644 index f3bf486da..000000000 --- a/libc/nt/kernel32/ConvertFiberToThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ConvertFiberToThread,ConvertFiberToThread,0 diff --git a/libc/nt/kernel32/ConvertNLSDayOfWeekToWin32DayOfWeek.S b/libc/nt/kernel32/ConvertNLSDayOfWeekToWin32DayOfWeek.S deleted file mode 100644 index 8ad690083..000000000 --- a/libc/nt/kernel32/ConvertNLSDayOfWeekToWin32DayOfWeek.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ConvertNLSDayOfWeekToWin32DayOfWeek,ConvertNLSDayOfWeekToWin32DayOfWeek,162 diff --git a/libc/nt/kernel32/ConvertSystemTimeToCalDateTime.S b/libc/nt/kernel32/ConvertSystemTimeToCalDateTime.S deleted file mode 100644 index bba767de7..000000000 --- a/libc/nt/kernel32/ConvertSystemTimeToCalDateTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ConvertSystemTimeToCalDateTime,ConvertSystemTimeToCalDateTime,163 diff --git a/libc/nt/kernel32/ConvertThreadToFiber.S b/libc/nt/kernel32/ConvertThreadToFiber.S deleted file mode 100644 index 8beb0298f..000000000 --- a/libc/nt/kernel32/ConvertThreadToFiber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ConvertThreadToFiber,ConvertThreadToFiber,0 diff --git a/libc/nt/kernel32/ConvertThreadToFiberEx.S b/libc/nt/kernel32/ConvertThreadToFiberEx.S deleted file mode 100644 index 38e373ff7..000000000 --- a/libc/nt/kernel32/ConvertThreadToFiberEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ConvertThreadToFiberEx,ConvertThreadToFiberEx,0 diff --git a/libc/nt/kernel32/CopyContext.S b/libc/nt/kernel32/CopyContext.S deleted file mode 100644 index 914881fd3..000000000 --- a/libc/nt/kernel32/CopyContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CopyContext,CopyContext,0 diff --git a/libc/nt/kernel32/CopyFile2.S b/libc/nt/kernel32/CopyFile2.S deleted file mode 100644 index f18bfc32d..000000000 --- a/libc/nt/kernel32/CopyFile2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CopyFile2,CopyFile2,0 diff --git a/libc/nt/kernel32/CopyFileExW.S b/libc/nt/kernel32/CopyFileExW.S deleted file mode 100644 index f3ee5513a..000000000 --- a/libc/nt/kernel32/CopyFileExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CopyFileExW,CopyFileExW,0 diff --git a/libc/nt/kernel32/CopyFileTransactedW.S b/libc/nt/kernel32/CopyFileTransactedW.S deleted file mode 100644 index ebb136d7b..000000000 --- a/libc/nt/kernel32/CopyFileTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CopyFileTransactedW,CopyFileTransactedW,172 diff --git a/libc/nt/kernel32/CopyFileW.S b/libc/nt/kernel32/CopyFileW.S index c1401ab75..c5b9dc8f8 100644 --- a/libc/nt/kernel32/CopyFileW.S +++ b/libc/nt/kernel32/CopyFileW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CopyFileW,CopyFileW,0 +.imp kernel32,__imp_CopyFileW,CopyFileW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CopyLZFile.S b/libc/nt/kernel32/CopyLZFile.S deleted file mode 100644 index cb45cb8e3..000000000 --- a/libc/nt/kernel32/CopyLZFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CopyLZFile,CopyLZFile,174 diff --git a/libc/nt/kernel32/CreateActCtxW.S b/libc/nt/kernel32/CreateActCtxW.S deleted file mode 100644 index 608005732..000000000 --- a/libc/nt/kernel32/CreateActCtxW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateActCtxW,CreateActCtxW,0 diff --git a/libc/nt/kernel32/CreateActCtxWWorker.S b/libc/nt/kernel32/CreateActCtxWWorker.S deleted file mode 100644 index d1fe80aa7..000000000 --- a/libc/nt/kernel32/CreateActCtxWWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateActCtxWWorker,CreateActCtxWWorker,177 diff --git a/libc/nt/kernel32/CreateBoundaryDescriptorW.S b/libc/nt/kernel32/CreateBoundaryDescriptorW.S deleted file mode 100644 index 4536e47ca..000000000 --- a/libc/nt/kernel32/CreateBoundaryDescriptorW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateBoundaryDescriptorW,CreateBoundaryDescriptorW,0 diff --git a/libc/nt/kernel32/CreateConsoleScreenBuffer.S b/libc/nt/kernel32/CreateConsoleScreenBuffer.S deleted file mode 100644 index 559d41f98..000000000 --- a/libc/nt/kernel32/CreateConsoleScreenBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateConsoleScreenBuffer,CreateConsoleScreenBuffer,0 diff --git a/libc/nt/kernel32/CreateDirectoryExW.S b/libc/nt/kernel32/CreateDirectoryExW.S deleted file mode 100644 index 6d4e912d2..000000000 --- a/libc/nt/kernel32/CreateDirectoryExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateDirectoryExW,CreateDirectoryExW,0 diff --git a/libc/nt/kernel32/CreateDirectoryTransactedW.S b/libc/nt/kernel32/CreateDirectoryTransactedW.S deleted file mode 100644 index 866c48c26..000000000 --- a/libc/nt/kernel32/CreateDirectoryTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateDirectoryTransactedW,CreateDirectoryTransactedW,185 diff --git a/libc/nt/kernel32/CreateDirectoryW.S b/libc/nt/kernel32/CreateDirectoryW.S index a8d1de3ac..c450bfffa 100644 --- a/libc/nt/kernel32/CreateDirectoryW.S +++ b/libc/nt/kernel32/CreateDirectoryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateDirectoryW,CreateDirectoryW,0 +.imp kernel32,__imp_CreateDirectoryW,CreateDirectoryW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateEventExW.S b/libc/nt/kernel32/CreateEventExW.S index 05b60d2f7..00ea2f970 100644 --- a/libc/nt/kernel32/CreateEventExW.S +++ b/libc/nt/kernel32/CreateEventExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateEventExW,CreateEventExW,0 +.imp kernel32,__imp_CreateEventExW,CreateEventExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateEventW.S b/libc/nt/kernel32/CreateEventW.S index a4884160d..eb80f4c4b 100644 --- a/libc/nt/kernel32/CreateEventW.S +++ b/libc/nt/kernel32/CreateEventW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateEventW,CreateEventW,0 +.imp kernel32,__imp_CreateEventW,CreateEventW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateFiber.S b/libc/nt/kernel32/CreateFiber.S deleted file mode 100644 index f27486300..000000000 --- a/libc/nt/kernel32/CreateFiber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateFiber,CreateFiber,0 diff --git a/libc/nt/kernel32/CreateFiberEx.S b/libc/nt/kernel32/CreateFiberEx.S deleted file mode 100644 index 8af8178c2..000000000 --- a/libc/nt/kernel32/CreateFiberEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateFiberEx,CreateFiberEx,0 diff --git a/libc/nt/kernel32/CreateFile2.S b/libc/nt/kernel32/CreateFile2.S deleted file mode 100644 index ce57d4569..000000000 --- a/libc/nt/kernel32/CreateFile2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateFile2,CreateFile2,0 diff --git a/libc/nt/kernel32/CreateFileMappingFromApp.S b/libc/nt/kernel32/CreateFileMappingFromApp.S deleted file mode 100644 index 448723e8e..000000000 --- a/libc/nt/kernel32/CreateFileMappingFromApp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateFileMappingFromApp,CreateFileMappingFromApp,0 diff --git a/libc/nt/kernel32/CreateFileMappingNumaW.S b/libc/nt/kernel32/CreateFileMappingNumaW.S index 76d33e81f..e4a675c00 100644 --- a/libc/nt/kernel32/CreateFileMappingNumaW.S +++ b/libc/nt/kernel32/CreateFileMappingNumaW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateFileMappingNumaW,CreateFileMappingNumaW,0 +.imp kernel32,__imp_CreateFileMappingNumaW,CreateFileMappingNumaW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateFileMappingW.S b/libc/nt/kernel32/CreateFileMappingW.S index a06084de1..1c5695f61 100644 --- a/libc/nt/kernel32/CreateFileMappingW.S +++ b/libc/nt/kernel32/CreateFileMappingW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateFileMappingW,CreateFileMappingW,0 +.imp kernel32,__imp_CreateFileMappingW,CreateFileMappingW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateFileTransactedW.S b/libc/nt/kernel32/CreateFileTransactedW.S deleted file mode 100644 index ec7904a65..000000000 --- a/libc/nt/kernel32/CreateFileTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateFileTransactedW,CreateFileTransactedW,202 diff --git a/libc/nt/kernel32/CreateFileW.S b/libc/nt/kernel32/CreateFileW.S index 3e408016d..e5c94ccc0 100644 --- a/libc/nt/kernel32/CreateFileW.S +++ b/libc/nt/kernel32/CreateFileW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateFileW,CreateFileW,0 +.imp kernel32,__imp_CreateFileW,CreateFileW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateHardLinkTransactedW.S b/libc/nt/kernel32/CreateHardLinkTransactedW.S deleted file mode 100644 index e45b82024..000000000 --- a/libc/nt/kernel32/CreateHardLinkTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateHardLinkTransactedW,CreateHardLinkTransactedW,206 diff --git a/libc/nt/kernel32/CreateHardLinkW.S b/libc/nt/kernel32/CreateHardLinkW.S index e2419b56f..57ec858c6 100644 --- a/libc/nt/kernel32/CreateHardLinkW.S +++ b/libc/nt/kernel32/CreateHardLinkW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateHardLinkW,CreateHardLinkW,0 +.imp kernel32,__imp_CreateHardLinkW,CreateHardLinkW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateIoCompletionPort.S b/libc/nt/kernel32/CreateIoCompletionPort.S index 8b26989a7..53025b835 100644 --- a/libc/nt/kernel32/CreateIoCompletionPort.S +++ b/libc/nt/kernel32/CreateIoCompletionPort.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateIoCompletionPort,CreateIoCompletionPort,0 +.imp kernel32,__imp_CreateIoCompletionPort,CreateIoCompletionPort .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateJobObjectW.S b/libc/nt/kernel32/CreateJobObjectW.S deleted file mode 100644 index f8a2b6388..000000000 --- a/libc/nt/kernel32/CreateJobObjectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateJobObjectW,CreateJobObjectW,210 diff --git a/libc/nt/kernel32/CreateJobSet.S b/libc/nt/kernel32/CreateJobSet.S deleted file mode 100644 index f99ce154c..000000000 --- a/libc/nt/kernel32/CreateJobSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateJobSet,CreateJobSet,211 diff --git a/libc/nt/kernel32/CreateMailslotW.S b/libc/nt/kernel32/CreateMailslotW.S deleted file mode 100644 index ec1a76d42..000000000 --- a/libc/nt/kernel32/CreateMailslotW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateMailslotW,CreateMailslotW,213 diff --git a/libc/nt/kernel32/CreateMemoryResourceNotification.S b/libc/nt/kernel32/CreateMemoryResourceNotification.S deleted file mode 100644 index e698a80df..000000000 --- a/libc/nt/kernel32/CreateMemoryResourceNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateMemoryResourceNotification,CreateMemoryResourceNotification,0 diff --git a/libc/nt/kernel32/CreateMutexExW.S b/libc/nt/kernel32/CreateMutexExW.S deleted file mode 100644 index a5418c40e..000000000 --- a/libc/nt/kernel32/CreateMutexExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateMutexExW,CreateMutexExW,0 diff --git a/libc/nt/kernel32/CreateMutexW.S b/libc/nt/kernel32/CreateMutexW.S deleted file mode 100644 index 342a741c6..000000000 --- a/libc/nt/kernel32/CreateMutexW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateMutexW,CreateMutexW,0 diff --git a/libc/nt/kernel32/CreateNamedPipeW.S b/libc/nt/kernel32/CreateNamedPipeW.S index f293952ec..2cb5c4738 100644 --- a/libc/nt/kernel32/CreateNamedPipeW.S +++ b/libc/nt/kernel32/CreateNamedPipeW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateNamedPipeW,CreateNamedPipeW,0 +.imp kernel32,__imp_CreateNamedPipeW,CreateNamedPipeW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreatePipe.S b/libc/nt/kernel32/CreatePipe.S index 51643c79a..7dcf563f4 100644 --- a/libc/nt/kernel32/CreatePipe.S +++ b/libc/nt/kernel32/CreatePipe.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreatePipe,CreatePipe,0 +.imp kernel32,__imp_CreatePipe,CreatePipe .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreatePrivateNamespaceW.S b/libc/nt/kernel32/CreatePrivateNamespaceW.S deleted file mode 100644 index cce9a335e..000000000 --- a/libc/nt/kernel32/CreatePrivateNamespaceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreatePrivateNamespaceW,CreatePrivateNamespaceW,0 diff --git a/libc/nt/kernel32/CreateProcessW.S b/libc/nt/kernel32/CreateProcessW.S index 05b502699..eeb9a3a2c 100644 --- a/libc/nt/kernel32/CreateProcessW.S +++ b/libc/nt/kernel32/CreateProcessW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateProcessW,CreateProcessW,0 +.imp kernel32,__imp_CreateProcessW,CreateProcessW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateRemoteThread.S b/libc/nt/kernel32/CreateRemoteThread.S deleted file mode 100644 index 6cd85dc6b..000000000 --- a/libc/nt/kernel32/CreateRemoteThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateRemoteThread,CreateRemoteThread,0 diff --git a/libc/nt/kernel32/CreateRemoteThreadEx.S b/libc/nt/kernel32/CreateRemoteThreadEx.S deleted file mode 100644 index 55c6336ae..000000000 --- a/libc/nt/kernel32/CreateRemoteThreadEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateRemoteThreadEx,CreateRemoteThreadEx,0 diff --git a/libc/nt/kernel32/CreateSemaphoreExW.S b/libc/nt/kernel32/CreateSemaphoreExW.S deleted file mode 100644 index 4574f72d3..000000000 --- a/libc/nt/kernel32/CreateSemaphoreExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateSemaphoreExW,CreateSemaphoreExW,0 diff --git a/libc/nt/kernel32/CreateSemaphoreW.S b/libc/nt/kernel32/CreateSemaphoreW.S index a94bf031d..7a2c07569 100644 --- a/libc/nt/kernel32/CreateSemaphoreW.S +++ b/libc/nt/kernel32/CreateSemaphoreW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateSemaphoreW,CreateSemaphoreW,0 +.imp kernel32,__imp_CreateSemaphoreW,CreateSemaphoreW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateSymbolicLinkTransactedW.S b/libc/nt/kernel32/CreateSymbolicLinkTransactedW.S deleted file mode 100644 index cca7ae259..000000000 --- a/libc/nt/kernel32/CreateSymbolicLinkTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateSymbolicLinkTransactedW,CreateSymbolicLinkTransactedW,238 diff --git a/libc/nt/kernel32/CreateSymbolicLinkW.S b/libc/nt/kernel32/CreateSymbolicLinkW.S index 7921a4242..4878ca601 100644 --- a/libc/nt/kernel32/CreateSymbolicLinkW.S +++ b/libc/nt/kernel32/CreateSymbolicLinkW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateSymbolicLinkW,CreateSymbolicLinkW,0 +.imp kernel32,__imp_CreateSymbolicLinkW,CreateSymbolicLinkW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateTapePartition.S b/libc/nt/kernel32/CreateTapePartition.S deleted file mode 100644 index 34328523a..000000000 --- a/libc/nt/kernel32/CreateTapePartition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateTapePartition,CreateTapePartition,240 diff --git a/libc/nt/kernel32/CreateThread.S b/libc/nt/kernel32/CreateThread.S index 2e1567e3b..ff483b855 100644 --- a/libc/nt/kernel32/CreateThread.S +++ b/libc/nt/kernel32/CreateThread.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateThread,CreateThread,0 +.imp kernel32,__imp_CreateThread,CreateThread .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateThreadpool.S b/libc/nt/kernel32/CreateThreadpool.S deleted file mode 100644 index 3c619a70f..000000000 --- a/libc/nt/kernel32/CreateThreadpool.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateThreadpool,CreateThreadpool,0 diff --git a/libc/nt/kernel32/CreateThreadpoolCleanupGroup.S b/libc/nt/kernel32/CreateThreadpoolCleanupGroup.S deleted file mode 100644 index 8f2ab8fe8..000000000 --- a/libc/nt/kernel32/CreateThreadpoolCleanupGroup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateThreadpoolCleanupGroup,CreateThreadpoolCleanupGroup,0 diff --git a/libc/nt/kernel32/CreateThreadpoolIo.S b/libc/nt/kernel32/CreateThreadpoolIo.S deleted file mode 100644 index a814ccdf3..000000000 --- a/libc/nt/kernel32/CreateThreadpoolIo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateThreadpoolIo,CreateThreadpoolIo,0 diff --git a/libc/nt/kernel32/CreateThreadpoolTimer.S b/libc/nt/kernel32/CreateThreadpoolTimer.S deleted file mode 100644 index ed3e180c2..000000000 --- a/libc/nt/kernel32/CreateThreadpoolTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateThreadpoolTimer,CreateThreadpoolTimer,0 diff --git a/libc/nt/kernel32/CreateThreadpoolWait.S b/libc/nt/kernel32/CreateThreadpoolWait.S deleted file mode 100644 index 7e6870809..000000000 --- a/libc/nt/kernel32/CreateThreadpoolWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateThreadpoolWait,CreateThreadpoolWait,0 diff --git a/libc/nt/kernel32/CreateThreadpoolWork.S b/libc/nt/kernel32/CreateThreadpoolWork.S deleted file mode 100644 index fa00addad..000000000 --- a/libc/nt/kernel32/CreateThreadpoolWork.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateThreadpoolWork,CreateThreadpoolWork,0 diff --git a/libc/nt/kernel32/CreateTimerQueue.S b/libc/nt/kernel32/CreateTimerQueue.S deleted file mode 100644 index 1fabc593f..000000000 --- a/libc/nt/kernel32/CreateTimerQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateTimerQueue,CreateTimerQueue,0 diff --git a/libc/nt/kernel32/CreateTimerQueueTimer.S b/libc/nt/kernel32/CreateTimerQueueTimer.S deleted file mode 100644 index 9fff8e0e6..000000000 --- a/libc/nt/kernel32/CreateTimerQueueTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateTimerQueueTimer,CreateTimerQueueTimer,0 diff --git a/libc/nt/kernel32/CreateToolhelp32Snapshot.S b/libc/nt/kernel32/CreateToolhelp32Snapshot.S index 828c2fd71..c3907dbf1 100644 --- a/libc/nt/kernel32/CreateToolhelp32Snapshot.S +++ b/libc/nt/kernel32/CreateToolhelp32Snapshot.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateToolhelp32Snapshot,CreateToolhelp32Snapshot,0 +.imp kernel32,__imp_CreateToolhelp32Snapshot,CreateToolhelp32Snapshot .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateUmsCompletionList.S b/libc/nt/kernel32/CreateUmsCompletionList.S deleted file mode 100644 index 982743480..000000000 --- a/libc/nt/kernel32/CreateUmsCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateUmsCompletionList,CreateUmsCompletionList,251 diff --git a/libc/nt/kernel32/CreateUmsThreadContext.S b/libc/nt/kernel32/CreateUmsThreadContext.S deleted file mode 100644 index 06656700b..000000000 --- a/libc/nt/kernel32/CreateUmsThreadContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateUmsThreadContext,CreateUmsThreadContext,252 diff --git a/libc/nt/kernel32/CreateWaitableTimerExW.S b/libc/nt/kernel32/CreateWaitableTimerExW.S index da351a537..0bd970a48 100644 --- a/libc/nt/kernel32/CreateWaitableTimerExW.S +++ b/libc/nt/kernel32/CreateWaitableTimerExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateWaitableTimerExW,CreateWaitableTimerExW,0 +.imp kernel32,__imp_CreateWaitableTimerExW,CreateWaitableTimerExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/CreateWaitableTimerW.S b/libc/nt/kernel32/CreateWaitableTimerW.S index fed0bd426..c03fdfe06 100644 --- a/libc/nt/kernel32/CreateWaitableTimerW.S +++ b/libc/nt/kernel32/CreateWaitableTimerW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_CreateWaitableTimerW,CreateWaitableTimerW,0 +.imp kernel32,__imp_CreateWaitableTimerW,CreateWaitableTimerW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DeactivateActCtx.S b/libc/nt/kernel32/DeactivateActCtx.S deleted file mode 100644 index c6f7c48a4..000000000 --- a/libc/nt/kernel32/DeactivateActCtx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeactivateActCtx,DeactivateActCtx,0 diff --git a/libc/nt/kernel32/DeactivateActCtxWorker.S b/libc/nt/kernel32/DeactivateActCtxWorker.S deleted file mode 100644 index b9e3e186f..000000000 --- a/libc/nt/kernel32/DeactivateActCtxWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeactivateActCtxWorker,DeactivateActCtxWorker,259 diff --git a/libc/nt/kernel32/DebugActiveProcess.S b/libc/nt/kernel32/DebugActiveProcess.S index a751f2c6e..005b37cce 100644 --- a/libc/nt/kernel32/DebugActiveProcess.S +++ b/libc/nt/kernel32/DebugActiveProcess.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DebugActiveProcess,DebugActiveProcess,0 +.imp kernel32,__imp_DebugActiveProcess,DebugActiveProcess .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DebugActiveProcessStop.S b/libc/nt/kernel32/DebugActiveProcessStop.S index f53d51466..c0aaf8ec7 100644 --- a/libc/nt/kernel32/DebugActiveProcessStop.S +++ b/libc/nt/kernel32/DebugActiveProcessStop.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DebugActiveProcessStop,DebugActiveProcessStop,0 +.imp kernel32,__imp_DebugActiveProcessStop,DebugActiveProcessStop .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DebugBreakProcess.S b/libc/nt/kernel32/DebugBreakProcess.S index 3054c0481..7841a4a9b 100644 --- a/libc/nt/kernel32/DebugBreakProcess.S +++ b/libc/nt/kernel32/DebugBreakProcess.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DebugBreakProcess,DebugBreakProcess,263 +.imp kernel32,__imp_DebugBreakProcess,DebugBreakProcess .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DebugSetProcessKillOnExit.S b/libc/nt/kernel32/DebugSetProcessKillOnExit.S deleted file mode 100644 index cd0c9806b..000000000 --- a/libc/nt/kernel32/DebugSetProcessKillOnExit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DebugSetProcessKillOnExit,DebugSetProcessKillOnExit,264 diff --git a/libc/nt/kernel32/DefineDosDeviceW.S b/libc/nt/kernel32/DefineDosDeviceW.S deleted file mode 100644 index 14483a2e0..000000000 --- a/libc/nt/kernel32/DefineDosDeviceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DefineDosDeviceW,DefineDosDeviceW,0 diff --git a/libc/nt/kernel32/DeleteAtom.S b/libc/nt/kernel32/DeleteAtom.S deleted file mode 100644 index 862f0dce2..000000000 --- a/libc/nt/kernel32/DeleteAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteAtom,DeleteAtom,270 diff --git a/libc/nt/kernel32/DeleteBoundaryDescriptor.S b/libc/nt/kernel32/DeleteBoundaryDescriptor.S deleted file mode 100644 index 1d28b27e0..000000000 --- a/libc/nt/kernel32/DeleteBoundaryDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteBoundaryDescriptor,DeleteBoundaryDescriptor,0 diff --git a/libc/nt/kernel32/DeleteCriticalSection.S b/libc/nt/kernel32/DeleteCriticalSection.S index 30a79bd73..6bfb8e1b7 100644 --- a/libc/nt/kernel32/DeleteCriticalSection.S +++ b/libc/nt/kernel32/DeleteCriticalSection.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteCriticalSection,DeleteCriticalSection,0 +.imp kernel32,__imp_DeleteCriticalSection,DeleteCriticalSection .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DeleteFiber.S b/libc/nt/kernel32/DeleteFiber.S deleted file mode 100644 index c9123e7c2..000000000 --- a/libc/nt/kernel32/DeleteFiber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteFiber,DeleteFiber,0 diff --git a/libc/nt/kernel32/DeleteFileTransactedW.S b/libc/nt/kernel32/DeleteFileTransactedW.S deleted file mode 100644 index 1b1bccee7..000000000 --- a/libc/nt/kernel32/DeleteFileTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteFileTransactedW,DeleteFileTransactedW,276 diff --git a/libc/nt/kernel32/DeleteFileW.S b/libc/nt/kernel32/DeleteFileW.S index 59ce5d8e5..68de84d8d 100644 --- a/libc/nt/kernel32/DeleteFileW.S +++ b/libc/nt/kernel32/DeleteFileW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteFileW,DeleteFileW,0 +.imp kernel32,__imp_DeleteFileW,DeleteFileW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DeleteProcThreadAttributeList.S b/libc/nt/kernel32/DeleteProcThreadAttributeList.S index 3de2fe6e3..113cdfc8e 100644 --- a/libc/nt/kernel32/DeleteProcThreadAttributeList.S +++ b/libc/nt/kernel32/DeleteProcThreadAttributeList.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteProcThreadAttributeList,DeleteProcThreadAttributeList,0 +.imp kernel32,__imp_DeleteProcThreadAttributeList,DeleteProcThreadAttributeList .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DeleteSynchronizationBarrier.S b/libc/nt/kernel32/DeleteSynchronizationBarrier.S deleted file mode 100644 index 2a1728087..000000000 --- a/libc/nt/kernel32/DeleteSynchronizationBarrier.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteSynchronizationBarrier,DeleteSynchronizationBarrier,279 diff --git a/libc/nt/kernel32/DeleteTimerQueue.S b/libc/nt/kernel32/DeleteTimerQueue.S deleted file mode 100644 index cc3318f91..000000000 --- a/libc/nt/kernel32/DeleteTimerQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteTimerQueue,DeleteTimerQueue,280 diff --git a/libc/nt/kernel32/DeleteTimerQueueEx.S b/libc/nt/kernel32/DeleteTimerQueueEx.S deleted file mode 100644 index 5107721ca..000000000 --- a/libc/nt/kernel32/DeleteTimerQueueEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteTimerQueueEx,DeleteTimerQueueEx,0 diff --git a/libc/nt/kernel32/DeleteTimerQueueTimer.S b/libc/nt/kernel32/DeleteTimerQueueTimer.S deleted file mode 100644 index cccc6bf34..000000000 --- a/libc/nt/kernel32/DeleteTimerQueueTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteTimerQueueTimer,DeleteTimerQueueTimer,0 diff --git a/libc/nt/kernel32/DeleteUmsCompletionList.S b/libc/nt/kernel32/DeleteUmsCompletionList.S deleted file mode 100644 index e7f357998..000000000 --- a/libc/nt/kernel32/DeleteUmsCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteUmsCompletionList,DeleteUmsCompletionList,283 diff --git a/libc/nt/kernel32/DeleteUmsThreadContext.S b/libc/nt/kernel32/DeleteUmsThreadContext.S deleted file mode 100644 index fc2b80776..000000000 --- a/libc/nt/kernel32/DeleteUmsThreadContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteUmsThreadContext,DeleteUmsThreadContext,284 diff --git a/libc/nt/kernel32/DeleteVolumeMountPointW.S b/libc/nt/kernel32/DeleteVolumeMountPointW.S deleted file mode 100644 index 3e8f12871..000000000 --- a/libc/nt/kernel32/DeleteVolumeMountPointW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DeleteVolumeMountPointW,DeleteVolumeMountPointW,0 diff --git a/libc/nt/kernel32/DequeueUmsCompletionListItems.S b/libc/nt/kernel32/DequeueUmsCompletionListItems.S deleted file mode 100644 index 101b959eb..000000000 --- a/libc/nt/kernel32/DequeueUmsCompletionListItems.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DequeueUmsCompletionListItems,DequeueUmsCompletionListItems,287 diff --git a/libc/nt/kernel32/DeviceIoControl.S b/libc/nt/kernel32/DeviceIoControl.S index a8cdce3fd..a3cf4da30 100644 --- a/libc/nt/kernel32/DeviceIoControl.S +++ b/libc/nt/kernel32/DeviceIoControl.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DeviceIoControl,DeviceIoControl,0 +.imp kernel32,__imp_DeviceIoControl,DeviceIoControl .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DisableThreadLibraryCalls.S b/libc/nt/kernel32/DisableThreadLibraryCalls.S deleted file mode 100644 index b5d51881c..000000000 --- a/libc/nt/kernel32/DisableThreadLibraryCalls.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DisableThreadLibraryCalls,DisableThreadLibraryCalls,0 diff --git a/libc/nt/kernel32/DisableThreadProfiling.S b/libc/nt/kernel32/DisableThreadProfiling.S deleted file mode 100644 index f1b6f72f1..000000000 --- a/libc/nt/kernel32/DisableThreadProfiling.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DisableThreadProfiling,DisableThreadProfiling,290 diff --git a/libc/nt/kernel32/DiscardVirtualMemory.S b/libc/nt/kernel32/DiscardVirtualMemory.S deleted file mode 100644 index 6e6780fcc..000000000 --- a/libc/nt/kernel32/DiscardVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DiscardVirtualMemory,DiscardVirtualMemory,0 diff --git a/libc/nt/kernel32/DisconnectNamedPipe.S b/libc/nt/kernel32/DisconnectNamedPipe.S index fa4a74ca1..d61b2340f 100644 --- a/libc/nt/kernel32/DisconnectNamedPipe.S +++ b/libc/nt/kernel32/DisconnectNamedPipe.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DisconnectNamedPipe,DisconnectNamedPipe,0 +.imp kernel32,__imp_DisconnectNamedPipe,DisconnectNamedPipe .text.windows .ftrace1 diff --git a/libc/nt/kernel32/DnsHostnameToComputerNameW.S b/libc/nt/kernel32/DnsHostnameToComputerNameW.S deleted file mode 100644 index 23f8dba76..000000000 --- a/libc/nt/kernel32/DnsHostnameToComputerNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DnsHostnameToComputerNameW,DnsHostnameToComputerNameW,296 diff --git a/libc/nt/kernel32/DosDateTimeToFileTime.S b/libc/nt/kernel32/DosDateTimeToFileTime.S deleted file mode 100644 index d3d4f2f7d..000000000 --- a/libc/nt/kernel32/DosDateTimeToFileTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DosDateTimeToFileTime,DosDateTimeToFileTime,297 diff --git a/libc/nt/kernel32/DosPathToSessionPathW.S b/libc/nt/kernel32/DosPathToSessionPathW.S deleted file mode 100644 index 258021734..000000000 --- a/libc/nt/kernel32/DosPathToSessionPathW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DosPathToSessionPathW,DosPathToSessionPathW,299 diff --git a/libc/nt/kernel32/DuplicateConsoleHandle.S b/libc/nt/kernel32/DuplicateConsoleHandle.S deleted file mode 100644 index 71cce48f4..000000000 --- a/libc/nt/kernel32/DuplicateConsoleHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DuplicateConsoleHandle,DuplicateConsoleHandle,300 diff --git a/libc/nt/kernel32/DuplicateEncryptionInfoFileExt.S b/libc/nt/kernel32/DuplicateEncryptionInfoFileExt.S deleted file mode 100644 index 3b21770f9..000000000 --- a/libc/nt/kernel32/DuplicateEncryptionInfoFileExt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_DuplicateEncryptionInfoFileExt,DuplicateEncryptionInfoFileExt,301 diff --git a/libc/nt/kernel32/DuplicateHandle.S b/libc/nt/kernel32/DuplicateHandle.S index db472827b..d054ec5d6 100644 --- a/libc/nt/kernel32/DuplicateHandle.S +++ b/libc/nt/kernel32/DuplicateHandle.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_DuplicateHandle,DuplicateHandle,0 +.imp kernel32,__imp_DuplicateHandle,DuplicateHandle .text.windows .ftrace1 diff --git a/libc/nt/kernel32/EnableThreadProfiling.S b/libc/nt/kernel32/EnableThreadProfiling.S deleted file mode 100644 index 27b764568..000000000 --- a/libc/nt/kernel32/EnableThreadProfiling.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnableThreadProfiling,EnableThreadProfiling,303 diff --git a/libc/nt/kernel32/EndUpdateResourceW.S b/libc/nt/kernel32/EndUpdateResourceW.S deleted file mode 100644 index daf236193..000000000 --- a/libc/nt/kernel32/EndUpdateResourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EndUpdateResourceW,EndUpdateResourceW,307 diff --git a/libc/nt/kernel32/EnterCriticalSection.S b/libc/nt/kernel32/EnterCriticalSection.S index 33ef91ade..289060ebc 100644 --- a/libc/nt/kernel32/EnterCriticalSection.S +++ b/libc/nt/kernel32/EnterCriticalSection.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_EnterCriticalSection,EnterCriticalSection,0 +.imp kernel32,__imp_EnterCriticalSection,EnterCriticalSection .text.windows .ftrace1 diff --git a/libc/nt/kernel32/EnterSynchronizationBarrier.S b/libc/nt/kernel32/EnterSynchronizationBarrier.S deleted file mode 100644 index 97ee030b7..000000000 --- a/libc/nt/kernel32/EnterSynchronizationBarrier.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnterSynchronizationBarrier,EnterSynchronizationBarrier,0 diff --git a/libc/nt/kernel32/EnterUmsSchedulingMode.S b/libc/nt/kernel32/EnterUmsSchedulingMode.S deleted file mode 100644 index b56d340d9..000000000 --- a/libc/nt/kernel32/EnterUmsSchedulingMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnterUmsSchedulingMode,EnterUmsSchedulingMode,310 diff --git a/libc/nt/kernel32/EnumCalendarInfoExEx.S b/libc/nt/kernel32/EnumCalendarInfoExEx.S deleted file mode 100644 index 6fce6e7f2..000000000 --- a/libc/nt/kernel32/EnumCalendarInfoExEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumCalendarInfoExEx,EnumCalendarInfoExEx,0 diff --git a/libc/nt/kernel32/EnumCalendarInfoExW.S b/libc/nt/kernel32/EnumCalendarInfoExW.S deleted file mode 100644 index f53b92a5a..000000000 --- a/libc/nt/kernel32/EnumCalendarInfoExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumCalendarInfoExW,EnumCalendarInfoExW,0 diff --git a/libc/nt/kernel32/EnumCalendarInfoW.S b/libc/nt/kernel32/EnumCalendarInfoW.S deleted file mode 100644 index e9da6e436..000000000 --- a/libc/nt/kernel32/EnumCalendarInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumCalendarInfoW,EnumCalendarInfoW,0 diff --git a/libc/nt/kernel32/EnumDateFormatsExEx.S b/libc/nt/kernel32/EnumDateFormatsExEx.S deleted file mode 100644 index 6594030c5..000000000 --- a/libc/nt/kernel32/EnumDateFormatsExEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumDateFormatsExEx,EnumDateFormatsExEx,0 diff --git a/libc/nt/kernel32/EnumDateFormatsExW.S b/libc/nt/kernel32/EnumDateFormatsExW.S deleted file mode 100644 index 1435ee7a5..000000000 --- a/libc/nt/kernel32/EnumDateFormatsExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumDateFormatsExW,EnumDateFormatsExW,0 diff --git a/libc/nt/kernel32/EnumDateFormatsW.S b/libc/nt/kernel32/EnumDateFormatsW.S deleted file mode 100644 index c7de86ed8..000000000 --- a/libc/nt/kernel32/EnumDateFormatsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumDateFormatsW,EnumDateFormatsW,0 diff --git a/libc/nt/kernel32/EnumLanguageGroupLocalesW.S b/libc/nt/kernel32/EnumLanguageGroupLocalesW.S deleted file mode 100644 index 7dc603adb..000000000 --- a/libc/nt/kernel32/EnumLanguageGroupLocalesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumLanguageGroupLocalesW,EnumLanguageGroupLocalesW,0 diff --git a/libc/nt/kernel32/EnumResourceLanguagesExW.S b/libc/nt/kernel32/EnumResourceLanguagesExW.S deleted file mode 100644 index c91b57504..000000000 --- a/libc/nt/kernel32/EnumResourceLanguagesExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumResourceLanguagesExW,EnumResourceLanguagesExW,0 diff --git a/libc/nt/kernel32/EnumResourceLanguagesW.S b/libc/nt/kernel32/EnumResourceLanguagesW.S deleted file mode 100644 index 758f70161..000000000 --- a/libc/nt/kernel32/EnumResourceLanguagesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumResourceLanguagesW,EnumResourceLanguagesW,326 diff --git a/libc/nt/kernel32/EnumResourceNamesExW.S b/libc/nt/kernel32/EnumResourceNamesExW.S deleted file mode 100644 index 2f6c1f759..000000000 --- a/libc/nt/kernel32/EnumResourceNamesExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumResourceNamesExW,EnumResourceNamesExW,0 diff --git a/libc/nt/kernel32/EnumResourceNamesW.S b/libc/nt/kernel32/EnumResourceNamesW.S deleted file mode 100644 index 66ca95d5d..000000000 --- a/libc/nt/kernel32/EnumResourceNamesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumResourceNamesW,EnumResourceNamesW,0 diff --git a/libc/nt/kernel32/EnumResourceTypesExW.S b/libc/nt/kernel32/EnumResourceTypesExW.S deleted file mode 100644 index d6b8ac477..000000000 --- a/libc/nt/kernel32/EnumResourceTypesExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumResourceTypesExW,EnumResourceTypesExW,0 diff --git a/libc/nt/kernel32/EnumResourceTypesW.S b/libc/nt/kernel32/EnumResourceTypesW.S deleted file mode 100644 index c9e381933..000000000 --- a/libc/nt/kernel32/EnumResourceTypesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumResourceTypesW,EnumResourceTypesW,334 diff --git a/libc/nt/kernel32/EnumSystemCodePagesW.S b/libc/nt/kernel32/EnumSystemCodePagesW.S deleted file mode 100644 index 26d32d8c6..000000000 --- a/libc/nt/kernel32/EnumSystemCodePagesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumSystemCodePagesW,EnumSystemCodePagesW,0 diff --git a/libc/nt/kernel32/EnumSystemFirmwareTables.S b/libc/nt/kernel32/EnumSystemFirmwareTables.S deleted file mode 100644 index 585574860..000000000 --- a/libc/nt/kernel32/EnumSystemFirmwareTables.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumSystemFirmwareTables,EnumSystemFirmwareTables,0 diff --git a/libc/nt/kernel32/EnumSystemGeoID.S b/libc/nt/kernel32/EnumSystemGeoID.S deleted file mode 100644 index 005f738fb..000000000 --- a/libc/nt/kernel32/EnumSystemGeoID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumSystemGeoID,EnumSystemGeoID,0 diff --git a/libc/nt/kernel32/EnumSystemGeoNames.S b/libc/nt/kernel32/EnumSystemGeoNames.S deleted file mode 100644 index 08bfe2cfd..000000000 --- a/libc/nt/kernel32/EnumSystemGeoNames.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumSystemGeoNames,EnumSystemGeoNames,318 diff --git a/libc/nt/kernel32/EnumSystemLanguageGroupsW.S b/libc/nt/kernel32/EnumSystemLanguageGroupsW.S deleted file mode 100644 index 795a847d2..000000000 --- a/libc/nt/kernel32/EnumSystemLanguageGroupsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumSystemLanguageGroupsW,EnumSystemLanguageGroupsW,0 diff --git a/libc/nt/kernel32/EnumSystemLocalesEx.S b/libc/nt/kernel32/EnumSystemLocalesEx.S deleted file mode 100644 index a322c4c2f..000000000 --- a/libc/nt/kernel32/EnumSystemLocalesEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumSystemLocalesEx,EnumSystemLocalesEx,0 diff --git a/libc/nt/kernel32/EnumSystemLocalesW.S b/libc/nt/kernel32/EnumSystemLocalesW.S deleted file mode 100644 index 347bf5c59..000000000 --- a/libc/nt/kernel32/EnumSystemLocalesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumSystemLocalesW,EnumSystemLocalesW,0 diff --git a/libc/nt/kernel32/EnumTimeFormatsEx.S b/libc/nt/kernel32/EnumTimeFormatsEx.S deleted file mode 100644 index 47621df80..000000000 --- a/libc/nt/kernel32/EnumTimeFormatsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumTimeFormatsEx,EnumTimeFormatsEx,0 diff --git a/libc/nt/kernel32/EnumTimeFormatsW.S b/libc/nt/kernel32/EnumTimeFormatsW.S deleted file mode 100644 index d46e4da99..000000000 --- a/libc/nt/kernel32/EnumTimeFormatsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumTimeFormatsW,EnumTimeFormatsW,0 diff --git a/libc/nt/kernel32/EnumUILanguagesW.S b/libc/nt/kernel32/EnumUILanguagesW.S deleted file mode 100644 index 69c9c97bf..000000000 --- a/libc/nt/kernel32/EnumUILanguagesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumUILanguagesW,EnumUILanguagesW,0 diff --git a/libc/nt/kernel32/EnumerateLocalComputerNamesW.S b/libc/nt/kernel32/EnumerateLocalComputerNamesW.S deleted file mode 100644 index 02c142b14..000000000 --- a/libc/nt/kernel32/EnumerateLocalComputerNamesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EnumerateLocalComputerNamesW,EnumerateLocalComputerNamesW,351 diff --git a/libc/nt/kernel32/EraseTape.S b/libc/nt/kernel32/EraseTape.S deleted file mode 100644 index 441b67af7..000000000 --- a/libc/nt/kernel32/EraseTape.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EraseTape,EraseTape,352 diff --git a/libc/nt/kernel32/EscapeCommFunction.S b/libc/nt/kernel32/EscapeCommFunction.S deleted file mode 100644 index 862b55591..000000000 --- a/libc/nt/kernel32/EscapeCommFunction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_EscapeCommFunction,EscapeCommFunction,0 diff --git a/libc/nt/kernel32/ExecuteUmsThread.S b/libc/nt/kernel32/ExecuteUmsThread.S deleted file mode 100644 index 71fb9e71d..000000000 --- a/libc/nt/kernel32/ExecuteUmsThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ExecuteUmsThread,ExecuteUmsThread,354 diff --git a/libc/nt/kernel32/ExitProcess.S b/libc/nt/kernel32/ExitProcess.S index 1b3757fbb..8178a3d9a 100644 --- a/libc/nt/kernel32/ExitProcess.S +++ b/libc/nt/kernel32/ExitProcess.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ExitProcess,ExitProcess,0 +.imp kernel32,__imp_ExitProcess,ExitProcess .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ExitThread.S b/libc/nt/kernel32/ExitThread.S index 011901e67..010e481b5 100644 --- a/libc/nt/kernel32/ExitThread.S +++ b/libc/nt/kernel32/ExitThread.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ExitThread,ExitThread,0 +.imp kernel32,__imp_ExitThread,ExitThread .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ExitVDM.S b/libc/nt/kernel32/ExitVDM.S deleted file mode 100644 index b778f8f2c..000000000 --- a/libc/nt/kernel32/ExitVDM.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ExitVDM,ExitVDM,357 diff --git a/libc/nt/kernel32/ExpandEnvironmentStringsW.S b/libc/nt/kernel32/ExpandEnvironmentStringsW.S deleted file mode 100644 index c329cce2e..000000000 --- a/libc/nt/kernel32/ExpandEnvironmentStringsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ExpandEnvironmentStringsW,ExpandEnvironmentStringsW,0 diff --git a/libc/nt/kernel32/FatalAppExitW.S b/libc/nt/kernel32/FatalAppExitW.S deleted file mode 100644 index b1598436c..000000000 --- a/libc/nt/kernel32/FatalAppExitW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FatalAppExitW,FatalAppExitW,0 diff --git a/libc/nt/kernel32/FatalExit.S b/libc/nt/kernel32/FatalExit.S index 0ca93895b..a6447503e 100644 --- a/libc/nt/kernel32/FatalExit.S +++ b/libc/nt/kernel32/FatalExit.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FatalExit,FatalExit,364 +.imp kernel32,__imp_FatalExit,FatalExit .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FileTimeToDosDateTime.S b/libc/nt/kernel32/FileTimeToDosDateTime.S deleted file mode 100644 index 154659af8..000000000 --- a/libc/nt/kernel32/FileTimeToDosDateTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FileTimeToDosDateTime,FileTimeToDosDateTime,365 diff --git a/libc/nt/kernel32/FileTimeToLocalFileTime.S b/libc/nt/kernel32/FileTimeToLocalFileTime.S deleted file mode 100644 index a29671adf..000000000 --- a/libc/nt/kernel32/FileTimeToLocalFileTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FileTimeToLocalFileTime,FileTimeToLocalFileTime,0 diff --git a/libc/nt/kernel32/FileTimeToSystemTime.S b/libc/nt/kernel32/FileTimeToSystemTime.S deleted file mode 100644 index 8843caf93..000000000 --- a/libc/nt/kernel32/FileTimeToSystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FileTimeToSystemTime,FileTimeToSystemTime,0 diff --git a/libc/nt/kernel32/FillConsoleOutputAttribute.S b/libc/nt/kernel32/FillConsoleOutputAttribute.S index 2dd55c786..c203d953b 100644 --- a/libc/nt/kernel32/FillConsoleOutputAttribute.S +++ b/libc/nt/kernel32/FillConsoleOutputAttribute.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FillConsoleOutputAttribute,FillConsoleOutputAttribute,0 +.imp kernel32,__imp_FillConsoleOutputAttribute,FillConsoleOutputAttribute .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FillConsoleOutputCharacterW.S b/libc/nt/kernel32/FillConsoleOutputCharacterW.S index 759cf7e82..fd6d0506a 100644 --- a/libc/nt/kernel32/FillConsoleOutputCharacterW.S +++ b/libc/nt/kernel32/FillConsoleOutputCharacterW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FillConsoleOutputCharacterW,FillConsoleOutputCharacterW,0 +.imp kernel32,__imp_FillConsoleOutputCharacterW,FillConsoleOutputCharacterW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FindActCtxSectionGuid.S b/libc/nt/kernel32/FindActCtxSectionGuid.S deleted file mode 100644 index 36bd7374d..000000000 --- a/libc/nt/kernel32/FindActCtxSectionGuid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindActCtxSectionGuid,FindActCtxSectionGuid,0 diff --git a/libc/nt/kernel32/FindActCtxSectionGuidWorker.S b/libc/nt/kernel32/FindActCtxSectionGuidWorker.S deleted file mode 100644 index 26e672c16..000000000 --- a/libc/nt/kernel32/FindActCtxSectionGuidWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindActCtxSectionGuidWorker,FindActCtxSectionGuidWorker,372 diff --git a/libc/nt/kernel32/FindActCtxSectionStringW.S b/libc/nt/kernel32/FindActCtxSectionStringW.S deleted file mode 100644 index 6d2f2f10a..000000000 --- a/libc/nt/kernel32/FindActCtxSectionStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindActCtxSectionStringW,FindActCtxSectionStringW,0 diff --git a/libc/nt/kernel32/FindActCtxSectionStringWWorker.S b/libc/nt/kernel32/FindActCtxSectionStringWWorker.S deleted file mode 100644 index 2dca88e5d..000000000 --- a/libc/nt/kernel32/FindActCtxSectionStringWWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindActCtxSectionStringWWorker,FindActCtxSectionStringWWorker,375 diff --git a/libc/nt/kernel32/FindAtomW.S b/libc/nt/kernel32/FindAtomW.S deleted file mode 100644 index 8969fef38..000000000 --- a/libc/nt/kernel32/FindAtomW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindAtomW,FindAtomW,377 diff --git a/libc/nt/kernel32/FindClose.S b/libc/nt/kernel32/FindClose.S index 61a632c07..1a9fe2b65 100644 --- a/libc/nt/kernel32/FindClose.S +++ b/libc/nt/kernel32/FindClose.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FindClose,FindClose,0 +.imp kernel32,__imp_FindClose,FindClose .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FindCloseChangeNotification.S b/libc/nt/kernel32/FindCloseChangeNotification.S deleted file mode 100644 index 23a070373..000000000 --- a/libc/nt/kernel32/FindCloseChangeNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindCloseChangeNotification,FindCloseChangeNotification,0 diff --git a/libc/nt/kernel32/FindFirstChangeNotificationW.S b/libc/nt/kernel32/FindFirstChangeNotificationW.S deleted file mode 100644 index a725c285a..000000000 --- a/libc/nt/kernel32/FindFirstChangeNotificationW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstChangeNotificationW,FindFirstChangeNotificationW,0 diff --git a/libc/nt/kernel32/FindFirstFileExW.S b/libc/nt/kernel32/FindFirstFileExW.S index b9195c6dc..1f0034069 100644 --- a/libc/nt/kernel32/FindFirstFileExW.S +++ b/libc/nt/kernel32/FindFirstFileExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstFileExW,FindFirstFileExW,0 +.imp kernel32,__imp_FindFirstFileExW,FindFirstFileExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FindFirstFileNameTransactedW.S b/libc/nt/kernel32/FindFirstFileNameTransactedW.S deleted file mode 100644 index cdf154bca..000000000 --- a/libc/nt/kernel32/FindFirstFileNameTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstFileNameTransactedW,FindFirstFileNameTransactedW,385 diff --git a/libc/nt/kernel32/FindFirstFileNameW.S b/libc/nt/kernel32/FindFirstFileNameW.S deleted file mode 100644 index adf5fad27..000000000 --- a/libc/nt/kernel32/FindFirstFileNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstFileNameW,FindFirstFileNameW,0 diff --git a/libc/nt/kernel32/FindFirstFileTransactedW.S b/libc/nt/kernel32/FindFirstFileTransactedW.S deleted file mode 100644 index c10af922e..000000000 --- a/libc/nt/kernel32/FindFirstFileTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstFileTransactedW,FindFirstFileTransactedW,388 diff --git a/libc/nt/kernel32/FindFirstFileW.S b/libc/nt/kernel32/FindFirstFileW.S index 376173cc1..496c420ed 100644 --- a/libc/nt/kernel32/FindFirstFileW.S +++ b/libc/nt/kernel32/FindFirstFileW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstFileW,FindFirstFileW,0 +.imp kernel32,__imp_FindFirstFileW,FindFirstFileW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FindFirstStreamTransactedW.S b/libc/nt/kernel32/FindFirstStreamTransactedW.S deleted file mode 100644 index a1eb22146..000000000 --- a/libc/nt/kernel32/FindFirstStreamTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstStreamTransactedW,FindFirstStreamTransactedW,390 diff --git a/libc/nt/kernel32/FindFirstStreamW.S b/libc/nt/kernel32/FindFirstStreamW.S deleted file mode 100644 index e1bd1e072..000000000 --- a/libc/nt/kernel32/FindFirstStreamW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstStreamW,FindFirstStreamW,0 diff --git a/libc/nt/kernel32/FindFirstVolumeMountPointW.S b/libc/nt/kernel32/FindFirstVolumeMountPointW.S deleted file mode 100644 index 1f6a12ace..000000000 --- a/libc/nt/kernel32/FindFirstVolumeMountPointW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstVolumeMountPointW,FindFirstVolumeMountPointW,394 diff --git a/libc/nt/kernel32/FindFirstVolumeW.S b/libc/nt/kernel32/FindFirstVolumeW.S index a8e3c4eef..159805bb3 100644 --- a/libc/nt/kernel32/FindFirstVolumeW.S +++ b/libc/nt/kernel32/FindFirstVolumeW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FindFirstVolumeW,FindFirstVolumeW,0 +.imp kernel32,__imp_FindFirstVolumeW,FindFirstVolumeW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FindNLSString.S b/libc/nt/kernel32/FindNLSString.S deleted file mode 100644 index 2fd135a94..000000000 --- a/libc/nt/kernel32/FindNLSString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindNLSString,FindNLSString,0 diff --git a/libc/nt/kernel32/FindNLSStringEx.S b/libc/nt/kernel32/FindNLSStringEx.S deleted file mode 100644 index f46989bf7..000000000 --- a/libc/nt/kernel32/FindNLSStringEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindNLSStringEx,FindNLSStringEx,0 diff --git a/libc/nt/kernel32/FindNextChangeNotification.S b/libc/nt/kernel32/FindNextChangeNotification.S deleted file mode 100644 index 45d0d8442..000000000 --- a/libc/nt/kernel32/FindNextChangeNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindNextChangeNotification,FindNextChangeNotification,0 diff --git a/libc/nt/kernel32/FindNextFileNameW.S b/libc/nt/kernel32/FindNextFileNameW.S deleted file mode 100644 index 256a9ab2c..000000000 --- a/libc/nt/kernel32/FindNextFileNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindNextFileNameW,FindNextFileNameW,0 diff --git a/libc/nt/kernel32/FindNextFileW.S b/libc/nt/kernel32/FindNextFileW.S index e82b3efcd..a9755c734 100644 --- a/libc/nt/kernel32/FindNextFileW.S +++ b/libc/nt/kernel32/FindNextFileW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FindNextFileW,FindNextFileW,0 +.imp kernel32,__imp_FindNextFileW,FindNextFileW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FindNextStreamW.S b/libc/nt/kernel32/FindNextStreamW.S deleted file mode 100644 index 0d07b62a7..000000000 --- a/libc/nt/kernel32/FindNextStreamW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindNextStreamW,FindNextStreamW,0 diff --git a/libc/nt/kernel32/FindNextVolumeMountPointW.S b/libc/nt/kernel32/FindNextVolumeMountPointW.S deleted file mode 100644 index 98df0065f..000000000 --- a/libc/nt/kernel32/FindNextVolumeMountPointW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindNextVolumeMountPointW,FindNextVolumeMountPointW,405 diff --git a/libc/nt/kernel32/FindNextVolumeW.S b/libc/nt/kernel32/FindNextVolumeW.S index 08c4c2e9d..953e8f48a 100644 --- a/libc/nt/kernel32/FindNextVolumeW.S +++ b/libc/nt/kernel32/FindNextVolumeW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FindNextVolumeW,FindNextVolumeW,0 +.imp kernel32,__imp_FindNextVolumeW,FindNextVolumeW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FindPackagesByPackageFamily.S b/libc/nt/kernel32/FindPackagesByPackageFamily.S deleted file mode 100644 index 47431871f..000000000 --- a/libc/nt/kernel32/FindPackagesByPackageFamily.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindPackagesByPackageFamily,FindPackagesByPackageFamily,0 diff --git a/libc/nt/kernel32/FindResourceExW.S b/libc/nt/kernel32/FindResourceExW.S deleted file mode 100644 index a5ef43f9c..000000000 --- a/libc/nt/kernel32/FindResourceExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindResourceExW,FindResourceExW,0 diff --git a/libc/nt/kernel32/FindResourceW.S b/libc/nt/kernel32/FindResourceW.S deleted file mode 100644 index 94a10213b..000000000 --- a/libc/nt/kernel32/FindResourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindResourceW,FindResourceW,0 diff --git a/libc/nt/kernel32/FindStringOrdinal.S b/libc/nt/kernel32/FindStringOrdinal.S deleted file mode 100644 index 6534d6618..000000000 --- a/libc/nt/kernel32/FindStringOrdinal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindStringOrdinal,FindStringOrdinal,0 diff --git a/libc/nt/kernel32/FindVolumeClose.S b/libc/nt/kernel32/FindVolumeClose.S index 3f96b3542..1ed2789ac 100644 --- a/libc/nt/kernel32/FindVolumeClose.S +++ b/libc/nt/kernel32/FindVolumeClose.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FindVolumeClose,FindVolumeClose,0 +.imp kernel32,__imp_FindVolumeClose,FindVolumeClose .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FindVolumeMountPointClose.S b/libc/nt/kernel32/FindVolumeMountPointClose.S deleted file mode 100644 index fa65dea6f..000000000 --- a/libc/nt/kernel32/FindVolumeMountPointClose.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FindVolumeMountPointClose,FindVolumeMountPointClose,414 diff --git a/libc/nt/kernel32/FlsAlloc.S b/libc/nt/kernel32/FlsAlloc.S deleted file mode 100644 index 9b3fc2187..000000000 --- a/libc/nt/kernel32/FlsAlloc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FlsAlloc,FlsAlloc,0 diff --git a/libc/nt/kernel32/FlsFree.S b/libc/nt/kernel32/FlsFree.S deleted file mode 100644 index 4bc4b0cbf..000000000 --- a/libc/nt/kernel32/FlsFree.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FlsFree,FlsFree,0 diff --git a/libc/nt/kernel32/FlsGetValue.S b/libc/nt/kernel32/FlsGetValue.S deleted file mode 100644 index db607fb23..000000000 --- a/libc/nt/kernel32/FlsGetValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FlsGetValue,FlsGetValue,0 diff --git a/libc/nt/kernel32/FlsSetValue.S b/libc/nt/kernel32/FlsSetValue.S deleted file mode 100644 index 4cebcf71e..000000000 --- a/libc/nt/kernel32/FlsSetValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FlsSetValue,FlsSetValue,0 diff --git a/libc/nt/kernel32/FlushConsoleInputBuffer.S b/libc/nt/kernel32/FlushConsoleInputBuffer.S index 784c14e5d..e540831e3 100644 --- a/libc/nt/kernel32/FlushConsoleInputBuffer.S +++ b/libc/nt/kernel32/FlushConsoleInputBuffer.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FlushConsoleInputBuffer,FlushConsoleInputBuffer,0 +.imp kernel32,__imp_FlushConsoleInputBuffer,FlushConsoleInputBuffer .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FlushFileBuffers.S b/libc/nt/kernel32/FlushFileBuffers.S index 06e3b999d..1019056b8 100644 --- a/libc/nt/kernel32/FlushFileBuffers.S +++ b/libc/nt/kernel32/FlushFileBuffers.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FlushFileBuffers,FlushFileBuffers,0 +.imp kernel32,__imp_FlushFileBuffers,FlushFileBuffers .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FlushInstructionCache.S b/libc/nt/kernel32/FlushInstructionCache.S deleted file mode 100644 index 53992bb9d..000000000 --- a/libc/nt/kernel32/FlushInstructionCache.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FlushInstructionCache,FlushInstructionCache,0 diff --git a/libc/nt/kernel32/FlushViewOfFile.S b/libc/nt/kernel32/FlushViewOfFile.S index cedcca9b1..7f4dc31cd 100644 --- a/libc/nt/kernel32/FlushViewOfFile.S +++ b/libc/nt/kernel32/FlushViewOfFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FlushViewOfFile,FlushViewOfFile,0 +.imp kernel32,__imp_FlushViewOfFile,FlushViewOfFile .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FoldStringW.S b/libc/nt/kernel32/FoldStringW.S deleted file mode 100644 index 1d20fb5a0..000000000 --- a/libc/nt/kernel32/FoldStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FoldStringW,FoldStringW,0 diff --git a/libc/nt/kernel32/FormatApplicationUserModelId.S b/libc/nt/kernel32/FormatApplicationUserModelId.S deleted file mode 100644 index 202e8a606..000000000 --- a/libc/nt/kernel32/FormatApplicationUserModelId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FormatApplicationUserModelId,FormatApplicationUserModelId,0 diff --git a/libc/nt/kernel32/FormatMessageW.S b/libc/nt/kernel32/FormatMessageW.S index 64fc7b8dc..acf297a03 100644 --- a/libc/nt/kernel32/FormatMessageW.S +++ b/libc/nt/kernel32/FormatMessageW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FormatMessageW,FormatMessageW,0 +.imp kernel32,__imp_FormatMessageW,FormatMessageW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FreeConsole.S b/libc/nt/kernel32/FreeConsole.S index d9476e7c0..065558a66 100644 --- a/libc/nt/kernel32/FreeConsole.S +++ b/libc/nt/kernel32/FreeConsole.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FreeConsole,FreeConsole,0 +.imp kernel32,__imp_FreeConsole,FreeConsole .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FreeEnvironmentStringsW.S b/libc/nt/kernel32/FreeEnvironmentStringsW.S index 60c6e5ed7..1530ba325 100644 --- a/libc/nt/kernel32/FreeEnvironmentStringsW.S +++ b/libc/nt/kernel32/FreeEnvironmentStringsW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FreeEnvironmentStringsW,FreeEnvironmentStringsW,0 +.imp kernel32,__imp_FreeEnvironmentStringsW,FreeEnvironmentStringsW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FreeLibrary.S b/libc/nt/kernel32/FreeLibrary.S index ee8444a93..9a51b3d77 100644 --- a/libc/nt/kernel32/FreeLibrary.S +++ b/libc/nt/kernel32/FreeLibrary.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FreeLibrary,FreeLibrary,0 +.imp kernel32,__imp_FreeLibrary,FreeLibrary .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FreeLibraryAndExitThread.S b/libc/nt/kernel32/FreeLibraryAndExitThread.S deleted file mode 100644 index b3139c916..000000000 --- a/libc/nt/kernel32/FreeLibraryAndExitThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FreeLibraryAndExitThread,FreeLibraryAndExitThread,0 diff --git a/libc/nt/kernel32/FreeMemoryJobObject.S b/libc/nt/kernel32/FreeMemoryJobObject.S deleted file mode 100644 index 45a87322f..000000000 --- a/libc/nt/kernel32/FreeMemoryJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FreeMemoryJobObject,FreeMemoryJobObject,435 diff --git a/libc/nt/kernel32/FreeResource.S b/libc/nt/kernel32/FreeResource.S index 004cdc875..92d1d8a54 100644 --- a/libc/nt/kernel32/FreeResource.S +++ b/libc/nt/kernel32/FreeResource.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_FreeResource,FreeResource,0 +.imp kernel32,__imp_FreeResource,FreeResource .text.windows .ftrace1 diff --git a/libc/nt/kernel32/FreeUserPhysicalPages.S b/libc/nt/kernel32/FreeUserPhysicalPages.S deleted file mode 100644 index 40f227b9a..000000000 --- a/libc/nt/kernel32/FreeUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_FreeUserPhysicalPages,FreeUserPhysicalPages,0 diff --git a/libc/nt/kernel32/GenerateConsoleCtrlEvent.S b/libc/nt/kernel32/GenerateConsoleCtrlEvent.S index 71a56c24f..141d93398 100644 --- a/libc/nt/kernel32/GenerateConsoleCtrlEvent.S +++ b/libc/nt/kernel32/GenerateConsoleCtrlEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GenerateConsoleCtrlEvent,GenerateConsoleCtrlEvent,0 +.imp kernel32,__imp_GenerateConsoleCtrlEvent,GenerateConsoleCtrlEvent .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetACP.S b/libc/nt/kernel32/GetACP.S deleted file mode 100644 index 37f1c570c..000000000 --- a/libc/nt/kernel32/GetACP.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetACP,GetACP,0 diff --git a/libc/nt/kernel32/GetActiveProcessorCount.S b/libc/nt/kernel32/GetActiveProcessorCount.S deleted file mode 100644 index 8539b7fbf..000000000 --- a/libc/nt/kernel32/GetActiveProcessorCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetActiveProcessorCount,GetActiveProcessorCount,440 diff --git a/libc/nt/kernel32/GetActiveProcessorGroupCount.S b/libc/nt/kernel32/GetActiveProcessorGroupCount.S deleted file mode 100644 index 8bc5a74a4..000000000 --- a/libc/nt/kernel32/GetActiveProcessorGroupCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetActiveProcessorGroupCount,GetActiveProcessorGroupCount,441 diff --git a/libc/nt/kernel32/GetAppContainerNamedObjectPath.S b/libc/nt/kernel32/GetAppContainerNamedObjectPath.S deleted file mode 100644 index 968c4f4d8..000000000 --- a/libc/nt/kernel32/GetAppContainerNamedObjectPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetAppContainerNamedObjectPath,GetAppContainerNamedObjectPath,0 diff --git a/libc/nt/kernel32/GetApplicationRecoveryCallback.S b/libc/nt/kernel32/GetApplicationRecoveryCallback.S deleted file mode 100644 index 0df851cc0..000000000 --- a/libc/nt/kernel32/GetApplicationRecoveryCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetApplicationRecoveryCallback,GetApplicationRecoveryCallback,0 diff --git a/libc/nt/kernel32/GetApplicationRecoveryCallbackWorker.S b/libc/nt/kernel32/GetApplicationRecoveryCallbackWorker.S deleted file mode 100644 index 00c57fb7a..000000000 --- a/libc/nt/kernel32/GetApplicationRecoveryCallbackWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetApplicationRecoveryCallbackWorker,GetApplicationRecoveryCallbackWorker,445 diff --git a/libc/nt/kernel32/GetApplicationRestartSettings.S b/libc/nt/kernel32/GetApplicationRestartSettings.S deleted file mode 100644 index a1f068e9b..000000000 --- a/libc/nt/kernel32/GetApplicationRestartSettings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetApplicationRestartSettings,GetApplicationRestartSettings,0 diff --git a/libc/nt/kernel32/GetApplicationRestartSettingsWorker.S b/libc/nt/kernel32/GetApplicationRestartSettingsWorker.S deleted file mode 100644 index 2b1906f56..000000000 --- a/libc/nt/kernel32/GetApplicationRestartSettingsWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetApplicationRestartSettingsWorker,GetApplicationRestartSettingsWorker,447 diff --git a/libc/nt/kernel32/GetApplicationUserModelId.S b/libc/nt/kernel32/GetApplicationUserModelId.S deleted file mode 100644 index a5e32df17..000000000 --- a/libc/nt/kernel32/GetApplicationUserModelId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetApplicationUserModelId,GetApplicationUserModelId,0 diff --git a/libc/nt/kernel32/GetAtomNameW.S b/libc/nt/kernel32/GetAtomNameW.S deleted file mode 100644 index 3b85b47bd..000000000 --- a/libc/nt/kernel32/GetAtomNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetAtomNameW,GetAtomNameW,450 diff --git a/libc/nt/kernel32/GetBinaryTypeW.S b/libc/nt/kernel32/GetBinaryTypeW.S deleted file mode 100644 index f31c49bd0..000000000 --- a/libc/nt/kernel32/GetBinaryTypeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetBinaryTypeW,GetBinaryTypeW,453 diff --git a/libc/nt/kernel32/GetCPInfo.S b/libc/nt/kernel32/GetCPInfo.S deleted file mode 100644 index 00a183001..000000000 --- a/libc/nt/kernel32/GetCPInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCPInfo,GetCPInfo,0 diff --git a/libc/nt/kernel32/GetCPInfoExW.S b/libc/nt/kernel32/GetCPInfoExW.S deleted file mode 100644 index 7f9cf1975..000000000 --- a/libc/nt/kernel32/GetCPInfoExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCPInfoExW,GetCPInfoExW,0 diff --git a/libc/nt/kernel32/GetCalendarDateFormat.S b/libc/nt/kernel32/GetCalendarDateFormat.S deleted file mode 100644 index 12846fee1..000000000 --- a/libc/nt/kernel32/GetCalendarDateFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarDateFormat,GetCalendarDateFormat,458 diff --git a/libc/nt/kernel32/GetCalendarDateFormatEx.S b/libc/nt/kernel32/GetCalendarDateFormatEx.S deleted file mode 100644 index 7f351ab01..000000000 --- a/libc/nt/kernel32/GetCalendarDateFormatEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarDateFormatEx,GetCalendarDateFormatEx,459 diff --git a/libc/nt/kernel32/GetCalendarDaysInMonth.S b/libc/nt/kernel32/GetCalendarDaysInMonth.S deleted file mode 100644 index ba5483eb1..000000000 --- a/libc/nt/kernel32/GetCalendarDaysInMonth.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarDaysInMonth,GetCalendarDaysInMonth,460 diff --git a/libc/nt/kernel32/GetCalendarDifferenceInDays.S b/libc/nt/kernel32/GetCalendarDifferenceInDays.S deleted file mode 100644 index 7736bfd43..000000000 --- a/libc/nt/kernel32/GetCalendarDifferenceInDays.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarDifferenceInDays,GetCalendarDifferenceInDays,461 diff --git a/libc/nt/kernel32/GetCalendarInfoEx.S b/libc/nt/kernel32/GetCalendarInfoEx.S deleted file mode 100644 index da5693963..000000000 --- a/libc/nt/kernel32/GetCalendarInfoEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarInfoEx,GetCalendarInfoEx,0 diff --git a/libc/nt/kernel32/GetCalendarInfoW.S b/libc/nt/kernel32/GetCalendarInfoW.S deleted file mode 100644 index 043d45eac..000000000 --- a/libc/nt/kernel32/GetCalendarInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarInfoW,GetCalendarInfoW,0 diff --git a/libc/nt/kernel32/GetCalendarMonthsInYear.S b/libc/nt/kernel32/GetCalendarMonthsInYear.S deleted file mode 100644 index f0cb805c4..000000000 --- a/libc/nt/kernel32/GetCalendarMonthsInYear.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarMonthsInYear,GetCalendarMonthsInYear,465 diff --git a/libc/nt/kernel32/GetCalendarSupportedDateRange.S b/libc/nt/kernel32/GetCalendarSupportedDateRange.S deleted file mode 100644 index 85b4cf365..000000000 --- a/libc/nt/kernel32/GetCalendarSupportedDateRange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarSupportedDateRange,GetCalendarSupportedDateRange,466 diff --git a/libc/nt/kernel32/GetCalendarWeekNumber.S b/libc/nt/kernel32/GetCalendarWeekNumber.S deleted file mode 100644 index 7a8df8230..000000000 --- a/libc/nt/kernel32/GetCalendarWeekNumber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCalendarWeekNumber,GetCalendarWeekNumber,467 diff --git a/libc/nt/kernel32/GetComPlusPackageInstallStatus.S b/libc/nt/kernel32/GetComPlusPackageInstallStatus.S deleted file mode 100644 index 740b2e79a..000000000 --- a/libc/nt/kernel32/GetComPlusPackageInstallStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetComPlusPackageInstallStatus,GetComPlusPackageInstallStatus,468 diff --git a/libc/nt/kernel32/GetCommConfig.S b/libc/nt/kernel32/GetCommConfig.S deleted file mode 100644 index 83a4aec7e..000000000 --- a/libc/nt/kernel32/GetCommConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCommConfig,GetCommConfig,0 diff --git a/libc/nt/kernel32/GetCommMask.S b/libc/nt/kernel32/GetCommMask.S deleted file mode 100644 index e2e6b46e8..000000000 --- a/libc/nt/kernel32/GetCommMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCommMask,GetCommMask,0 diff --git a/libc/nt/kernel32/GetCommModemStatus.S b/libc/nt/kernel32/GetCommModemStatus.S deleted file mode 100644 index 00eb31303..000000000 --- a/libc/nt/kernel32/GetCommModemStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCommModemStatus,GetCommModemStatus,0 diff --git a/libc/nt/kernel32/GetCommProperties.S b/libc/nt/kernel32/GetCommProperties.S deleted file mode 100644 index 67fb31587..000000000 --- a/libc/nt/kernel32/GetCommProperties.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCommProperties,GetCommProperties,0 diff --git a/libc/nt/kernel32/GetCommState.S b/libc/nt/kernel32/GetCommState.S deleted file mode 100644 index aebb4e506..000000000 --- a/libc/nt/kernel32/GetCommState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCommState,GetCommState,0 diff --git a/libc/nt/kernel32/GetCommTimeouts.S b/libc/nt/kernel32/GetCommTimeouts.S deleted file mode 100644 index 5dae036c0..000000000 --- a/libc/nt/kernel32/GetCommTimeouts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCommTimeouts,GetCommTimeouts,0 diff --git a/libc/nt/kernel32/GetCommandLineW.S b/libc/nt/kernel32/GetCommandLineW.S index 933e18383..fba9cf257 100644 --- a/libc/nt/kernel32/GetCommandLineW.S +++ b/libc/nt/kernel32/GetCommandLineW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCommandLineW,GetCommandLineW,0 +.imp kernel32,__imp_GetCommandLineW,GetCommandLineW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetCompressedFileSizeTransactedW.S b/libc/nt/kernel32/GetCompressedFileSizeTransactedW.S deleted file mode 100644 index 20dcd0d2e..000000000 --- a/libc/nt/kernel32/GetCompressedFileSizeTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCompressedFileSizeTransactedW,GetCompressedFileSizeTransactedW,479 diff --git a/libc/nt/kernel32/GetCompressedFileSizeW.S b/libc/nt/kernel32/GetCompressedFileSizeW.S index 593bc8257..f2e936850 100644 --- a/libc/nt/kernel32/GetCompressedFileSizeW.S +++ b/libc/nt/kernel32/GetCompressedFileSizeW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCompressedFileSizeW,GetCompressedFileSizeW,0 +.imp kernel32,__imp_GetCompressedFileSizeW,GetCompressedFileSizeW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetComputerNameExW.S b/libc/nt/kernel32/GetComputerNameExW.S index bb5686dd1..c2a595bc7 100644 --- a/libc/nt/kernel32/GetComputerNameExW.S +++ b/libc/nt/kernel32/GetComputerNameExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetComputerNameExW,GetComputerNameExW,0 +.imp kernel32,__imp_GetComputerNameExW,GetComputerNameExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetComputerNameW.S b/libc/nt/kernel32/GetComputerNameW.S deleted file mode 100644 index a11898498..000000000 --- a/libc/nt/kernel32/GetComputerNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetComputerNameW,GetComputerNameW,484 diff --git a/libc/nt/kernel32/GetConsoleAliasExesLengthW.S b/libc/nt/kernel32/GetConsoleAliasExesLengthW.S deleted file mode 100644 index 347181980..000000000 --- a/libc/nt/kernel32/GetConsoleAliasExesLengthW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleAliasExesLengthW,GetConsoleAliasExesLengthW,0 diff --git a/libc/nt/kernel32/GetConsoleAliasExesW.S b/libc/nt/kernel32/GetConsoleAliasExesW.S deleted file mode 100644 index 2cc0d6f4d..000000000 --- a/libc/nt/kernel32/GetConsoleAliasExesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleAliasExesW,GetConsoleAliasExesW,0 diff --git a/libc/nt/kernel32/GetConsoleAliasW.S b/libc/nt/kernel32/GetConsoleAliasW.S deleted file mode 100644 index ad5d6de19..000000000 --- a/libc/nt/kernel32/GetConsoleAliasW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleAliasW,GetConsoleAliasW,0 diff --git a/libc/nt/kernel32/GetConsoleAliasesLengthW.S b/libc/nt/kernel32/GetConsoleAliasesLengthW.S deleted file mode 100644 index a8768e314..000000000 --- a/libc/nt/kernel32/GetConsoleAliasesLengthW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleAliasesLengthW,GetConsoleAliasesLengthW,0 diff --git a/libc/nt/kernel32/GetConsoleAliasesW.S b/libc/nt/kernel32/GetConsoleAliasesW.S deleted file mode 100644 index 409151c54..000000000 --- a/libc/nt/kernel32/GetConsoleAliasesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleAliasesW,GetConsoleAliasesW,0 diff --git a/libc/nt/kernel32/GetConsoleCP.S b/libc/nt/kernel32/GetConsoleCP.S index 4ec444e38..bc913bc1d 100644 --- a/libc/nt/kernel32/GetConsoleCP.S +++ b/libc/nt/kernel32/GetConsoleCP.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleCP,GetConsoleCP,0 +.imp kernel32,__imp_GetConsoleCP,GetConsoleCP .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetConsoleCharType.S b/libc/nt/kernel32/GetConsoleCharType.S deleted file mode 100644 index f90cb3e11..000000000 --- a/libc/nt/kernel32/GetConsoleCharType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleCharType,GetConsoleCharType,496 diff --git a/libc/nt/kernel32/GetConsoleCursorInfo.S b/libc/nt/kernel32/GetConsoleCursorInfo.S index a24dd2b2c..bd69dc160 100644 --- a/libc/nt/kernel32/GetConsoleCursorInfo.S +++ b/libc/nt/kernel32/GetConsoleCursorInfo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleCursorInfo,GetConsoleCursorInfo,0 +.imp kernel32,__imp_GetConsoleCursorInfo,GetConsoleCursorInfo .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetConsoleCursorMode.S b/libc/nt/kernel32/GetConsoleCursorMode.S deleted file mode 100644 index 458afd857..000000000 --- a/libc/nt/kernel32/GetConsoleCursorMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleCursorMode,GetConsoleCursorMode,502 diff --git a/libc/nt/kernel32/GetConsoleDisplayMode.S b/libc/nt/kernel32/GetConsoleDisplayMode.S deleted file mode 100644 index 1b886103f..000000000 --- a/libc/nt/kernel32/GetConsoleDisplayMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleDisplayMode,GetConsoleDisplayMode,0 diff --git a/libc/nt/kernel32/GetConsoleFontInfo.S b/libc/nt/kernel32/GetConsoleFontInfo.S deleted file mode 100644 index 5d22c4ec4..000000000 --- a/libc/nt/kernel32/GetConsoleFontInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleFontInfo,GetConsoleFontInfo,504 diff --git a/libc/nt/kernel32/GetConsoleFontSize.S b/libc/nt/kernel32/GetConsoleFontSize.S deleted file mode 100644 index aeb882971..000000000 --- a/libc/nt/kernel32/GetConsoleFontSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleFontSize,GetConsoleFontSize,0 diff --git a/libc/nt/kernel32/GetConsoleHardwareState.S b/libc/nt/kernel32/GetConsoleHardwareState.S deleted file mode 100644 index 8ca533268..000000000 --- a/libc/nt/kernel32/GetConsoleHardwareState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleHardwareState,GetConsoleHardwareState,506 diff --git a/libc/nt/kernel32/GetConsoleHistoryInfo.S b/libc/nt/kernel32/GetConsoleHistoryInfo.S deleted file mode 100644 index 9e816439b..000000000 --- a/libc/nt/kernel32/GetConsoleHistoryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleHistoryInfo,GetConsoleHistoryInfo,0 diff --git a/libc/nt/kernel32/GetConsoleInputWaitHandle.S b/libc/nt/kernel32/GetConsoleInputWaitHandle.S deleted file mode 100644 index 8c925c143..000000000 --- a/libc/nt/kernel32/GetConsoleInputWaitHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleInputWaitHandle,GetConsoleInputWaitHandle,510 diff --git a/libc/nt/kernel32/GetConsoleKeyboardLayoutNameW.S b/libc/nt/kernel32/GetConsoleKeyboardLayoutNameW.S deleted file mode 100644 index 28cb118d5..000000000 --- a/libc/nt/kernel32/GetConsoleKeyboardLayoutNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleKeyboardLayoutNameW,GetConsoleKeyboardLayoutNameW,512 diff --git a/libc/nt/kernel32/GetConsoleMode.S b/libc/nt/kernel32/GetConsoleMode.S index 4fd4090bd..0ea264b22 100644 --- a/libc/nt/kernel32/GetConsoleMode.S +++ b/libc/nt/kernel32/GetConsoleMode.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleMode,GetConsoleMode,0 +.imp kernel32,__imp_GetConsoleMode,GetConsoleMode .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetConsoleNlsMode.S b/libc/nt/kernel32/GetConsoleNlsMode.S deleted file mode 100644 index 548296fd5..000000000 --- a/libc/nt/kernel32/GetConsoleNlsMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleNlsMode,GetConsoleNlsMode,514 diff --git a/libc/nt/kernel32/GetConsoleOriginalTitleW.S b/libc/nt/kernel32/GetConsoleOriginalTitleW.S deleted file mode 100644 index 4f992f99c..000000000 --- a/libc/nt/kernel32/GetConsoleOriginalTitleW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleOriginalTitleW,GetConsoleOriginalTitleW,0 diff --git a/libc/nt/kernel32/GetConsoleOutputCP.S b/libc/nt/kernel32/GetConsoleOutputCP.S index 12e82efef..8f5f15873 100644 --- a/libc/nt/kernel32/GetConsoleOutputCP.S +++ b/libc/nt/kernel32/GetConsoleOutputCP.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleOutputCP,GetConsoleOutputCP,0 +.imp kernel32,__imp_GetConsoleOutputCP,GetConsoleOutputCP .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetConsoleProcessList.S b/libc/nt/kernel32/GetConsoleProcessList.S deleted file mode 100644 index b5962909f..000000000 --- a/libc/nt/kernel32/GetConsoleProcessList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleProcessList,GetConsoleProcessList,0 diff --git a/libc/nt/kernel32/GetConsoleScreenBufferInfo.S b/libc/nt/kernel32/GetConsoleScreenBufferInfo.S index 7cd58f42b..d9bd67a7e 100644 --- a/libc/nt/kernel32/GetConsoleScreenBufferInfo.S +++ b/libc/nt/kernel32/GetConsoleScreenBufferInfo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleScreenBufferInfo,GetConsoleScreenBufferInfo,0 +.imp kernel32,__imp_GetConsoleScreenBufferInfo,GetConsoleScreenBufferInfo .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetConsoleScreenBufferInfoEx.S b/libc/nt/kernel32/GetConsoleScreenBufferInfoEx.S index 5a1c7934b..84caa6220 100644 --- a/libc/nt/kernel32/GetConsoleScreenBufferInfoEx.S +++ b/libc/nt/kernel32/GetConsoleScreenBufferInfoEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleScreenBufferInfoEx,GetConsoleScreenBufferInfoEx,0 +.imp kernel32,__imp_GetConsoleScreenBufferInfoEx,GetConsoleScreenBufferInfoEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetConsoleSelectionInfo.S b/libc/nt/kernel32/GetConsoleSelectionInfo.S index 31c94bcb2..7cbd2092f 100644 --- a/libc/nt/kernel32/GetConsoleSelectionInfo.S +++ b/libc/nt/kernel32/GetConsoleSelectionInfo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleSelectionInfo,GetConsoleSelectionInfo,0 +.imp kernel32,__imp_GetConsoleSelectionInfo,GetConsoleSelectionInfo .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetConsoleTitleW.S b/libc/nt/kernel32/GetConsoleTitleW.S index b2b2f18db..a05f7482a 100644 --- a/libc/nt/kernel32/GetConsoleTitleW.S +++ b/libc/nt/kernel32/GetConsoleTitleW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleTitleW,GetConsoleTitleW,0 +.imp kernel32,__imp_GetConsoleTitleW,GetConsoleTitleW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetConsoleWindow.S b/libc/nt/kernel32/GetConsoleWindow.S index 4c6b9b45b..6dcad7b82 100644 --- a/libc/nt/kernel32/GetConsoleWindow.S +++ b/libc/nt/kernel32/GetConsoleWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetConsoleWindow,GetConsoleWindow,0 +.imp kernel32,__imp_GetConsoleWindow,GetConsoleWindow .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetCurrencyFormatEx.S b/libc/nt/kernel32/GetCurrencyFormatEx.S deleted file mode 100644 index c7af08007..000000000 --- a/libc/nt/kernel32/GetCurrencyFormatEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrencyFormatEx,GetCurrencyFormatEx,0 diff --git a/libc/nt/kernel32/GetCurrencyFormatW.S b/libc/nt/kernel32/GetCurrencyFormatW.S deleted file mode 100644 index 973c874bc..000000000 --- a/libc/nt/kernel32/GetCurrencyFormatW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrencyFormatW,GetCurrencyFormatW,0 diff --git a/libc/nt/kernel32/GetCurrentActCtx.S b/libc/nt/kernel32/GetCurrentActCtx.S deleted file mode 100644 index 2885a4fe3..000000000 --- a/libc/nt/kernel32/GetCurrentActCtx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentActCtx,GetCurrentActCtx,0 diff --git a/libc/nt/kernel32/GetCurrentActCtxWorker.S b/libc/nt/kernel32/GetCurrentActCtxWorker.S deleted file mode 100644 index 9e812c945..000000000 --- a/libc/nt/kernel32/GetCurrentActCtxWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentActCtxWorker,GetCurrentActCtxWorker,529 diff --git a/libc/nt/kernel32/GetCurrentApplicationUserModelId.S b/libc/nt/kernel32/GetCurrentApplicationUserModelId.S deleted file mode 100644 index 53e8f972e..000000000 --- a/libc/nt/kernel32/GetCurrentApplicationUserModelId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentApplicationUserModelId,GetCurrentApplicationUserModelId,0 diff --git a/libc/nt/kernel32/GetCurrentConsoleFont.S b/libc/nt/kernel32/GetCurrentConsoleFont.S deleted file mode 100644 index 6fca079db..000000000 --- a/libc/nt/kernel32/GetCurrentConsoleFont.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentConsoleFont,GetCurrentConsoleFont,0 diff --git a/libc/nt/kernel32/GetCurrentConsoleFontEx.S b/libc/nt/kernel32/GetCurrentConsoleFontEx.S deleted file mode 100644 index c8eadc27d..000000000 --- a/libc/nt/kernel32/GetCurrentConsoleFontEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentConsoleFontEx,GetCurrentConsoleFontEx,0 diff --git a/libc/nt/kernel32/GetCurrentDirectoryW.S b/libc/nt/kernel32/GetCurrentDirectoryW.S index bbdbeef92..ded8786d7 100644 --- a/libc/nt/kernel32/GetCurrentDirectoryW.S +++ b/libc/nt/kernel32/GetCurrentDirectoryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentDirectoryW,GetCurrentDirectoryW,0 +.imp kernel32,__imp_GetCurrentDirectoryW,GetCurrentDirectoryW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetCurrentPackageFamilyName.S b/libc/nt/kernel32/GetCurrentPackageFamilyName.S deleted file mode 100644 index 4452b9b33..000000000 --- a/libc/nt/kernel32/GetCurrentPackageFamilyName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentPackageFamilyName,GetCurrentPackageFamilyName,0 diff --git a/libc/nt/kernel32/GetCurrentPackageFullName.S b/libc/nt/kernel32/GetCurrentPackageFullName.S deleted file mode 100644 index 5dd194a7b..000000000 --- a/libc/nt/kernel32/GetCurrentPackageFullName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentPackageFullName,GetCurrentPackageFullName,0 diff --git a/libc/nt/kernel32/GetCurrentPackageId.S b/libc/nt/kernel32/GetCurrentPackageId.S deleted file mode 100644 index 9b065b072..000000000 --- a/libc/nt/kernel32/GetCurrentPackageId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentPackageId,GetCurrentPackageId,0 diff --git a/libc/nt/kernel32/GetCurrentPackageInfo.S b/libc/nt/kernel32/GetCurrentPackageInfo.S deleted file mode 100644 index dfd6710bd..000000000 --- a/libc/nt/kernel32/GetCurrentPackageInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentPackageInfo,GetCurrentPackageInfo,0 diff --git a/libc/nt/kernel32/GetCurrentPackagePath.S b/libc/nt/kernel32/GetCurrentPackagePath.S deleted file mode 100644 index 261b23754..000000000 --- a/libc/nt/kernel32/GetCurrentPackagePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentPackagePath,GetCurrentPackagePath,0 diff --git a/libc/nt/kernel32/GetCurrentProcess.S b/libc/nt/kernel32/GetCurrentProcess.S index a2a4f336a..381cbd3d1 100644 --- a/libc/nt/kernel32/GetCurrentProcess.S +++ b/libc/nt/kernel32/GetCurrentProcess.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentProcess,GetCurrentProcess,0 +.imp kernel32,__imp_GetCurrentProcess,GetCurrentProcess .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetCurrentProcessId.S b/libc/nt/kernel32/GetCurrentProcessId.S index 9a9946009..805231fa8 100644 --- a/libc/nt/kernel32/GetCurrentProcessId.S +++ b/libc/nt/kernel32/GetCurrentProcessId.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentProcessId,GetCurrentProcessId,0 +.imp kernel32,__imp_GetCurrentProcessId,GetCurrentProcessId .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetCurrentThread.S b/libc/nt/kernel32/GetCurrentThread.S index 5cbbeef61..e4916d249 100644 --- a/libc/nt/kernel32/GetCurrentThread.S +++ b/libc/nt/kernel32/GetCurrentThread.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentThread,GetCurrentThread,0 +.imp kernel32,__imp_GetCurrentThread,GetCurrentThread .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetCurrentThreadId.S b/libc/nt/kernel32/GetCurrentThreadId.S index 39ee7d2f6..7053df5f8 100644 --- a/libc/nt/kernel32/GetCurrentThreadId.S +++ b/libc/nt/kernel32/GetCurrentThreadId.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentThreadId,GetCurrentThreadId,0 +.imp kernel32,__imp_GetCurrentThreadId,GetCurrentThreadId .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetCurrentThreadStackLimits.S b/libc/nt/kernel32/GetCurrentThreadStackLimits.S deleted file mode 100644 index 315f720b3..000000000 --- a/libc/nt/kernel32/GetCurrentThreadStackLimits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentThreadStackLimits,GetCurrentThreadStackLimits,0 diff --git a/libc/nt/kernel32/GetCurrentUmsThread.S b/libc/nt/kernel32/GetCurrentUmsThread.S deleted file mode 100644 index bf038ab83..000000000 --- a/libc/nt/kernel32/GetCurrentUmsThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetCurrentUmsThread,GetCurrentUmsThread,547 diff --git a/libc/nt/kernel32/GetDateFormatAWorker.S b/libc/nt/kernel32/GetDateFormatAWorker.S deleted file mode 100644 index ea2f36f4c..000000000 --- a/libc/nt/kernel32/GetDateFormatAWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDateFormatAWorker,GetDateFormatAWorker,549 diff --git a/libc/nt/kernel32/GetDateFormatEx.S b/libc/nt/kernel32/GetDateFormatEx.S deleted file mode 100644 index d274665d8..000000000 --- a/libc/nt/kernel32/GetDateFormatEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDateFormatEx,GetDateFormatEx,0 diff --git a/libc/nt/kernel32/GetDateFormatW.S b/libc/nt/kernel32/GetDateFormatW.S deleted file mode 100644 index b65c055c7..000000000 --- a/libc/nt/kernel32/GetDateFormatW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDateFormatW,GetDateFormatW,0 diff --git a/libc/nt/kernel32/GetDateFormatWWorker.S b/libc/nt/kernel32/GetDateFormatWWorker.S deleted file mode 100644 index eb73b15ab..000000000 --- a/libc/nt/kernel32/GetDateFormatWWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDateFormatWWorker,GetDateFormatWWorker,552 diff --git a/libc/nt/kernel32/GetDefaultCommConfigW.S b/libc/nt/kernel32/GetDefaultCommConfigW.S deleted file mode 100644 index 203084c0b..000000000 --- a/libc/nt/kernel32/GetDefaultCommConfigW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDefaultCommConfigW,GetDefaultCommConfigW,554 diff --git a/libc/nt/kernel32/GetDevicePowerState.S b/libc/nt/kernel32/GetDevicePowerState.S deleted file mode 100644 index d3339c4ac..000000000 --- a/libc/nt/kernel32/GetDevicePowerState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDevicePowerState,GetDevicePowerState,555 diff --git a/libc/nt/kernel32/GetDiskFreeSpaceExW.S b/libc/nt/kernel32/GetDiskFreeSpaceExW.S deleted file mode 100644 index 3352acec0..000000000 --- a/libc/nt/kernel32/GetDiskFreeSpaceExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDiskFreeSpaceExW,GetDiskFreeSpaceExW,0 diff --git a/libc/nt/kernel32/GetDiskFreeSpaceW.S b/libc/nt/kernel32/GetDiskFreeSpaceW.S deleted file mode 100644 index 0567438f0..000000000 --- a/libc/nt/kernel32/GetDiskFreeSpaceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDiskFreeSpaceW,GetDiskFreeSpaceW,0 diff --git a/libc/nt/kernel32/GetDllDirectoryW.S b/libc/nt/kernel32/GetDllDirectoryW.S deleted file mode 100644 index e6260f32b..000000000 --- a/libc/nt/kernel32/GetDllDirectoryW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDllDirectoryW,GetDllDirectoryW,561 diff --git a/libc/nt/kernel32/GetDriveTypeW.S b/libc/nt/kernel32/GetDriveTypeW.S deleted file mode 100644 index 13764bcf1..000000000 --- a/libc/nt/kernel32/GetDriveTypeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDriveTypeW,GetDriveTypeW,0 diff --git a/libc/nt/kernel32/GetDurationFormat.S b/libc/nt/kernel32/GetDurationFormat.S deleted file mode 100644 index b2769825f..000000000 --- a/libc/nt/kernel32/GetDurationFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDurationFormat,GetDurationFormat,564 diff --git a/libc/nt/kernel32/GetDurationFormatEx.S b/libc/nt/kernel32/GetDurationFormatEx.S deleted file mode 100644 index 49613a81c..000000000 --- a/libc/nt/kernel32/GetDurationFormatEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDurationFormatEx,GetDurationFormatEx,0 diff --git a/libc/nt/kernel32/GetDynamicTimeZoneInformation.S b/libc/nt/kernel32/GetDynamicTimeZoneInformation.S deleted file mode 100644 index e781d49bb..000000000 --- a/libc/nt/kernel32/GetDynamicTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetDynamicTimeZoneInformation,GetDynamicTimeZoneInformation,0 diff --git a/libc/nt/kernel32/GetEnabledXStateFeatures.S b/libc/nt/kernel32/GetEnabledXStateFeatures.S deleted file mode 100644 index cb5f7e4aa..000000000 --- a/libc/nt/kernel32/GetEnabledXStateFeatures.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetEnabledXStateFeatures,GetEnabledXStateFeatures,0 diff --git a/libc/nt/kernel32/GetEncryptedFileVersionExt.S b/libc/nt/kernel32/GetEncryptedFileVersionExt.S deleted file mode 100644 index 20db1c336..000000000 --- a/libc/nt/kernel32/GetEncryptedFileVersionExt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetEncryptedFileVersionExt,GetEncryptedFileVersionExt,568 diff --git a/libc/nt/kernel32/GetEnvironmentStringsW.S b/libc/nt/kernel32/GetEnvironmentStringsW.S index 3bda6b67b..7755b6829 100644 --- a/libc/nt/kernel32/GetEnvironmentStringsW.S +++ b/libc/nt/kernel32/GetEnvironmentStringsW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetEnvironmentStringsW,GetEnvironmentStringsW,0 +.imp kernel32,__imp_GetEnvironmentStringsW,GetEnvironmentStringsW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetEnvironmentVariableW.S b/libc/nt/kernel32/GetEnvironmentVariableW.S index b41f22f90..45909f189 100644 --- a/libc/nt/kernel32/GetEnvironmentVariableW.S +++ b/libc/nt/kernel32/GetEnvironmentVariableW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetEnvironmentVariableW,GetEnvironmentVariableW,0 +.imp kernel32,__imp_GetEnvironmentVariableW,GetEnvironmentVariableW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetErrorMode.S b/libc/nt/kernel32/GetErrorMode.S deleted file mode 100644 index 4379c3aed..000000000 --- a/libc/nt/kernel32/GetErrorMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetErrorMode,GetErrorMode,0 diff --git a/libc/nt/kernel32/GetExitCodeProcess.S b/libc/nt/kernel32/GetExitCodeProcess.S index 60d6534d0..e83800416 100644 --- a/libc/nt/kernel32/GetExitCodeProcess.S +++ b/libc/nt/kernel32/GetExitCodeProcess.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetExitCodeProcess,GetExitCodeProcess,0 +.imp kernel32,__imp_GetExitCodeProcess,GetExitCodeProcess .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetExitCodeThread.S b/libc/nt/kernel32/GetExitCodeThread.S index 274d72a6b..6eb4bd7e7 100644 --- a/libc/nt/kernel32/GetExitCodeThread.S +++ b/libc/nt/kernel32/GetExitCodeThread.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetExitCodeThread,GetExitCodeThread,0 +.imp kernel32,__imp_GetExitCodeThread,GetExitCodeThread .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetExpandedNameW.S b/libc/nt/kernel32/GetExpandedNameW.S deleted file mode 100644 index 1f1847a24..000000000 --- a/libc/nt/kernel32/GetExpandedNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetExpandedNameW,GetExpandedNameW,579 diff --git a/libc/nt/kernel32/GetFileAttributesExW.S b/libc/nt/kernel32/GetFileAttributesExW.S index 379299947..45f718e41 100644 --- a/libc/nt/kernel32/GetFileAttributesExW.S +++ b/libc/nt/kernel32/GetFileAttributesExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileAttributesExW,GetFileAttributesExW,0 +.imp kernel32,__imp_GetFileAttributesExW,GetFileAttributesExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFileAttributesTransactedW.S b/libc/nt/kernel32/GetFileAttributesTransactedW.S deleted file mode 100644 index 27433e501..000000000 --- a/libc/nt/kernel32/GetFileAttributesTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileAttributesTransactedW,GetFileAttributesTransactedW,584 diff --git a/libc/nt/kernel32/GetFileAttributesW.S b/libc/nt/kernel32/GetFileAttributesW.S index b41297c4a..c0e9c952b 100644 --- a/libc/nt/kernel32/GetFileAttributesW.S +++ b/libc/nt/kernel32/GetFileAttributesW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileAttributesW,GetFileAttributesW,0 +.imp kernel32,__imp_GetFileAttributesW,GetFileAttributesW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFileBandwidthReservation.S b/libc/nt/kernel32/GetFileBandwidthReservation.S deleted file mode 100644 index 4d445578c..000000000 --- a/libc/nt/kernel32/GetFileBandwidthReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileBandwidthReservation,GetFileBandwidthReservation,586 diff --git a/libc/nt/kernel32/GetFileInformationByHandle.S b/libc/nt/kernel32/GetFileInformationByHandle.S index 9ed25774b..b819f51e1 100644 --- a/libc/nt/kernel32/GetFileInformationByHandle.S +++ b/libc/nt/kernel32/GetFileInformationByHandle.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileInformationByHandle,GetFileInformationByHandle,0 +.imp kernel32,__imp_GetFileInformationByHandle,GetFileInformationByHandle .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFileInformationByHandleEx.S b/libc/nt/kernel32/GetFileInformationByHandleEx.S index fa9edaa23..01862e594 100644 --- a/libc/nt/kernel32/GetFileInformationByHandleEx.S +++ b/libc/nt/kernel32/GetFileInformationByHandleEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileInformationByHandleEx,GetFileInformationByHandleEx,0 +.imp kernel32,__imp_GetFileInformationByHandleEx,GetFileInformationByHandleEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFileMUIInfo.S b/libc/nt/kernel32/GetFileMUIInfo.S deleted file mode 100644 index 5567475f0..000000000 --- a/libc/nt/kernel32/GetFileMUIInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileMUIInfo,GetFileMUIInfo,0 diff --git a/libc/nt/kernel32/GetFileMUIPath.S b/libc/nt/kernel32/GetFileMUIPath.S deleted file mode 100644 index 267b982d7..000000000 --- a/libc/nt/kernel32/GetFileMUIPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileMUIPath,GetFileMUIPath,0 diff --git a/libc/nt/kernel32/GetFileSize.S b/libc/nt/kernel32/GetFileSize.S index ff26346ee..2dfa1b3d0 100644 --- a/libc/nt/kernel32/GetFileSize.S +++ b/libc/nt/kernel32/GetFileSize.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileSize,GetFileSize,0 +.imp kernel32,__imp_GetFileSize,GetFileSize .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFileSizeEx.S b/libc/nt/kernel32/GetFileSizeEx.S index 7ab658153..49749b315 100644 --- a/libc/nt/kernel32/GetFileSizeEx.S +++ b/libc/nt/kernel32/GetFileSizeEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileSizeEx,GetFileSizeEx,0 +.imp kernel32,__imp_GetFileSizeEx,GetFileSizeEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFileTime.S b/libc/nt/kernel32/GetFileTime.S index 226bee29a..54c6a88e8 100644 --- a/libc/nt/kernel32/GetFileTime.S +++ b/libc/nt/kernel32/GetFileTime.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileTime,GetFileTime,0 +.imp kernel32,__imp_GetFileTime,GetFileTime .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFileType.S b/libc/nt/kernel32/GetFileType.S index 25db80e84..00ba964bb 100644 --- a/libc/nt/kernel32/GetFileType.S +++ b/libc/nt/kernel32/GetFileType.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFileType,GetFileType,0 +.imp kernel32,__imp_GetFileType,GetFileType .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFinalPathNameByHandleW.S b/libc/nt/kernel32/GetFinalPathNameByHandleW.S index e7bf31fd7..b1bb54f8b 100644 --- a/libc/nt/kernel32/GetFinalPathNameByHandleW.S +++ b/libc/nt/kernel32/GetFinalPathNameByHandleW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFinalPathNameByHandleW,GetFinalPathNameByHandleW,0 +.imp kernel32,__imp_GetFinalPathNameByHandleW,GetFinalPathNameByHandleW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetFirmwareEnvironmentVariableExW.S b/libc/nt/kernel32/GetFirmwareEnvironmentVariableExW.S deleted file mode 100644 index dca2eeca0..000000000 --- a/libc/nt/kernel32/GetFirmwareEnvironmentVariableExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFirmwareEnvironmentVariableExW,GetFirmwareEnvironmentVariableExW,599 diff --git a/libc/nt/kernel32/GetFirmwareEnvironmentVariableW.S b/libc/nt/kernel32/GetFirmwareEnvironmentVariableW.S deleted file mode 100644 index ccaa3b683..000000000 --- a/libc/nt/kernel32/GetFirmwareEnvironmentVariableW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFirmwareEnvironmentVariableW,GetFirmwareEnvironmentVariableW,600 diff --git a/libc/nt/kernel32/GetFirmwareType.S b/libc/nt/kernel32/GetFirmwareType.S deleted file mode 100644 index f5ed12ea7..000000000 --- a/libc/nt/kernel32/GetFirmwareType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFirmwareType,GetFirmwareType,601 diff --git a/libc/nt/kernel32/GetFullPathNameTransactedW.S b/libc/nt/kernel32/GetFullPathNameTransactedW.S deleted file mode 100644 index 3b0d0c78e..000000000 --- a/libc/nt/kernel32/GetFullPathNameTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFullPathNameTransactedW,GetFullPathNameTransactedW,604 diff --git a/libc/nt/kernel32/GetFullPathNameW.S b/libc/nt/kernel32/GetFullPathNameW.S index f12fa90f2..527328019 100644 --- a/libc/nt/kernel32/GetFullPathNameW.S +++ b/libc/nt/kernel32/GetFullPathNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetFullPathNameW,GetFullPathNameW,0 +.imp kernel32,__imp_GetFullPathNameW,GetFullPathNameW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetGeoInfoW.S b/libc/nt/kernel32/GetGeoInfoW.S deleted file mode 100644 index c306f0d6d..000000000 --- a/libc/nt/kernel32/GetGeoInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetGeoInfoW,GetGeoInfoW,0 diff --git a/libc/nt/kernel32/GetHandleInformation.S b/libc/nt/kernel32/GetHandleInformation.S index 2ee1c9872..af7515e39 100644 --- a/libc/nt/kernel32/GetHandleInformation.S +++ b/libc/nt/kernel32/GetHandleInformation.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetHandleInformation,GetHandleInformation,0 +.imp kernel32,__imp_GetHandleInformation,GetHandleInformation .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetLargePageMinimum.S b/libc/nt/kernel32/GetLargePageMinimum.S deleted file mode 100644 index 9356885c1..000000000 --- a/libc/nt/kernel32/GetLargePageMinimum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLargePageMinimum,GetLargePageMinimum,0 diff --git a/libc/nt/kernel32/GetLargestConsoleWindowSize.S b/libc/nt/kernel32/GetLargestConsoleWindowSize.S index f0de49f5d..823facd4a 100644 --- a/libc/nt/kernel32/GetLargestConsoleWindowSize.S +++ b/libc/nt/kernel32/GetLargestConsoleWindowSize.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLargestConsoleWindowSize,GetLargestConsoleWindowSize,0 +.imp kernel32,__imp_GetLargestConsoleWindowSize,GetLargestConsoleWindowSize .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetLastError.S b/libc/nt/kernel32/GetLastError.S index d41cb615b..3d2bc4b68 100644 --- a/libc/nt/kernel32/GetLastError.S +++ b/libc/nt/kernel32/GetLastError.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLastError,GetLastError,0 +.imp kernel32,__imp_GetLastError,GetLastError .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetLocalTime.S b/libc/nt/kernel32/GetLocalTime.S deleted file mode 100644 index d4fcd0b34..000000000 --- a/libc/nt/kernel32/GetLocalTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLocalTime,GetLocalTime,0 diff --git a/libc/nt/kernel32/GetLocaleInfoEx.S b/libc/nt/kernel32/GetLocaleInfoEx.S deleted file mode 100644 index 3b447ef23..000000000 --- a/libc/nt/kernel32/GetLocaleInfoEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLocaleInfoEx,GetLocaleInfoEx,0 diff --git a/libc/nt/kernel32/GetLocaleInfoW.S b/libc/nt/kernel32/GetLocaleInfoW.S deleted file mode 100644 index 6e883597b..000000000 --- a/libc/nt/kernel32/GetLocaleInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLocaleInfoW,GetLocaleInfoW,0 diff --git a/libc/nt/kernel32/GetLogicalDriveStringsW.S b/libc/nt/kernel32/GetLogicalDriveStringsW.S deleted file mode 100644 index 5ae247a65..000000000 --- a/libc/nt/kernel32/GetLogicalDriveStringsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLogicalDriveStringsW,GetLogicalDriveStringsW,0 diff --git a/libc/nt/kernel32/GetLogicalDrives.S b/libc/nt/kernel32/GetLogicalDrives.S index 7e16939de..0e9dee042 100644 --- a/libc/nt/kernel32/GetLogicalDrives.S +++ b/libc/nt/kernel32/GetLogicalDrives.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLogicalDrives,GetLogicalDrives,0 +.imp kernel32,__imp_GetLogicalDrives,GetLogicalDrives .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetLogicalProcessorInformation.S b/libc/nt/kernel32/GetLogicalProcessorInformation.S deleted file mode 100644 index e9f205c87..000000000 --- a/libc/nt/kernel32/GetLogicalProcessorInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLogicalProcessorInformation,GetLogicalProcessorInformation,0 diff --git a/libc/nt/kernel32/GetLogicalProcessorInformationEx.S b/libc/nt/kernel32/GetLogicalProcessorInformationEx.S deleted file mode 100644 index 5fc57f9f8..000000000 --- a/libc/nt/kernel32/GetLogicalProcessorInformationEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLogicalProcessorInformationEx,GetLogicalProcessorInformationEx,0 diff --git a/libc/nt/kernel32/GetLongPathNameTransactedW.S b/libc/nt/kernel32/GetLongPathNameTransactedW.S deleted file mode 100644 index 307278f47..000000000 --- a/libc/nt/kernel32/GetLongPathNameTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLongPathNameTransactedW,GetLongPathNameTransactedW,624 diff --git a/libc/nt/kernel32/GetLongPathNameW.S b/libc/nt/kernel32/GetLongPathNameW.S deleted file mode 100644 index 58b3a6b51..000000000 --- a/libc/nt/kernel32/GetLongPathNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetLongPathNameW,GetLongPathNameW,0 diff --git a/libc/nt/kernel32/GetMailslotInfo.S b/libc/nt/kernel32/GetMailslotInfo.S deleted file mode 100644 index a004db4eb..000000000 --- a/libc/nt/kernel32/GetMailslotInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetMailslotInfo,GetMailslotInfo,626 diff --git a/libc/nt/kernel32/GetMaximumProcessorCount.S b/libc/nt/kernel32/GetMaximumProcessorCount.S index b1758fa55..d031cf453 100644 --- a/libc/nt/kernel32/GetMaximumProcessorCount.S +++ b/libc/nt/kernel32/GetMaximumProcessorCount.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetMaximumProcessorCount,GetMaximumProcessorCount,627 +.imp kernel32,__imp_GetMaximumProcessorCount,GetMaximumProcessorCount .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetMaximumProcessorGroupCount.S b/libc/nt/kernel32/GetMaximumProcessorGroupCount.S deleted file mode 100644 index 42b8735ba..000000000 --- a/libc/nt/kernel32/GetMaximumProcessorGroupCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetMaximumProcessorGroupCount,GetMaximumProcessorGroupCount,628 diff --git a/libc/nt/kernel32/GetMemoryErrorHandlingCapabilities.S b/libc/nt/kernel32/GetMemoryErrorHandlingCapabilities.S deleted file mode 100644 index 0efc5b32f..000000000 --- a/libc/nt/kernel32/GetMemoryErrorHandlingCapabilities.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetMemoryErrorHandlingCapabilities,GetMemoryErrorHandlingCapabilities,0 diff --git a/libc/nt/kernel32/GetModuleFileNameW.S b/libc/nt/kernel32/GetModuleFileNameW.S index 61b916a07..6d06660ca 100644 --- a/libc/nt/kernel32/GetModuleFileNameW.S +++ b/libc/nt/kernel32/GetModuleFileNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetModuleFileNameW,GetModuleFileNameW,0 +.imp kernel32,__imp_GetModuleFileNameW,GetModuleFileNameW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetModuleHandleA.S b/libc/nt/kernel32/GetModuleHandleA.S index fa1a56ce0..79c6e3972 100644 --- a/libc/nt/kernel32/GetModuleHandleA.S +++ b/libc/nt/kernel32/GetModuleHandleA.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetModuleHandleA,GetModuleHandleA,0 +.imp kernel32,__imp_GetModuleHandleA,GetModuleHandleA .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetModuleHandleExW.S b/libc/nt/kernel32/GetModuleHandleExW.S index db49b1fcb..6b4ad847f 100644 --- a/libc/nt/kernel32/GetModuleHandleExW.S +++ b/libc/nt/kernel32/GetModuleHandleExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetModuleHandleExW,GetModuleHandleExW,0 +.imp kernel32,__imp_GetModuleHandleExW,GetModuleHandleExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetModuleHandleW.S b/libc/nt/kernel32/GetModuleHandleW.S index 922ef1532..98f7dd750 100644 --- a/libc/nt/kernel32/GetModuleHandleW.S +++ b/libc/nt/kernel32/GetModuleHandleW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetModuleHandleW,GetModuleHandleW,0 +.imp kernel32,__imp_GetModuleHandleW,GetModuleHandleW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetNLSVersion.S b/libc/nt/kernel32/GetNLSVersion.S deleted file mode 100644 index 5664de0d6..000000000 --- a/libc/nt/kernel32/GetNLSVersion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNLSVersion,GetNLSVersion,0 diff --git a/libc/nt/kernel32/GetNLSVersionEx.S b/libc/nt/kernel32/GetNLSVersionEx.S deleted file mode 100644 index 7c2df3001..000000000 --- a/libc/nt/kernel32/GetNLSVersionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNLSVersionEx,GetNLSVersionEx,0 diff --git a/libc/nt/kernel32/GetNamedPipeClientComputerNameW.S b/libc/nt/kernel32/GetNamedPipeClientComputerNameW.S deleted file mode 100644 index 919bbf06c..000000000 --- a/libc/nt/kernel32/GetNamedPipeClientComputerNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNamedPipeClientComputerNameW,GetNamedPipeClientComputerNameW,0 diff --git a/libc/nt/kernel32/GetNamedPipeClientProcessId.S b/libc/nt/kernel32/GetNamedPipeClientProcessId.S deleted file mode 100644 index 1cda1e07e..000000000 --- a/libc/nt/kernel32/GetNamedPipeClientProcessId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNamedPipeClientProcessId,GetNamedPipeClientProcessId,641 diff --git a/libc/nt/kernel32/GetNamedPipeClientSessionId.S b/libc/nt/kernel32/GetNamedPipeClientSessionId.S deleted file mode 100644 index 58a985cec..000000000 --- a/libc/nt/kernel32/GetNamedPipeClientSessionId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNamedPipeClientSessionId,GetNamedPipeClientSessionId,642 diff --git a/libc/nt/kernel32/GetNamedPipeHandleStateW.S b/libc/nt/kernel32/GetNamedPipeHandleStateW.S deleted file mode 100644 index 4b7e285b8..000000000 --- a/libc/nt/kernel32/GetNamedPipeHandleStateW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNamedPipeHandleStateW,GetNamedPipeHandleStateW,0 diff --git a/libc/nt/kernel32/GetNamedPipeInfo.S b/libc/nt/kernel32/GetNamedPipeInfo.S deleted file mode 100644 index a92b6968f..000000000 --- a/libc/nt/kernel32/GetNamedPipeInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNamedPipeInfo,GetNamedPipeInfo,0 diff --git a/libc/nt/kernel32/GetNamedPipeServerProcessId.S b/libc/nt/kernel32/GetNamedPipeServerProcessId.S deleted file mode 100644 index e9a866bf7..000000000 --- a/libc/nt/kernel32/GetNamedPipeServerProcessId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNamedPipeServerProcessId,GetNamedPipeServerProcessId,646 diff --git a/libc/nt/kernel32/GetNamedPipeServerSessionId.S b/libc/nt/kernel32/GetNamedPipeServerSessionId.S deleted file mode 100644 index 1bc73bb6f..000000000 --- a/libc/nt/kernel32/GetNamedPipeServerSessionId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNamedPipeServerSessionId,GetNamedPipeServerSessionId,647 diff --git a/libc/nt/kernel32/GetNativeSystemInfo.S b/libc/nt/kernel32/GetNativeSystemInfo.S deleted file mode 100644 index 52302dbf9..000000000 --- a/libc/nt/kernel32/GetNativeSystemInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNativeSystemInfo,GetNativeSystemInfo,0 diff --git a/libc/nt/kernel32/GetNextUmsListItem.S b/libc/nt/kernel32/GetNextUmsListItem.S deleted file mode 100644 index e0869b440..000000000 --- a/libc/nt/kernel32/GetNextUmsListItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNextUmsListItem,GetNextUmsListItem,649 diff --git a/libc/nt/kernel32/GetNextVDMCommand.S b/libc/nt/kernel32/GetNextVDMCommand.S deleted file mode 100644 index 703117d0f..000000000 --- a/libc/nt/kernel32/GetNextVDMCommand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNextVDMCommand,GetNextVDMCommand,650 diff --git a/libc/nt/kernel32/GetNumaAvailableMemoryNode.S b/libc/nt/kernel32/GetNumaAvailableMemoryNode.S deleted file mode 100644 index f797ace4b..000000000 --- a/libc/nt/kernel32/GetNumaAvailableMemoryNode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaAvailableMemoryNode,GetNumaAvailableMemoryNode,651 diff --git a/libc/nt/kernel32/GetNumaAvailableMemoryNodeEx.S b/libc/nt/kernel32/GetNumaAvailableMemoryNodeEx.S deleted file mode 100644 index af1a29c73..000000000 --- a/libc/nt/kernel32/GetNumaAvailableMemoryNodeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaAvailableMemoryNodeEx,GetNumaAvailableMemoryNodeEx,652 diff --git a/libc/nt/kernel32/GetNumaHighestNodeNumber.S b/libc/nt/kernel32/GetNumaHighestNodeNumber.S deleted file mode 100644 index 08a8be82a..000000000 --- a/libc/nt/kernel32/GetNumaHighestNodeNumber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaHighestNodeNumber,GetNumaHighestNodeNumber,0 diff --git a/libc/nt/kernel32/GetNumaNodeNumberFromHandle.S b/libc/nt/kernel32/GetNumaNodeNumberFromHandle.S deleted file mode 100644 index 5bc462448..000000000 --- a/libc/nt/kernel32/GetNumaNodeNumberFromHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaNodeNumberFromHandle,GetNumaNodeNumberFromHandle,654 diff --git a/libc/nt/kernel32/GetNumaNodeProcessorMask.S b/libc/nt/kernel32/GetNumaNodeProcessorMask.S deleted file mode 100644 index 8745d5b64..000000000 --- a/libc/nt/kernel32/GetNumaNodeProcessorMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaNodeProcessorMask,GetNumaNodeProcessorMask,655 diff --git a/libc/nt/kernel32/GetNumaNodeProcessorMaskEx.S b/libc/nt/kernel32/GetNumaNodeProcessorMaskEx.S deleted file mode 100644 index c62a625ce..000000000 --- a/libc/nt/kernel32/GetNumaNodeProcessorMaskEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaNodeProcessorMaskEx,GetNumaNodeProcessorMaskEx,0 diff --git a/libc/nt/kernel32/GetNumaProcessorNode.S b/libc/nt/kernel32/GetNumaProcessorNode.S deleted file mode 100644 index 54a167d5b..000000000 --- a/libc/nt/kernel32/GetNumaProcessorNode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaProcessorNode,GetNumaProcessorNode,657 diff --git a/libc/nt/kernel32/GetNumaProcessorNodeEx.S b/libc/nt/kernel32/GetNumaProcessorNodeEx.S deleted file mode 100644 index 90468b5b1..000000000 --- a/libc/nt/kernel32/GetNumaProcessorNodeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaProcessorNodeEx,GetNumaProcessorNodeEx,658 diff --git a/libc/nt/kernel32/GetNumaProximityNode.S b/libc/nt/kernel32/GetNumaProximityNode.S deleted file mode 100644 index 7419df93a..000000000 --- a/libc/nt/kernel32/GetNumaProximityNode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaProximityNode,GetNumaProximityNode,659 diff --git a/libc/nt/kernel32/GetNumaProximityNodeEx.S b/libc/nt/kernel32/GetNumaProximityNodeEx.S deleted file mode 100644 index 3acc73ebc..000000000 --- a/libc/nt/kernel32/GetNumaProximityNodeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumaProximityNodeEx,GetNumaProximityNodeEx,0 diff --git a/libc/nt/kernel32/GetNumberFormatEx.S b/libc/nt/kernel32/GetNumberFormatEx.S deleted file mode 100644 index 7c05dc781..000000000 --- a/libc/nt/kernel32/GetNumberFormatEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumberFormatEx,GetNumberFormatEx,0 diff --git a/libc/nt/kernel32/GetNumberFormatW.S b/libc/nt/kernel32/GetNumberFormatW.S deleted file mode 100644 index 523354548..000000000 --- a/libc/nt/kernel32/GetNumberFormatW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumberFormatW,GetNumberFormatW,0 diff --git a/libc/nt/kernel32/GetNumberOfConsoleFonts.S b/libc/nt/kernel32/GetNumberOfConsoleFonts.S deleted file mode 100644 index 72959c3e4..000000000 --- a/libc/nt/kernel32/GetNumberOfConsoleFonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumberOfConsoleFonts,GetNumberOfConsoleFonts,664 diff --git a/libc/nt/kernel32/GetNumberOfConsoleInputEvents.S b/libc/nt/kernel32/GetNumberOfConsoleInputEvents.S index 8cdcc56cf..1299b4dc0 100644 --- a/libc/nt/kernel32/GetNumberOfConsoleInputEvents.S +++ b/libc/nt/kernel32/GetNumberOfConsoleInputEvents.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumberOfConsoleInputEvents,GetNumberOfConsoleInputEvents,0 +.imp kernel32,__imp_GetNumberOfConsoleInputEvents,GetNumberOfConsoleInputEvents .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetNumberOfConsoleMouseButtons.S b/libc/nt/kernel32/GetNumberOfConsoleMouseButtons.S index 9fa0f68de..113a2c37e 100644 --- a/libc/nt/kernel32/GetNumberOfConsoleMouseButtons.S +++ b/libc/nt/kernel32/GetNumberOfConsoleMouseButtons.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetNumberOfConsoleMouseButtons,GetNumberOfConsoleMouseButtons,0 +.imp kernel32,__imp_GetNumberOfConsoleMouseButtons,GetNumberOfConsoleMouseButtons .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetOEMCP.S b/libc/nt/kernel32/GetOEMCP.S deleted file mode 100644 index 34e8b9f8b..000000000 --- a/libc/nt/kernel32/GetOEMCP.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetOEMCP,GetOEMCP,0 diff --git a/libc/nt/kernel32/GetOverlappedResult.S b/libc/nt/kernel32/GetOverlappedResult.S index 5a597e762..191241fc5 100644 --- a/libc/nt/kernel32/GetOverlappedResult.S +++ b/libc/nt/kernel32/GetOverlappedResult.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetOverlappedResult,GetOverlappedResult,0 +.imp kernel32,__imp_GetOverlappedResult,GetOverlappedResult .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetOverlappedResultEx.S b/libc/nt/kernel32/GetOverlappedResultEx.S index c31c25ac6..e6e9b6820 100644 --- a/libc/nt/kernel32/GetOverlappedResultEx.S +++ b/libc/nt/kernel32/GetOverlappedResultEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetOverlappedResultEx,GetOverlappedResultEx,0 +.imp kernel32,__imp_GetOverlappedResultEx,GetOverlappedResultEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetPackageApplicationIds.S b/libc/nt/kernel32/GetPackageApplicationIds.S deleted file mode 100644 index dbda13bdb..000000000 --- a/libc/nt/kernel32/GetPackageApplicationIds.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPackageApplicationIds,GetPackageApplicationIds,0 diff --git a/libc/nt/kernel32/GetPackageFamilyName.S b/libc/nt/kernel32/GetPackageFamilyName.S deleted file mode 100644 index b7d1c5ca5..000000000 --- a/libc/nt/kernel32/GetPackageFamilyName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPackageFamilyName,GetPackageFamilyName,0 diff --git a/libc/nt/kernel32/GetPackageFullName.S b/libc/nt/kernel32/GetPackageFullName.S deleted file mode 100644 index e2b34c387..000000000 --- a/libc/nt/kernel32/GetPackageFullName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPackageFullName,GetPackageFullName,0 diff --git a/libc/nt/kernel32/GetPackageId.S b/libc/nt/kernel32/GetPackageId.S deleted file mode 100644 index 8ce9d2eef..000000000 --- a/libc/nt/kernel32/GetPackageId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPackageId,GetPackageId,0 diff --git a/libc/nt/kernel32/GetPackageInfo.S b/libc/nt/kernel32/GetPackageInfo.S deleted file mode 100644 index c5c95aa09..000000000 --- a/libc/nt/kernel32/GetPackageInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPackageInfo,GetPackageInfo,0 diff --git a/libc/nt/kernel32/GetPackagePath.S b/libc/nt/kernel32/GetPackagePath.S deleted file mode 100644 index c255e1630..000000000 --- a/libc/nt/kernel32/GetPackagePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPackagePath,GetPackagePath,0 diff --git a/libc/nt/kernel32/GetPackagePathByFullName.S b/libc/nt/kernel32/GetPackagePathByFullName.S deleted file mode 100644 index 88e0d1e25..000000000 --- a/libc/nt/kernel32/GetPackagePathByFullName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPackagePathByFullName,GetPackagePathByFullName,0 diff --git a/libc/nt/kernel32/GetPackagesByPackageFamily.S b/libc/nt/kernel32/GetPackagesByPackageFamily.S deleted file mode 100644 index aa657d460..000000000 --- a/libc/nt/kernel32/GetPackagesByPackageFamily.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPackagesByPackageFamily,GetPackagesByPackageFamily,0 diff --git a/libc/nt/kernel32/GetPhysicallyInstalledSystemMemory.S b/libc/nt/kernel32/GetPhysicallyInstalledSystemMemory.S deleted file mode 100644 index cc936446c..000000000 --- a/libc/nt/kernel32/GetPhysicallyInstalledSystemMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPhysicallyInstalledSystemMemory,GetPhysicallyInstalledSystemMemory,0 diff --git a/libc/nt/kernel32/GetPriorityClass.S b/libc/nt/kernel32/GetPriorityClass.S index 907f2643d..23ce72413 100644 --- a/libc/nt/kernel32/GetPriorityClass.S +++ b/libc/nt/kernel32/GetPriorityClass.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPriorityClass,GetPriorityClass,0 +.imp kernel32,__imp_GetPriorityClass,GetPriorityClass .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetPrivateProfileIntW.S b/libc/nt/kernel32/GetPrivateProfileIntW.S deleted file mode 100644 index 40497038e..000000000 --- a/libc/nt/kernel32/GetPrivateProfileIntW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPrivateProfileIntW,GetPrivateProfileIntW,681 diff --git a/libc/nt/kernel32/GetPrivateProfileSectionNamesW.S b/libc/nt/kernel32/GetPrivateProfileSectionNamesW.S deleted file mode 100644 index 4cf81e6dc..000000000 --- a/libc/nt/kernel32/GetPrivateProfileSectionNamesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPrivateProfileSectionNamesW,GetPrivateProfileSectionNamesW,684 diff --git a/libc/nt/kernel32/GetPrivateProfileSectionW.S b/libc/nt/kernel32/GetPrivateProfileSectionW.S deleted file mode 100644 index 45b436179..000000000 --- a/libc/nt/kernel32/GetPrivateProfileSectionW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPrivateProfileSectionW,GetPrivateProfileSectionW,685 diff --git a/libc/nt/kernel32/GetPrivateProfileStringW.S b/libc/nt/kernel32/GetPrivateProfileStringW.S deleted file mode 100644 index d4ccebce1..000000000 --- a/libc/nt/kernel32/GetPrivateProfileStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPrivateProfileStringW,GetPrivateProfileStringW,687 diff --git a/libc/nt/kernel32/GetPrivateProfileStructW.S b/libc/nt/kernel32/GetPrivateProfileStructW.S deleted file mode 100644 index 1361c9f36..000000000 --- a/libc/nt/kernel32/GetPrivateProfileStructW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetPrivateProfileStructW,GetPrivateProfileStructW,689 diff --git a/libc/nt/kernel32/GetProcAddress.S b/libc/nt/kernel32/GetProcAddress.S index 25ff3c309..8483e3dad 100644 --- a/libc/nt/kernel32/GetProcAddress.S +++ b/libc/nt/kernel32/GetProcAddress.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcAddress,GetProcAddress,0 +.imp kernel32,__imp_GetProcAddress,GetProcAddress .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessAffinityMask.S b/libc/nt/kernel32/GetProcessAffinityMask.S index bfbe75b70..b417e6b5e 100644 --- a/libc/nt/kernel32/GetProcessAffinityMask.S +++ b/libc/nt/kernel32/GetProcessAffinityMask.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessAffinityMask,GetProcessAffinityMask,0 +.imp kernel32,__imp_GetProcessAffinityMask,GetProcessAffinityMask .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessDEPPolicy.S b/libc/nt/kernel32/GetProcessDEPPolicy.S deleted file mode 100644 index 16340e130..000000000 --- a/libc/nt/kernel32/GetProcessDEPPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessDEPPolicy,GetProcessDEPPolicy,692 diff --git a/libc/nt/kernel32/GetProcessDefaultCpuSets.S b/libc/nt/kernel32/GetProcessDefaultCpuSets.S deleted file mode 100644 index 7337b880e..000000000 --- a/libc/nt/kernel32/GetProcessDefaultCpuSets.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessDefaultCpuSets,GetProcessDefaultCpuSets,0 diff --git a/libc/nt/kernel32/GetProcessGroupAffinity.S b/libc/nt/kernel32/GetProcessGroupAffinity.S deleted file mode 100644 index 9be4df0f9..000000000 --- a/libc/nt/kernel32/GetProcessGroupAffinity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessGroupAffinity,GetProcessGroupAffinity,0 diff --git a/libc/nt/kernel32/GetProcessHandleCount.S b/libc/nt/kernel32/GetProcessHandleCount.S index cfcb5c74d..85f55877d 100644 --- a/libc/nt/kernel32/GetProcessHandleCount.S +++ b/libc/nt/kernel32/GetProcessHandleCount.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessHandleCount,GetProcessHandleCount,0 +.imp kernel32,__imp_GetProcessHandleCount,GetProcessHandleCount .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessHeap.S b/libc/nt/kernel32/GetProcessHeap.S index 66fbbcaad..837bd96a4 100644 --- a/libc/nt/kernel32/GetProcessHeap.S +++ b/libc/nt/kernel32/GetProcessHeap.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessHeap,GetProcessHeap,0 +.imp kernel32,__imp_GetProcessHeap,GetProcessHeap .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessHeaps.S b/libc/nt/kernel32/GetProcessHeaps.S index 6bfc4b498..17edbc96d 100644 --- a/libc/nt/kernel32/GetProcessHeaps.S +++ b/libc/nt/kernel32/GetProcessHeaps.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessHeaps,GetProcessHeaps,0 +.imp kernel32,__imp_GetProcessHeaps,GetProcessHeaps .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessId.S b/libc/nt/kernel32/GetProcessId.S index 1489fbd07..ca20798d8 100644 --- a/libc/nt/kernel32/GetProcessId.S +++ b/libc/nt/kernel32/GetProcessId.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessId,GetProcessId,0 +.imp kernel32,__imp_GetProcessId,GetProcessId .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessIdOfThread.S b/libc/nt/kernel32/GetProcessIdOfThread.S index f533587f3..548fd2010 100644 --- a/libc/nt/kernel32/GetProcessIdOfThread.S +++ b/libc/nt/kernel32/GetProcessIdOfThread.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessIdOfThread,GetProcessIdOfThread,0 +.imp kernel32,__imp_GetProcessIdOfThread,GetProcessIdOfThread .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessInformation.S b/libc/nt/kernel32/GetProcessInformation.S index 8f13d4619..d583f042c 100644 --- a/libc/nt/kernel32/GetProcessInformation.S +++ b/libc/nt/kernel32/GetProcessInformation.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessInformation,GetProcessInformation,0 +.imp kernel32,__imp_GetProcessInformation,GetProcessInformation .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessIoCounters.S b/libc/nt/kernel32/GetProcessIoCounters.S index a5ff5cf2b..11897a883 100644 --- a/libc/nt/kernel32/GetProcessIoCounters.S +++ b/libc/nt/kernel32/GetProcessIoCounters.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessIoCounters,GetProcessIoCounters,701 +.imp kernel32,__imp_GetProcessIoCounters,GetProcessIoCounters .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessMitigationPolicy.S b/libc/nt/kernel32/GetProcessMitigationPolicy.S deleted file mode 100644 index daa656083..000000000 --- a/libc/nt/kernel32/GetProcessMitigationPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessMitigationPolicy,GetProcessMitigationPolicy,0 diff --git a/libc/nt/kernel32/GetProcessPreferredUILanguages.S b/libc/nt/kernel32/GetProcessPreferredUILanguages.S deleted file mode 100644 index d3bea7f56..000000000 --- a/libc/nt/kernel32/GetProcessPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessPreferredUILanguages,GetProcessPreferredUILanguages,0 diff --git a/libc/nt/kernel32/GetProcessPriorityBoost.S b/libc/nt/kernel32/GetProcessPriorityBoost.S index 382c43f6c..3a077d873 100644 --- a/libc/nt/kernel32/GetProcessPriorityBoost.S +++ b/libc/nt/kernel32/GetProcessPriorityBoost.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessPriorityBoost,GetProcessPriorityBoost,0 +.imp kernel32,__imp_GetProcessPriorityBoost,GetProcessPriorityBoost .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessShutdownParameters.S b/libc/nt/kernel32/GetProcessShutdownParameters.S deleted file mode 100644 index 38dbbeceb..000000000 --- a/libc/nt/kernel32/GetProcessShutdownParameters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessShutdownParameters,GetProcessShutdownParameters,0 diff --git a/libc/nt/kernel32/GetProcessTimes.S b/libc/nt/kernel32/GetProcessTimes.S index 62f968fdf..8dcaf1d76 100644 --- a/libc/nt/kernel32/GetProcessTimes.S +++ b/libc/nt/kernel32/GetProcessTimes.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessTimes,GetProcessTimes,0 +.imp kernel32,__imp_GetProcessTimes,GetProcessTimes .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessVersion.S b/libc/nt/kernel32/GetProcessVersion.S deleted file mode 100644 index 114a41dc9..000000000 --- a/libc/nt/kernel32/GetProcessVersion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessVersion,GetProcessVersion,0 diff --git a/libc/nt/kernel32/GetProcessWorkingSetSize.S b/libc/nt/kernel32/GetProcessWorkingSetSize.S index 26b6bfeb4..ef14007c1 100644 --- a/libc/nt/kernel32/GetProcessWorkingSetSize.S +++ b/libc/nt/kernel32/GetProcessWorkingSetSize.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessWorkingSetSize,GetProcessWorkingSetSize,708 +.imp kernel32,__imp_GetProcessWorkingSetSize,GetProcessWorkingSetSize .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessWorkingSetSizeEx.S b/libc/nt/kernel32/GetProcessWorkingSetSizeEx.S index 0dd7b9e67..0321193be 100644 --- a/libc/nt/kernel32/GetProcessWorkingSetSizeEx.S +++ b/libc/nt/kernel32/GetProcessWorkingSetSizeEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessWorkingSetSizeEx,GetProcessWorkingSetSizeEx,0 +.imp kernel32,__imp_GetProcessWorkingSetSizeEx,GetProcessWorkingSetSizeEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetProcessorSystemCycleTime.S b/libc/nt/kernel32/GetProcessorSystemCycleTime.S deleted file mode 100644 index 281dbe30f..000000000 --- a/libc/nt/kernel32/GetProcessorSystemCycleTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProcessorSystemCycleTime,GetProcessorSystemCycleTime,0 diff --git a/libc/nt/kernel32/GetProductInfo.S b/libc/nt/kernel32/GetProductInfo.S deleted file mode 100644 index f814006c4..000000000 --- a/libc/nt/kernel32/GetProductInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProductInfo,GetProductInfo,0 diff --git a/libc/nt/kernel32/GetProfileIntW.S b/libc/nt/kernel32/GetProfileIntW.S deleted file mode 100644 index 51b562825..000000000 --- a/libc/nt/kernel32/GetProfileIntW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProfileIntW,GetProfileIntW,713 diff --git a/libc/nt/kernel32/GetProfileSectionW.S b/libc/nt/kernel32/GetProfileSectionW.S deleted file mode 100644 index a7f08250c..000000000 --- a/libc/nt/kernel32/GetProfileSectionW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProfileSectionW,GetProfileSectionW,715 diff --git a/libc/nt/kernel32/GetProfileStringW.S b/libc/nt/kernel32/GetProfileStringW.S deleted file mode 100644 index b04505fe9..000000000 --- a/libc/nt/kernel32/GetProfileStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetProfileStringW,GetProfileStringW,717 diff --git a/libc/nt/kernel32/GetQueuedCompletionStatus.S b/libc/nt/kernel32/GetQueuedCompletionStatus.S index a3d313b3b..99f51ae76 100644 --- a/libc/nt/kernel32/GetQueuedCompletionStatus.S +++ b/libc/nt/kernel32/GetQueuedCompletionStatus.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetQueuedCompletionStatus,GetQueuedCompletionStatus,0 +.imp kernel32,__imp_GetQueuedCompletionStatus,GetQueuedCompletionStatus .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetQueuedCompletionStatusEx.S b/libc/nt/kernel32/GetQueuedCompletionStatusEx.S index 4e1dc0b07..b818443b9 100644 --- a/libc/nt/kernel32/GetQueuedCompletionStatusEx.S +++ b/libc/nt/kernel32/GetQueuedCompletionStatusEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetQueuedCompletionStatusEx,GetQueuedCompletionStatusEx,0 +.imp kernel32,__imp_GetQueuedCompletionStatusEx,GetQueuedCompletionStatusEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetShortPathNameW.S b/libc/nt/kernel32/GetShortPathNameW.S deleted file mode 100644 index cb63bebc2..000000000 --- a/libc/nt/kernel32/GetShortPathNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetShortPathNameW,GetShortPathNameW,0 diff --git a/libc/nt/kernel32/GetStagedPackagePathByFullName.S b/libc/nt/kernel32/GetStagedPackagePathByFullName.S deleted file mode 100644 index e4689f657..000000000 --- a/libc/nt/kernel32/GetStagedPackagePathByFullName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetStagedPackagePathByFullName,GetStagedPackagePathByFullName,0 diff --git a/libc/nt/kernel32/GetStartupInfoW.S b/libc/nt/kernel32/GetStartupInfoW.S index 8eac22769..45ffea82e 100644 --- a/libc/nt/kernel32/GetStartupInfoW.S +++ b/libc/nt/kernel32/GetStartupInfoW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetStartupInfoW,GetStartupInfoW,0 +.imp kernel32,__imp_GetStartupInfoW,GetStartupInfoW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetStdHandle.S b/libc/nt/kernel32/GetStdHandle.S index ac50574bb..aeb258dab 100644 --- a/libc/nt/kernel32/GetStdHandle.S +++ b/libc/nt/kernel32/GetStdHandle.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetStdHandle,GetStdHandle,0 +.imp kernel32,__imp_GetStdHandle,GetStdHandle .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetStringScripts.S b/libc/nt/kernel32/GetStringScripts.S deleted file mode 100644 index fc7b2c70c..000000000 --- a/libc/nt/kernel32/GetStringScripts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetStringScripts,GetStringScripts,0 diff --git a/libc/nt/kernel32/GetStringTypeExW.S b/libc/nt/kernel32/GetStringTypeExW.S deleted file mode 100644 index 3c01b8865..000000000 --- a/libc/nt/kernel32/GetStringTypeExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetStringTypeExW,GetStringTypeExW,0 diff --git a/libc/nt/kernel32/GetStringTypeW.S b/libc/nt/kernel32/GetStringTypeW.S deleted file mode 100644 index 9de3916b4..000000000 --- a/libc/nt/kernel32/GetStringTypeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetStringTypeW,GetStringTypeW,0 diff --git a/libc/nt/kernel32/GetSystemCpuSetInformation.S b/libc/nt/kernel32/GetSystemCpuSetInformation.S deleted file mode 100644 index a41589462..000000000 --- a/libc/nt/kernel32/GetSystemCpuSetInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemCpuSetInformation,GetSystemCpuSetInformation,0 diff --git a/libc/nt/kernel32/GetSystemDEPPolicy.S b/libc/nt/kernel32/GetSystemDEPPolicy.S deleted file mode 100644 index 4087bcdb0..000000000 --- a/libc/nt/kernel32/GetSystemDEPPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemDEPPolicy,GetSystemDEPPolicy,734 diff --git a/libc/nt/kernel32/GetSystemDefaultLCID.S b/libc/nt/kernel32/GetSystemDefaultLCID.S deleted file mode 100644 index 6fe063dfd..000000000 --- a/libc/nt/kernel32/GetSystemDefaultLCID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemDefaultLCID,GetSystemDefaultLCID,0 diff --git a/libc/nt/kernel32/GetSystemDefaultLangID.S b/libc/nt/kernel32/GetSystemDefaultLangID.S deleted file mode 100644 index fd9acf604..000000000 --- a/libc/nt/kernel32/GetSystemDefaultLangID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemDefaultLangID,GetSystemDefaultLangID,0 diff --git a/libc/nt/kernel32/GetSystemDefaultLocaleName.S b/libc/nt/kernel32/GetSystemDefaultLocaleName.S deleted file mode 100644 index fa12494c6..000000000 --- a/libc/nt/kernel32/GetSystemDefaultLocaleName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemDefaultLocaleName,GetSystemDefaultLocaleName,0 diff --git a/libc/nt/kernel32/GetSystemDefaultUILanguage.S b/libc/nt/kernel32/GetSystemDefaultUILanguage.S deleted file mode 100644 index 87b1a59f0..000000000 --- a/libc/nt/kernel32/GetSystemDefaultUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemDefaultUILanguage,GetSystemDefaultUILanguage,0 diff --git a/libc/nt/kernel32/GetSystemDirectoryA.S b/libc/nt/kernel32/GetSystemDirectoryA.S index 04f6dd8b1..f4e57e8dc 100644 --- a/libc/nt/kernel32/GetSystemDirectoryA.S +++ b/libc/nt/kernel32/GetSystemDirectoryA.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemDirectoryA,GetSystemDirectoryA,0 +.imp kernel32,__imp_GetSystemDirectoryA,GetSystemDirectoryA .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetSystemDirectoryW.S b/libc/nt/kernel32/GetSystemDirectoryW.S index ef0d22cc2..556391d51 100644 --- a/libc/nt/kernel32/GetSystemDirectoryW.S +++ b/libc/nt/kernel32/GetSystemDirectoryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemDirectoryW,GetSystemDirectoryW,0 +.imp kernel32,__imp_GetSystemDirectoryW,GetSystemDirectoryW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetSystemFileCacheSize.S b/libc/nt/kernel32/GetSystemFileCacheSize.S deleted file mode 100644 index 5d0f2b581..000000000 --- a/libc/nt/kernel32/GetSystemFileCacheSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemFileCacheSize,GetSystemFileCacheSize,0 diff --git a/libc/nt/kernel32/GetSystemFirmwareTable.S b/libc/nt/kernel32/GetSystemFirmwareTable.S deleted file mode 100644 index 09cad2625..000000000 --- a/libc/nt/kernel32/GetSystemFirmwareTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemFirmwareTable,GetSystemFirmwareTable,0 diff --git a/libc/nt/kernel32/GetSystemInfo.S b/libc/nt/kernel32/GetSystemInfo.S index 4f6f22536..872c7a25f 100644 --- a/libc/nt/kernel32/GetSystemInfo.S +++ b/libc/nt/kernel32/GetSystemInfo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemInfo,GetSystemInfo,0 +.imp kernel32,__imp_GetSystemInfo,GetSystemInfo .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetSystemPowerStatus.S b/libc/nt/kernel32/GetSystemPowerStatus.S deleted file mode 100644 index c8e35ca42..000000000 --- a/libc/nt/kernel32/GetSystemPowerStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemPowerStatus,GetSystemPowerStatus,744 diff --git a/libc/nt/kernel32/GetSystemPreferredUILanguages.S b/libc/nt/kernel32/GetSystemPreferredUILanguages.S deleted file mode 100644 index 222c316f5..000000000 --- a/libc/nt/kernel32/GetSystemPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemPreferredUILanguages,GetSystemPreferredUILanguages,0 diff --git a/libc/nt/kernel32/GetSystemRegistryQuota.S b/libc/nt/kernel32/GetSystemRegistryQuota.S deleted file mode 100644 index d51a94a23..000000000 --- a/libc/nt/kernel32/GetSystemRegistryQuota.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemRegistryQuota,GetSystemRegistryQuota,746 diff --git a/libc/nt/kernel32/GetSystemTime.S b/libc/nt/kernel32/GetSystemTime.S index 9d93fe8ac..32c8adaa4 100644 --- a/libc/nt/kernel32/GetSystemTime.S +++ b/libc/nt/kernel32/GetSystemTime.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemTime,GetSystemTime,0 +.imp kernel32,__imp_GetSystemTime,GetSystemTime .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetSystemTimeAdjustment.S b/libc/nt/kernel32/GetSystemTimeAdjustment.S index 9960216a2..fde412982 100644 --- a/libc/nt/kernel32/GetSystemTimeAdjustment.S +++ b/libc/nt/kernel32/GetSystemTimeAdjustment.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemTimeAdjustment,GetSystemTimeAdjustment,0 +.imp kernel32,__imp_GetSystemTimeAdjustment,GetSystemTimeAdjustment .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetSystemTimeAsFileTime.S b/libc/nt/kernel32/GetSystemTimeAsFileTime.S index 84dc2ab37..35948f348 100644 --- a/libc/nt/kernel32/GetSystemTimeAsFileTime.S +++ b/libc/nt/kernel32/GetSystemTimeAsFileTime.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemTimeAsFileTime,GetSystemTimeAsFileTime,0 +.imp kernel32,__imp_GetSystemTimeAsFileTime,GetSystemTimeAsFileTime .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetSystemTimePreciseAsFileTime.S b/libc/nt/kernel32/GetSystemTimePreciseAsFileTime.S index 56ee114e6..a1dd973b8 100644 --- a/libc/nt/kernel32/GetSystemTimePreciseAsFileTime.S +++ b/libc/nt/kernel32/GetSystemTimePreciseAsFileTime.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemTimePreciseAsFileTime,GetSystemTimePreciseAsFileTime,0 +.imp kernel32,__imp_GetSystemTimePreciseAsFileTime,GetSystemTimePreciseAsFileTime .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetSystemTimes.S b/libc/nt/kernel32/GetSystemTimes.S index 4620f0bd8..eb506aadc 100644 --- a/libc/nt/kernel32/GetSystemTimes.S +++ b/libc/nt/kernel32/GetSystemTimes.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemTimes,GetSystemTimes,0 +.imp kernel32,__imp_GetSystemTimes,GetSystemTimes .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetSystemWindowsDirectoryW.S b/libc/nt/kernel32/GetSystemWindowsDirectoryW.S deleted file mode 100644 index 6d0f5939b..000000000 --- a/libc/nt/kernel32/GetSystemWindowsDirectoryW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetSystemWindowsDirectoryW,GetSystemWindowsDirectoryW,0 diff --git a/libc/nt/kernel32/GetTapeParameters.S b/libc/nt/kernel32/GetTapeParameters.S deleted file mode 100644 index a199ee852..000000000 --- a/libc/nt/kernel32/GetTapeParameters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTapeParameters,GetTapeParameters,756 diff --git a/libc/nt/kernel32/GetTapePosition.S b/libc/nt/kernel32/GetTapePosition.S deleted file mode 100644 index 27602aece..000000000 --- a/libc/nt/kernel32/GetTapePosition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTapePosition,GetTapePosition,757 diff --git a/libc/nt/kernel32/GetTapeStatus.S b/libc/nt/kernel32/GetTapeStatus.S deleted file mode 100644 index 16f1d3748..000000000 --- a/libc/nt/kernel32/GetTapeStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTapeStatus,GetTapeStatus,758 diff --git a/libc/nt/kernel32/GetTempFileNameW.S b/libc/nt/kernel32/GetTempFileNameW.S deleted file mode 100644 index b83642f7a..000000000 --- a/libc/nt/kernel32/GetTempFileNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTempFileNameW,GetTempFileNameW,0 diff --git a/libc/nt/kernel32/GetTempPathA.S b/libc/nt/kernel32/GetTempPathA.S index 91c455131..bb6b9ef0d 100644 --- a/libc/nt/kernel32/GetTempPathA.S +++ b/libc/nt/kernel32/GetTempPathA.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTempPathA,GetTempPathA,0 +.imp kernel32,__imp_GetTempPathA,GetTempPathA .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetTempPathW.S b/libc/nt/kernel32/GetTempPathW.S index 7e2e57345..5f6e485f9 100644 --- a/libc/nt/kernel32/GetTempPathW.S +++ b/libc/nt/kernel32/GetTempPathW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTempPathW,GetTempPathW,0 +.imp kernel32,__imp_GetTempPathW,GetTempPathW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetThreadContext.S b/libc/nt/kernel32/GetThreadContext.S deleted file mode 100644 index 1f598bf82..000000000 --- a/libc/nt/kernel32/GetThreadContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadContext,GetThreadContext,0 diff --git a/libc/nt/kernel32/GetThreadErrorMode.S b/libc/nt/kernel32/GetThreadErrorMode.S deleted file mode 100644 index c448a55f8..000000000 --- a/libc/nt/kernel32/GetThreadErrorMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadErrorMode,GetThreadErrorMode,0 diff --git a/libc/nt/kernel32/GetThreadGroupAffinity.S b/libc/nt/kernel32/GetThreadGroupAffinity.S deleted file mode 100644 index ea265cac5..000000000 --- a/libc/nt/kernel32/GetThreadGroupAffinity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadGroupAffinity,GetThreadGroupAffinity,0 diff --git a/libc/nt/kernel32/GetThreadIOPendingFlag.S b/libc/nt/kernel32/GetThreadIOPendingFlag.S index c7b54b08a..2ba5bac5d 100644 --- a/libc/nt/kernel32/GetThreadIOPendingFlag.S +++ b/libc/nt/kernel32/GetThreadIOPendingFlag.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadIOPendingFlag,GetThreadIOPendingFlag,0 +.imp kernel32,__imp_GetThreadIOPendingFlag,GetThreadIOPendingFlag .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetThreadId.S b/libc/nt/kernel32/GetThreadId.S index 892dfb3ce..314c434a4 100644 --- a/libc/nt/kernel32/GetThreadId.S +++ b/libc/nt/kernel32/GetThreadId.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadId,GetThreadId,0 +.imp kernel32,__imp_GetThreadId,GetThreadId .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetThreadIdealProcessorEx.S b/libc/nt/kernel32/GetThreadIdealProcessorEx.S deleted file mode 100644 index 7d19b5df4..000000000 --- a/libc/nt/kernel32/GetThreadIdealProcessorEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadIdealProcessorEx,GetThreadIdealProcessorEx,0 diff --git a/libc/nt/kernel32/GetThreadInformation.S b/libc/nt/kernel32/GetThreadInformation.S deleted file mode 100644 index 2514704b7..000000000 --- a/libc/nt/kernel32/GetThreadInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadInformation,GetThreadInformation,0 diff --git a/libc/nt/kernel32/GetThreadLocale.S b/libc/nt/kernel32/GetThreadLocale.S deleted file mode 100644 index 3d0d3fc40..000000000 --- a/libc/nt/kernel32/GetThreadLocale.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadLocale,GetThreadLocale,0 diff --git a/libc/nt/kernel32/GetThreadPreferredUILanguages.S b/libc/nt/kernel32/GetThreadPreferredUILanguages.S deleted file mode 100644 index b3b87d955..000000000 --- a/libc/nt/kernel32/GetThreadPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadPreferredUILanguages,GetThreadPreferredUILanguages,0 diff --git a/libc/nt/kernel32/GetThreadPriority.S b/libc/nt/kernel32/GetThreadPriority.S index cde4039da..ef7c26182 100644 --- a/libc/nt/kernel32/GetThreadPriority.S +++ b/libc/nt/kernel32/GetThreadPriority.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadPriority,GetThreadPriority,0 +.imp kernel32,__imp_GetThreadPriority,GetThreadPriority .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetThreadPriorityBoost.S b/libc/nt/kernel32/GetThreadPriorityBoost.S index 1fa7afae3..a3a380b53 100644 --- a/libc/nt/kernel32/GetThreadPriorityBoost.S +++ b/libc/nt/kernel32/GetThreadPriorityBoost.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadPriorityBoost,GetThreadPriorityBoost,0 +.imp kernel32,__imp_GetThreadPriorityBoost,GetThreadPriorityBoost .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetThreadSelectedCpuSets.S b/libc/nt/kernel32/GetThreadSelectedCpuSets.S deleted file mode 100644 index 4c83f8739..000000000 --- a/libc/nt/kernel32/GetThreadSelectedCpuSets.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadSelectedCpuSets,GetThreadSelectedCpuSets,0 diff --git a/libc/nt/kernel32/GetThreadSelectorEntry.S b/libc/nt/kernel32/GetThreadSelectorEntry.S deleted file mode 100644 index b41b53c30..000000000 --- a/libc/nt/kernel32/GetThreadSelectorEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadSelectorEntry,GetThreadSelectorEntry,776 diff --git a/libc/nt/kernel32/GetThreadTimes.S b/libc/nt/kernel32/GetThreadTimes.S index e5d430d63..32beb39b6 100644 --- a/libc/nt/kernel32/GetThreadTimes.S +++ b/libc/nt/kernel32/GetThreadTimes.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadTimes,GetThreadTimes,0 +.imp kernel32,__imp_GetThreadTimes,GetThreadTimes .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetThreadUILanguage.S b/libc/nt/kernel32/GetThreadUILanguage.S deleted file mode 100644 index 96523c16b..000000000 --- a/libc/nt/kernel32/GetThreadUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetThreadUILanguage,GetThreadUILanguage,0 diff --git a/libc/nt/kernel32/GetTickCount.S b/libc/nt/kernel32/GetTickCount.S deleted file mode 100644 index 71c40bf21..000000000 --- a/libc/nt/kernel32/GetTickCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTickCount,GetTickCount,0 diff --git a/libc/nt/kernel32/GetTickCount64.S b/libc/nt/kernel32/GetTickCount64.S index 54f20ce0b..74f5f0aa3 100644 --- a/libc/nt/kernel32/GetTickCount64.S +++ b/libc/nt/kernel32/GetTickCount64.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTickCount64,GetTickCount64,0 +.imp kernel32,__imp_GetTickCount64,GetTickCount64 .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetTimeFormatAWorker.S b/libc/nt/kernel32/GetTimeFormatAWorker.S deleted file mode 100644 index fbec00642..000000000 --- a/libc/nt/kernel32/GetTimeFormatAWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTimeFormatAWorker,GetTimeFormatAWorker,782 diff --git a/libc/nt/kernel32/GetTimeFormatEx.S b/libc/nt/kernel32/GetTimeFormatEx.S deleted file mode 100644 index 4b40d4015..000000000 --- a/libc/nt/kernel32/GetTimeFormatEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTimeFormatEx,GetTimeFormatEx,0 diff --git a/libc/nt/kernel32/GetTimeFormatW.S b/libc/nt/kernel32/GetTimeFormatW.S deleted file mode 100644 index 81561b426..000000000 --- a/libc/nt/kernel32/GetTimeFormatW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTimeFormatW,GetTimeFormatW,0 diff --git a/libc/nt/kernel32/GetTimeFormatWWorker.S b/libc/nt/kernel32/GetTimeFormatWWorker.S deleted file mode 100644 index ffc2d0655..000000000 --- a/libc/nt/kernel32/GetTimeFormatWWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTimeFormatWWorker,GetTimeFormatWWorker,785 diff --git a/libc/nt/kernel32/GetTimeZoneInformation.S b/libc/nt/kernel32/GetTimeZoneInformation.S deleted file mode 100644 index 25133728e..000000000 --- a/libc/nt/kernel32/GetTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTimeZoneInformation,GetTimeZoneInformation,0 diff --git a/libc/nt/kernel32/GetTimeZoneInformationForYear.S b/libc/nt/kernel32/GetTimeZoneInformationForYear.S deleted file mode 100644 index 08059d66b..000000000 --- a/libc/nt/kernel32/GetTimeZoneInformationForYear.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetTimeZoneInformationForYear,GetTimeZoneInformationForYear,0 diff --git a/libc/nt/kernel32/GetUILanguageInfo.S b/libc/nt/kernel32/GetUILanguageInfo.S deleted file mode 100644 index 6668f2da4..000000000 --- a/libc/nt/kernel32/GetUILanguageInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUILanguageInfo,GetUILanguageInfo,0 diff --git a/libc/nt/kernel32/GetUmsCompletionListEvent.S b/libc/nt/kernel32/GetUmsCompletionListEvent.S deleted file mode 100644 index 9dcd03433..000000000 --- a/libc/nt/kernel32/GetUmsCompletionListEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUmsCompletionListEvent,GetUmsCompletionListEvent,789 diff --git a/libc/nt/kernel32/GetUmsSystemThreadInformation.S b/libc/nt/kernel32/GetUmsSystemThreadInformation.S deleted file mode 100644 index c9ce9d5d0..000000000 --- a/libc/nt/kernel32/GetUmsSystemThreadInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUmsSystemThreadInformation,GetUmsSystemThreadInformation,790 diff --git a/libc/nt/kernel32/GetUserDefaultLCID.S b/libc/nt/kernel32/GetUserDefaultLCID.S deleted file mode 100644 index 23b1b328e..000000000 --- a/libc/nt/kernel32/GetUserDefaultLCID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUserDefaultLCID,GetUserDefaultLCID,0 diff --git a/libc/nt/kernel32/GetUserDefaultLangID.S b/libc/nt/kernel32/GetUserDefaultLangID.S deleted file mode 100644 index 8e8d14a6f..000000000 --- a/libc/nt/kernel32/GetUserDefaultLangID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUserDefaultLangID,GetUserDefaultLangID,0 diff --git a/libc/nt/kernel32/GetUserDefaultLocaleName.S b/libc/nt/kernel32/GetUserDefaultLocaleName.S deleted file mode 100644 index bd96a2c6d..000000000 --- a/libc/nt/kernel32/GetUserDefaultLocaleName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUserDefaultLocaleName,GetUserDefaultLocaleName,0 diff --git a/libc/nt/kernel32/GetUserDefaultUILanguage.S b/libc/nt/kernel32/GetUserDefaultUILanguage.S deleted file mode 100644 index 124e3ffdb..000000000 --- a/libc/nt/kernel32/GetUserDefaultUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUserDefaultUILanguage,GetUserDefaultUILanguage,0 diff --git a/libc/nt/kernel32/GetUserGeoID.S b/libc/nt/kernel32/GetUserGeoID.S deleted file mode 100644 index 27f836408..000000000 --- a/libc/nt/kernel32/GetUserGeoID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUserGeoID,GetUserGeoID,0 diff --git a/libc/nt/kernel32/GetUserPreferredUILanguages.S b/libc/nt/kernel32/GetUserPreferredUILanguages.S deleted file mode 100644 index 5e0f5a3e6..000000000 --- a/libc/nt/kernel32/GetUserPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetUserPreferredUILanguages,GetUserPreferredUILanguages,0 diff --git a/libc/nt/kernel32/GetVDMCurrentDirectories.S b/libc/nt/kernel32/GetVDMCurrentDirectories.S deleted file mode 100644 index 6e3e55bbe..000000000 --- a/libc/nt/kernel32/GetVDMCurrentDirectories.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetVDMCurrentDirectories,GetVDMCurrentDirectories,798 diff --git a/libc/nt/kernel32/GetVersion.S b/libc/nt/kernel32/GetVersion.S deleted file mode 100644 index 4685d5c8b..000000000 --- a/libc/nt/kernel32/GetVersion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetVersion,GetVersion,0 diff --git a/libc/nt/kernel32/GetVersionExW.S b/libc/nt/kernel32/GetVersionExW.S index 5731b7679..f3b3e9ec1 100644 --- a/libc/nt/kernel32/GetVersionExW.S +++ b/libc/nt/kernel32/GetVersionExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetVersionExW,GetVersionExW,0 +.imp kernel32,__imp_GetVersionExW,GetVersionExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetVolumeInformationByHandleW.S b/libc/nt/kernel32/GetVolumeInformationByHandleW.S index 89b6784a5..a5225aaa6 100644 --- a/libc/nt/kernel32/GetVolumeInformationByHandleW.S +++ b/libc/nt/kernel32/GetVolumeInformationByHandleW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetVolumeInformationByHandleW,GetVolumeInformationByHandleW,0 +.imp kernel32,__imp_GetVolumeInformationByHandleW,GetVolumeInformationByHandleW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetVolumeInformationW.S b/libc/nt/kernel32/GetVolumeInformationW.S deleted file mode 100644 index f79e2b9b0..000000000 --- a/libc/nt/kernel32/GetVolumeInformationW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetVolumeInformationW,GetVolumeInformationW,0 diff --git a/libc/nt/kernel32/GetVolumeNameForVolumeMountPointW.S b/libc/nt/kernel32/GetVolumeNameForVolumeMountPointW.S deleted file mode 100644 index 91be50878..000000000 --- a/libc/nt/kernel32/GetVolumeNameForVolumeMountPointW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetVolumeNameForVolumeMountPointW,GetVolumeNameForVolumeMountPointW,0 diff --git a/libc/nt/kernel32/GetVolumePathNameW.S b/libc/nt/kernel32/GetVolumePathNameW.S index 40fa2985a..a01e20290 100644 --- a/libc/nt/kernel32/GetVolumePathNameW.S +++ b/libc/nt/kernel32/GetVolumePathNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetVolumePathNameW,GetVolumePathNameW,0 +.imp kernel32,__imp_GetVolumePathNameW,GetVolumePathNameW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetVolumePathNamesForVolumeNameW.S b/libc/nt/kernel32/GetVolumePathNamesForVolumeNameW.S deleted file mode 100644 index 3f361fbd3..000000000 --- a/libc/nt/kernel32/GetVolumePathNamesForVolumeNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetVolumePathNamesForVolumeNameW,GetVolumePathNamesForVolumeNameW,0 diff --git a/libc/nt/kernel32/GetWindowsDirectoryA.S b/libc/nt/kernel32/GetWindowsDirectoryA.S index 49adf010a..1769878b3 100644 --- a/libc/nt/kernel32/GetWindowsDirectoryA.S +++ b/libc/nt/kernel32/GetWindowsDirectoryA.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetWindowsDirectoryA,GetWindowsDirectoryA,0 +.imp kernel32,__imp_GetWindowsDirectoryA,GetWindowsDirectoryA .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetWindowsDirectoryW.S b/libc/nt/kernel32/GetWindowsDirectoryW.S index 32b8327fe..90d47b544 100644 --- a/libc/nt/kernel32/GetWindowsDirectoryW.S +++ b/libc/nt/kernel32/GetWindowsDirectoryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GetWindowsDirectoryW,GetWindowsDirectoryW,0 +.imp kernel32,__imp_GetWindowsDirectoryW,GetWindowsDirectoryW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GetWriteWatch.S b/libc/nt/kernel32/GetWriteWatch.S deleted file mode 100644 index 50e4b07b6..000000000 --- a/libc/nt/kernel32/GetWriteWatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetWriteWatch,GetWriteWatch,0 diff --git a/libc/nt/kernel32/GetXStateFeaturesMask.S b/libc/nt/kernel32/GetXStateFeaturesMask.S deleted file mode 100644 index 2a938414c..000000000 --- a/libc/nt/kernel32/GetXStateFeaturesMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GetXStateFeaturesMask,GetXStateFeaturesMask,0 diff --git a/libc/nt/kernel32/GlobalAddAtomExW.S b/libc/nt/kernel32/GlobalAddAtomExW.S deleted file mode 100644 index 31f34d688..000000000 --- a/libc/nt/kernel32/GlobalAddAtomExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalAddAtomExW,GlobalAddAtomExW,817 diff --git a/libc/nt/kernel32/GlobalAddAtomW.S b/libc/nt/kernel32/GlobalAddAtomW.S deleted file mode 100644 index a7b26b519..000000000 --- a/libc/nt/kernel32/GlobalAddAtomW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalAddAtomW,GlobalAddAtomW,818 diff --git a/libc/nt/kernel32/GlobalAlloc.S b/libc/nt/kernel32/GlobalAlloc.S index 9c8ed5d70..7d86847e2 100644 --- a/libc/nt/kernel32/GlobalAlloc.S +++ b/libc/nt/kernel32/GlobalAlloc.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalAlloc,GlobalAlloc,0 +.imp kernel32,__imp_GlobalAlloc,GlobalAlloc .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GlobalCompact.S b/libc/nt/kernel32/GlobalCompact.S deleted file mode 100644 index df35e7935..000000000 --- a/libc/nt/kernel32/GlobalCompact.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalCompact,GlobalCompact,820 diff --git a/libc/nt/kernel32/GlobalDeleteAtom.S b/libc/nt/kernel32/GlobalDeleteAtom.S deleted file mode 100644 index f7b3824ff..000000000 --- a/libc/nt/kernel32/GlobalDeleteAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalDeleteAtom,GlobalDeleteAtom,821 diff --git a/libc/nt/kernel32/GlobalFindAtomW.S b/libc/nt/kernel32/GlobalFindAtomW.S deleted file mode 100644 index b590a0245..000000000 --- a/libc/nt/kernel32/GlobalFindAtomW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalFindAtomW,GlobalFindAtomW,823 diff --git a/libc/nt/kernel32/GlobalFix.S b/libc/nt/kernel32/GlobalFix.S deleted file mode 100644 index f99040a79..000000000 --- a/libc/nt/kernel32/GlobalFix.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalFix,GlobalFix,824 diff --git a/libc/nt/kernel32/GlobalFlags.S b/libc/nt/kernel32/GlobalFlags.S deleted file mode 100644 index 0a8597087..000000000 --- a/libc/nt/kernel32/GlobalFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalFlags,GlobalFlags,825 diff --git a/libc/nt/kernel32/GlobalFree.S b/libc/nt/kernel32/GlobalFree.S index d1a99a843..053a835f0 100644 --- a/libc/nt/kernel32/GlobalFree.S +++ b/libc/nt/kernel32/GlobalFree.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalFree,GlobalFree,0 +.imp kernel32,__imp_GlobalFree,GlobalFree .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GlobalGetAtomNameW.S b/libc/nt/kernel32/GlobalGetAtomNameW.S deleted file mode 100644 index 3b97df5e3..000000000 --- a/libc/nt/kernel32/GlobalGetAtomNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalGetAtomNameW,GlobalGetAtomNameW,828 diff --git a/libc/nt/kernel32/GlobalHandle.S b/libc/nt/kernel32/GlobalHandle.S deleted file mode 100644 index 1763ed9ba..000000000 --- a/libc/nt/kernel32/GlobalHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalHandle,GlobalHandle,829 diff --git a/libc/nt/kernel32/GlobalLock.S b/libc/nt/kernel32/GlobalLock.S deleted file mode 100644 index 0e97d7254..000000000 --- a/libc/nt/kernel32/GlobalLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalLock,GlobalLock,830 diff --git a/libc/nt/kernel32/GlobalMemoryStatus.S b/libc/nt/kernel32/GlobalMemoryStatus.S deleted file mode 100644 index 0245ecedb..000000000 --- a/libc/nt/kernel32/GlobalMemoryStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalMemoryStatus,GlobalMemoryStatus,831 diff --git a/libc/nt/kernel32/GlobalMemoryStatusEx.S b/libc/nt/kernel32/GlobalMemoryStatusEx.S index 8e7a5cca2..ea561086e 100644 --- a/libc/nt/kernel32/GlobalMemoryStatusEx.S +++ b/libc/nt/kernel32/GlobalMemoryStatusEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalMemoryStatusEx,GlobalMemoryStatusEx,0 +.imp kernel32,__imp_GlobalMemoryStatusEx,GlobalMemoryStatusEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/GlobalReAlloc.S b/libc/nt/kernel32/GlobalReAlloc.S deleted file mode 100644 index 3bed67639..000000000 --- a/libc/nt/kernel32/GlobalReAlloc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalReAlloc,GlobalReAlloc,833 diff --git a/libc/nt/kernel32/GlobalSize.S b/libc/nt/kernel32/GlobalSize.S deleted file mode 100644 index c8778bada..000000000 --- a/libc/nt/kernel32/GlobalSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalSize,GlobalSize,834 diff --git a/libc/nt/kernel32/GlobalUnWire.S b/libc/nt/kernel32/GlobalUnWire.S deleted file mode 100644 index eea801044..000000000 --- a/libc/nt/kernel32/GlobalUnWire.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalUnWire,GlobalUnWire,835 diff --git a/libc/nt/kernel32/GlobalUnfix.S b/libc/nt/kernel32/GlobalUnfix.S deleted file mode 100644 index 05be20856..000000000 --- a/libc/nt/kernel32/GlobalUnfix.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalUnfix,GlobalUnfix,836 diff --git a/libc/nt/kernel32/GlobalUnlock.S b/libc/nt/kernel32/GlobalUnlock.S deleted file mode 100644 index a2fda589d..000000000 --- a/libc/nt/kernel32/GlobalUnlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalUnlock,GlobalUnlock,837 diff --git a/libc/nt/kernel32/GlobalWire.S b/libc/nt/kernel32/GlobalWire.S deleted file mode 100644 index 9197bc438..000000000 --- a/libc/nt/kernel32/GlobalWire.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_GlobalWire,GlobalWire,838 diff --git a/libc/nt/kernel32/Heap32First.S b/libc/nt/kernel32/Heap32First.S deleted file mode 100644 index fe7d9c4dc..000000000 --- a/libc/nt/kernel32/Heap32First.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Heap32First,Heap32First,839 diff --git a/libc/nt/kernel32/Heap32ListFirst.S b/libc/nt/kernel32/Heap32ListFirst.S deleted file mode 100644 index 404458b7e..000000000 --- a/libc/nt/kernel32/Heap32ListFirst.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Heap32ListFirst,Heap32ListFirst,840 diff --git a/libc/nt/kernel32/Heap32ListNext.S b/libc/nt/kernel32/Heap32ListNext.S deleted file mode 100644 index 0ec48df70..000000000 --- a/libc/nt/kernel32/Heap32ListNext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Heap32ListNext,Heap32ListNext,841 diff --git a/libc/nt/kernel32/Heap32Next.S b/libc/nt/kernel32/Heap32Next.S deleted file mode 100644 index 3b5304557..000000000 --- a/libc/nt/kernel32/Heap32Next.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Heap32Next,Heap32Next,842 diff --git a/libc/nt/kernel32/HeapAlloc.S b/libc/nt/kernel32/HeapAlloc.S index 18e995070..06852b07f 100644 --- a/libc/nt/kernel32/HeapAlloc.S +++ b/libc/nt/kernel32/HeapAlloc.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapAlloc,HeapAlloc,0 +.imp kernel32,__imp_HeapAlloc,HeapAlloc .text.windows .ftrace1 diff --git a/libc/nt/kernel32/HeapCompact.S b/libc/nt/kernel32/HeapCompact.S index 9e2eb401c..a2b217189 100644 --- a/libc/nt/kernel32/HeapCompact.S +++ b/libc/nt/kernel32/HeapCompact.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapCompact,HeapCompact,0 +.imp kernel32,__imp_HeapCompact,HeapCompact .text.windows .ftrace1 diff --git a/libc/nt/kernel32/HeapCreate.S b/libc/nt/kernel32/HeapCreate.S index 1d39cce5c..3cd3684bd 100644 --- a/libc/nt/kernel32/HeapCreate.S +++ b/libc/nt/kernel32/HeapCreate.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapCreate,HeapCreate,0 +.imp kernel32,__imp_HeapCreate,HeapCreate .text.windows .ftrace1 diff --git a/libc/nt/kernel32/HeapDestroy.S b/libc/nt/kernel32/HeapDestroy.S index eab7a085a..1b04d3054 100644 --- a/libc/nt/kernel32/HeapDestroy.S +++ b/libc/nt/kernel32/HeapDestroy.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapDestroy,HeapDestroy,0 +.imp kernel32,__imp_HeapDestroy,HeapDestroy .text.windows .ftrace1 diff --git a/libc/nt/kernel32/HeapFree.S b/libc/nt/kernel32/HeapFree.S index 9ce184a5e..a12281c98 100644 --- a/libc/nt/kernel32/HeapFree.S +++ b/libc/nt/kernel32/HeapFree.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapFree,HeapFree,847 +.imp kernel32,__imp_HeapFree,HeapFree .text.windows .ftrace1 diff --git a/libc/nt/kernel32/HeapLock.S b/libc/nt/kernel32/HeapLock.S deleted file mode 100644 index e37c233d8..000000000 --- a/libc/nt/kernel32/HeapLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapLock,HeapLock,0 diff --git a/libc/nt/kernel32/HeapQueryInformation.S b/libc/nt/kernel32/HeapQueryInformation.S deleted file mode 100644 index c27cdf14a..000000000 --- a/libc/nt/kernel32/HeapQueryInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapQueryInformation,HeapQueryInformation,0 diff --git a/libc/nt/kernel32/HeapReAlloc.S b/libc/nt/kernel32/HeapReAlloc.S index b60ff96d8..90279161b 100644 --- a/libc/nt/kernel32/HeapReAlloc.S +++ b/libc/nt/kernel32/HeapReAlloc.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapReAlloc,HeapReAlloc,0 +.imp kernel32,__imp_HeapReAlloc,HeapReAlloc .text.windows .ftrace1 diff --git a/libc/nt/kernel32/HeapSetInformation.S b/libc/nt/kernel32/HeapSetInformation.S deleted file mode 100644 index c0e8dbb97..000000000 --- a/libc/nt/kernel32/HeapSetInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapSetInformation,HeapSetInformation,0 diff --git a/libc/nt/kernel32/HeapUnlock.S b/libc/nt/kernel32/HeapUnlock.S deleted file mode 100644 index b21ee88d8..000000000 --- a/libc/nt/kernel32/HeapUnlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapUnlock,HeapUnlock,0 diff --git a/libc/nt/kernel32/HeapValidate.S b/libc/nt/kernel32/HeapValidate.S deleted file mode 100644 index 661e31c19..000000000 --- a/libc/nt/kernel32/HeapValidate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapValidate,HeapValidate,0 diff --git a/libc/nt/kernel32/HeapWalk.S b/libc/nt/kernel32/HeapWalk.S deleted file mode 100644 index b2f1ebd09..000000000 --- a/libc/nt/kernel32/HeapWalk.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_HeapWalk,HeapWalk,0 diff --git a/libc/nt/kernel32/IdnToAscii.S b/libc/nt/kernel32/IdnToAscii.S deleted file mode 100644 index c74d45fae..000000000 --- a/libc/nt/kernel32/IdnToAscii.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IdnToAscii,IdnToAscii,0 diff --git a/libc/nt/kernel32/IdnToNameprepUnicode.S b/libc/nt/kernel32/IdnToNameprepUnicode.S deleted file mode 100644 index f906e16bd..000000000 --- a/libc/nt/kernel32/IdnToNameprepUnicode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IdnToNameprepUnicode,IdnToNameprepUnicode,0 diff --git a/libc/nt/kernel32/IdnToUnicode.S b/libc/nt/kernel32/IdnToUnicode.S deleted file mode 100644 index f6e39f15a..000000000 --- a/libc/nt/kernel32/IdnToUnicode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IdnToUnicode,IdnToUnicode,0 diff --git a/libc/nt/kernel32/InitAtomTable.S b/libc/nt/kernel32/InitAtomTable.S deleted file mode 100644 index 6cf3362f6..000000000 --- a/libc/nt/kernel32/InitAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InitAtomTable,InitAtomTable,860 diff --git a/libc/nt/kernel32/InitOnceBeginInitialize.S b/libc/nt/kernel32/InitOnceBeginInitialize.S deleted file mode 100644 index 957012f4a..000000000 --- a/libc/nt/kernel32/InitOnceBeginInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InitOnceBeginInitialize,InitOnceBeginInitialize,0 diff --git a/libc/nt/kernel32/InitOnceComplete.S b/libc/nt/kernel32/InitOnceComplete.S deleted file mode 100644 index 9c3a2370e..000000000 --- a/libc/nt/kernel32/InitOnceComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InitOnceComplete,InitOnceComplete,0 diff --git a/libc/nt/kernel32/InitOnceExecuteOnce.S b/libc/nt/kernel32/InitOnceExecuteOnce.S deleted file mode 100644 index c385752fc..000000000 --- a/libc/nt/kernel32/InitOnceExecuteOnce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InitOnceExecuteOnce,InitOnceExecuteOnce,0 diff --git a/libc/nt/kernel32/InitializeContext.S b/libc/nt/kernel32/InitializeContext.S deleted file mode 100644 index 06167e1ee..000000000 --- a/libc/nt/kernel32/InitializeContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InitializeContext,InitializeContext,0 diff --git a/libc/nt/kernel32/InitializeCriticalSection.S b/libc/nt/kernel32/InitializeCriticalSection.S index 78105a0b3..d63020993 100644 --- a/libc/nt/kernel32/InitializeCriticalSection.S +++ b/libc/nt/kernel32/InitializeCriticalSection.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_InitializeCriticalSection,InitializeCriticalSection,0 +.imp kernel32,__imp_InitializeCriticalSection,InitializeCriticalSection .text.windows .ftrace1 diff --git a/libc/nt/kernel32/InitializeCriticalSectionAndSpinCount.S b/libc/nt/kernel32/InitializeCriticalSectionAndSpinCount.S index c2cbeb9b6..9eb08109c 100644 --- a/libc/nt/kernel32/InitializeCriticalSectionAndSpinCount.S +++ b/libc/nt/kernel32/InitializeCriticalSectionAndSpinCount.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_InitializeCriticalSectionAndSpinCount,InitializeCriticalSectionAndSpinCount,0 +.imp kernel32,__imp_InitializeCriticalSectionAndSpinCount,InitializeCriticalSectionAndSpinCount .text.windows .ftrace1 diff --git a/libc/nt/kernel32/InitializeCriticalSectionEx.S b/libc/nt/kernel32/InitializeCriticalSectionEx.S deleted file mode 100644 index 94e50caf3..000000000 --- a/libc/nt/kernel32/InitializeCriticalSectionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InitializeCriticalSectionEx,InitializeCriticalSectionEx,0 diff --git a/libc/nt/kernel32/InitializeProcThreadAttributeList.S b/libc/nt/kernel32/InitializeProcThreadAttributeList.S index 3eb2cd031..9955b5a2f 100644 --- a/libc/nt/kernel32/InitializeProcThreadAttributeList.S +++ b/libc/nt/kernel32/InitializeProcThreadAttributeList.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_InitializeProcThreadAttributeList,InitializeProcThreadAttributeList,0 +.imp kernel32,__imp_InitializeProcThreadAttributeList,InitializeProcThreadAttributeList .text.windows .ftrace1 diff --git a/libc/nt/kernel32/InitializeSRWLock.S b/libc/nt/kernel32/InitializeSRWLock.S index e9d6a15c9..945ef21c8 100644 --- a/libc/nt/kernel32/InitializeSRWLock.S +++ b/libc/nt/kernel32/InitializeSRWLock.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_InitializeSRWLock,InitializeSRWLock,0 +.imp kernel32,__imp_InitializeSRWLock,InitializeSRWLock .text.windows .ftrace1 diff --git a/libc/nt/kernel32/InitializeSynchronizationBarrier.S b/libc/nt/kernel32/InitializeSynchronizationBarrier.S deleted file mode 100644 index 60948de37..000000000 --- a/libc/nt/kernel32/InitializeSynchronizationBarrier.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InitializeSynchronizationBarrier,InitializeSynchronizationBarrier,0 diff --git a/libc/nt/kernel32/InstallELAMCertificateInfo.S b/libc/nt/kernel32/InstallELAMCertificateInfo.S deleted file mode 100644 index fe7f59420..000000000 --- a/libc/nt/kernel32/InstallELAMCertificateInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InstallELAMCertificateInfo,InstallELAMCertificateInfo,0 diff --git a/libc/nt/kernel32/InvalidateConsoleDIBits.S b/libc/nt/kernel32/InvalidateConsoleDIBits.S deleted file mode 100644 index 0eb164a11..000000000 --- a/libc/nt/kernel32/InvalidateConsoleDIBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_InvalidateConsoleDIBits,InvalidateConsoleDIBits,881 diff --git a/libc/nt/kernel32/IsBadCodePtr.S b/libc/nt/kernel32/IsBadCodePtr.S deleted file mode 100644 index 60a7680e9..000000000 --- a/libc/nt/kernel32/IsBadCodePtr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsBadCodePtr,IsBadCodePtr,882 diff --git a/libc/nt/kernel32/IsBadHugeReadPtr.S b/libc/nt/kernel32/IsBadHugeReadPtr.S deleted file mode 100644 index 5c0c5326b..000000000 --- a/libc/nt/kernel32/IsBadHugeReadPtr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsBadHugeReadPtr,IsBadHugeReadPtr,883 diff --git a/libc/nt/kernel32/IsBadHugeWritePtr.S b/libc/nt/kernel32/IsBadHugeWritePtr.S deleted file mode 100644 index 05a512f01..000000000 --- a/libc/nt/kernel32/IsBadHugeWritePtr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsBadHugeWritePtr,IsBadHugeWritePtr,884 diff --git a/libc/nt/kernel32/IsBadReadPtr.S b/libc/nt/kernel32/IsBadReadPtr.S deleted file mode 100644 index ad5a7ac5a..000000000 --- a/libc/nt/kernel32/IsBadReadPtr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsBadReadPtr,IsBadReadPtr,885 diff --git a/libc/nt/kernel32/IsBadStringPtrW.S b/libc/nt/kernel32/IsBadStringPtrW.S deleted file mode 100644 index f02dee2cf..000000000 --- a/libc/nt/kernel32/IsBadStringPtrW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsBadStringPtrW,IsBadStringPtrW,887 diff --git a/libc/nt/kernel32/IsBadWritePtr.S b/libc/nt/kernel32/IsBadWritePtr.S deleted file mode 100644 index 701065008..000000000 --- a/libc/nt/kernel32/IsBadWritePtr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsBadWritePtr,IsBadWritePtr,888 diff --git a/libc/nt/kernel32/IsCalendarLeapDay.S b/libc/nt/kernel32/IsCalendarLeapDay.S deleted file mode 100644 index d171f70f2..000000000 --- a/libc/nt/kernel32/IsCalendarLeapDay.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsCalendarLeapDay,IsCalendarLeapDay,889 diff --git a/libc/nt/kernel32/IsCalendarLeapMonth.S b/libc/nt/kernel32/IsCalendarLeapMonth.S deleted file mode 100644 index 52de6df63..000000000 --- a/libc/nt/kernel32/IsCalendarLeapMonth.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsCalendarLeapMonth,IsCalendarLeapMonth,890 diff --git a/libc/nt/kernel32/IsCalendarLeapYear.S b/libc/nt/kernel32/IsCalendarLeapYear.S deleted file mode 100644 index 54a3b5106..000000000 --- a/libc/nt/kernel32/IsCalendarLeapYear.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsCalendarLeapYear,IsCalendarLeapYear,891 diff --git a/libc/nt/kernel32/IsDBCSLeadByte.S b/libc/nt/kernel32/IsDBCSLeadByte.S deleted file mode 100644 index e25201f3a..000000000 --- a/libc/nt/kernel32/IsDBCSLeadByte.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsDBCSLeadByte,IsDBCSLeadByte,0 diff --git a/libc/nt/kernel32/IsDBCSLeadByteEx.S b/libc/nt/kernel32/IsDBCSLeadByteEx.S deleted file mode 100644 index 683686a94..000000000 --- a/libc/nt/kernel32/IsDBCSLeadByteEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsDBCSLeadByteEx,IsDBCSLeadByteEx,0 diff --git a/libc/nt/kernel32/IsNLSDefinedString.S b/libc/nt/kernel32/IsNLSDefinedString.S deleted file mode 100644 index c64c77128..000000000 --- a/libc/nt/kernel32/IsNLSDefinedString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsNLSDefinedString,IsNLSDefinedString,0 diff --git a/libc/nt/kernel32/IsNativeVhdBoot.S b/libc/nt/kernel32/IsNativeVhdBoot.S deleted file mode 100644 index 7ace093c1..000000000 --- a/libc/nt/kernel32/IsNativeVhdBoot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsNativeVhdBoot,IsNativeVhdBoot,897 diff --git a/libc/nt/kernel32/IsNormalizedString.S b/libc/nt/kernel32/IsNormalizedString.S deleted file mode 100644 index 8b29170bc..000000000 --- a/libc/nt/kernel32/IsNormalizedString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsNormalizedString,IsNormalizedString,0 diff --git a/libc/nt/kernel32/IsProcessCritical.S b/libc/nt/kernel32/IsProcessCritical.S deleted file mode 100644 index 1d983031c..000000000 --- a/libc/nt/kernel32/IsProcessCritical.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsProcessCritical,IsProcessCritical,0 diff --git a/libc/nt/kernel32/IsProcessInJob.S b/libc/nt/kernel32/IsProcessInJob.S deleted file mode 100644 index a0260a3ea..000000000 --- a/libc/nt/kernel32/IsProcessInJob.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsProcessInJob,IsProcessInJob,0 diff --git a/libc/nt/kernel32/IsProcessorFeaturePresent.S b/libc/nt/kernel32/IsProcessorFeaturePresent.S deleted file mode 100644 index c5f19eea4..000000000 --- a/libc/nt/kernel32/IsProcessorFeaturePresent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsProcessorFeaturePresent,IsProcessorFeaturePresent,0 diff --git a/libc/nt/kernel32/IsSystemResumeAutomatic.S b/libc/nt/kernel32/IsSystemResumeAutomatic.S deleted file mode 100644 index 9ef50b06d..000000000 --- a/libc/nt/kernel32/IsSystemResumeAutomatic.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsSystemResumeAutomatic,IsSystemResumeAutomatic,902 diff --git a/libc/nt/kernel32/IsThreadAFiber.S b/libc/nt/kernel32/IsThreadAFiber.S deleted file mode 100644 index 990a63794..000000000 --- a/libc/nt/kernel32/IsThreadAFiber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsThreadAFiber,IsThreadAFiber,0 diff --git a/libc/nt/kernel32/IsValidCalDateTime.S b/libc/nt/kernel32/IsValidCalDateTime.S deleted file mode 100644 index cf05a2d45..000000000 --- a/libc/nt/kernel32/IsValidCalDateTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsValidCalDateTime,IsValidCalDateTime,905 diff --git a/libc/nt/kernel32/IsValidCodePage.S b/libc/nt/kernel32/IsValidCodePage.S deleted file mode 100644 index 28ccbc498..000000000 --- a/libc/nt/kernel32/IsValidCodePage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsValidCodePage,IsValidCodePage,0 diff --git a/libc/nt/kernel32/IsValidLanguageGroup.S b/libc/nt/kernel32/IsValidLanguageGroup.S deleted file mode 100644 index 2d9a89b4a..000000000 --- a/libc/nt/kernel32/IsValidLanguageGroup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsValidLanguageGroup,IsValidLanguageGroup,0 diff --git a/libc/nt/kernel32/IsValidLocale.S b/libc/nt/kernel32/IsValidLocale.S deleted file mode 100644 index a4585861f..000000000 --- a/libc/nt/kernel32/IsValidLocale.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsValidLocale,IsValidLocale,0 diff --git a/libc/nt/kernel32/IsValidLocaleName.S b/libc/nt/kernel32/IsValidLocaleName.S deleted file mode 100644 index a9f39c7c4..000000000 --- a/libc/nt/kernel32/IsValidLocaleName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsValidLocaleName,IsValidLocaleName,0 diff --git a/libc/nt/kernel32/IsValidNLSVersion.S b/libc/nt/kernel32/IsValidNLSVersion.S deleted file mode 100644 index 8aa2dcfa5..000000000 --- a/libc/nt/kernel32/IsValidNLSVersion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_IsValidNLSVersion,IsValidNLSVersion,0 diff --git a/libc/nt/kernel32/LCIDToLocaleName.S b/libc/nt/kernel32/LCIDToLocaleName.S deleted file mode 100644 index 324d07bae..000000000 --- a/libc/nt/kernel32/LCIDToLocaleName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LCIDToLocaleName,LCIDToLocaleName,0 diff --git a/libc/nt/kernel32/LCMapStringEx.S b/libc/nt/kernel32/LCMapStringEx.S deleted file mode 100644 index ff63898c6..000000000 --- a/libc/nt/kernel32/LCMapStringEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LCMapStringEx,LCMapStringEx,0 diff --git a/libc/nt/kernel32/LCMapStringW.S b/libc/nt/kernel32/LCMapStringW.S deleted file mode 100644 index 4fce45e8e..000000000 --- a/libc/nt/kernel32/LCMapStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LCMapStringW,LCMapStringW,0 diff --git a/libc/nt/kernel32/LZClose.S b/libc/nt/kernel32/LZClose.S deleted file mode 100644 index 37d54610b..000000000 --- a/libc/nt/kernel32/LZClose.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZClose,LZClose,945 diff --git a/libc/nt/kernel32/LZCloseFile.S b/libc/nt/kernel32/LZCloseFile.S deleted file mode 100644 index 2899fadf1..000000000 --- a/libc/nt/kernel32/LZCloseFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZCloseFile,LZCloseFile,946 diff --git a/libc/nt/kernel32/LZCopy.S b/libc/nt/kernel32/LZCopy.S deleted file mode 100644 index 27e8a19ce..000000000 --- a/libc/nt/kernel32/LZCopy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZCopy,LZCopy,947 diff --git a/libc/nt/kernel32/LZCreateFileW.S b/libc/nt/kernel32/LZCreateFileW.S deleted file mode 100644 index 0af2779ae..000000000 --- a/libc/nt/kernel32/LZCreateFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZCreateFileW,LZCreateFileW,948 diff --git a/libc/nt/kernel32/LZDone.S b/libc/nt/kernel32/LZDone.S deleted file mode 100644 index de66d1fe5..000000000 --- a/libc/nt/kernel32/LZDone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZDone,LZDone,949 diff --git a/libc/nt/kernel32/LZInit.S b/libc/nt/kernel32/LZInit.S deleted file mode 100644 index e44e78f55..000000000 --- a/libc/nt/kernel32/LZInit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZInit,LZInit,950 diff --git a/libc/nt/kernel32/LZOpenFileW.S b/libc/nt/kernel32/LZOpenFileW.S deleted file mode 100644 index 44cc8f01a..000000000 --- a/libc/nt/kernel32/LZOpenFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZOpenFileW,LZOpenFileW,952 diff --git a/libc/nt/kernel32/LZRead.S b/libc/nt/kernel32/LZRead.S deleted file mode 100644 index d6c4209e1..000000000 --- a/libc/nt/kernel32/LZRead.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZRead,LZRead,953 diff --git a/libc/nt/kernel32/LZSeek.S b/libc/nt/kernel32/LZSeek.S deleted file mode 100644 index abcd4c5fb..000000000 --- a/libc/nt/kernel32/LZSeek.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZSeek,LZSeek,954 diff --git a/libc/nt/kernel32/LZStart.S b/libc/nt/kernel32/LZStart.S deleted file mode 100644 index b573959ab..000000000 --- a/libc/nt/kernel32/LZStart.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LZStart,LZStart,955 diff --git a/libc/nt/kernel32/LeaveCriticalSection.S b/libc/nt/kernel32/LeaveCriticalSection.S index 8eade8bf7..f53990f7f 100644 --- a/libc/nt/kernel32/LeaveCriticalSection.S +++ b/libc/nt/kernel32/LeaveCriticalSection.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_LeaveCriticalSection,LeaveCriticalSection,0 +.imp kernel32,__imp_LeaveCriticalSection,LeaveCriticalSection .text.windows .ftrace1 diff --git a/libc/nt/kernel32/LoadLibraryExW.S b/libc/nt/kernel32/LoadLibraryExW.S index 12a1445ca..70bada6ec 100644 --- a/libc/nt/kernel32/LoadLibraryExW.S +++ b/libc/nt/kernel32/LoadLibraryExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_LoadLibraryExW,LoadLibraryExW,0 +.imp kernel32,__imp_LoadLibraryExW,LoadLibraryExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/LoadLibraryW.S b/libc/nt/kernel32/LoadLibraryW.S index 69071d3ad..34e2bb653 100644 --- a/libc/nt/kernel32/LoadLibraryW.S +++ b/libc/nt/kernel32/LoadLibraryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_LoadLibraryW,LoadLibraryW,0 +.imp kernel32,__imp_LoadLibraryW,LoadLibraryW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/LoadModule.S b/libc/nt/kernel32/LoadModule.S deleted file mode 100644 index 94a72a3d0..000000000 --- a/libc/nt/kernel32/LoadModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LoadModule,LoadModule,964 diff --git a/libc/nt/kernel32/LoadPackagedLibrary.S b/libc/nt/kernel32/LoadPackagedLibrary.S deleted file mode 100644 index ecdc31f12..000000000 --- a/libc/nt/kernel32/LoadPackagedLibrary.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LoadPackagedLibrary,LoadPackagedLibrary,0 diff --git a/libc/nt/kernel32/LoadResource.S b/libc/nt/kernel32/LoadResource.S index fa16ce468..9622a8794 100644 --- a/libc/nt/kernel32/LoadResource.S +++ b/libc/nt/kernel32/LoadResource.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_LoadResource,LoadResource,0 +.imp kernel32,__imp_LoadResource,LoadResource .text.windows .ftrace1 diff --git a/libc/nt/kernel32/LoadStringBaseW.S b/libc/nt/kernel32/LoadStringBaseW.S deleted file mode 100644 index 6f7b04a0e..000000000 --- a/libc/nt/kernel32/LoadStringBaseW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LoadStringBaseW,LoadStringBaseW,968 diff --git a/libc/nt/kernel32/LocalAlloc.S b/libc/nt/kernel32/LocalAlloc.S deleted file mode 100644 index 68c597532..000000000 --- a/libc/nt/kernel32/LocalAlloc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalAlloc,LocalAlloc,0 diff --git a/libc/nt/kernel32/LocalCompact.S b/libc/nt/kernel32/LocalCompact.S deleted file mode 100644 index 000879f25..000000000 --- a/libc/nt/kernel32/LocalCompact.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalCompact,LocalCompact,970 diff --git a/libc/nt/kernel32/LocalFileTimeToFileTime.S b/libc/nt/kernel32/LocalFileTimeToFileTime.S deleted file mode 100644 index b6cafe7be..000000000 --- a/libc/nt/kernel32/LocalFileTimeToFileTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalFileTimeToFileTime,LocalFileTimeToFileTime,0 diff --git a/libc/nt/kernel32/LocalFlags.S b/libc/nt/kernel32/LocalFlags.S deleted file mode 100644 index 50877959b..000000000 --- a/libc/nt/kernel32/LocalFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalFlags,LocalFlags,972 diff --git a/libc/nt/kernel32/LocalFree.S b/libc/nt/kernel32/LocalFree.S index ffad41bef..cce25cbfc 100644 --- a/libc/nt/kernel32/LocalFree.S +++ b/libc/nt/kernel32/LocalFree.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalFree,LocalFree,0 +.imp kernel32,__imp_LocalFree,LocalFree .text.windows .ftrace1 diff --git a/libc/nt/kernel32/LocalHandle.S b/libc/nt/kernel32/LocalHandle.S deleted file mode 100644 index ef7aa6e31..000000000 --- a/libc/nt/kernel32/LocalHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalHandle,LocalHandle,974 diff --git a/libc/nt/kernel32/LocalLock.S b/libc/nt/kernel32/LocalLock.S deleted file mode 100644 index b9079c1b9..000000000 --- a/libc/nt/kernel32/LocalLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalLock,LocalLock,0 diff --git a/libc/nt/kernel32/LocalReAlloc.S b/libc/nt/kernel32/LocalReAlloc.S deleted file mode 100644 index a13c3386c..000000000 --- a/libc/nt/kernel32/LocalReAlloc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalReAlloc,LocalReAlloc,0 diff --git a/libc/nt/kernel32/LocalShrink.S b/libc/nt/kernel32/LocalShrink.S deleted file mode 100644 index 4ef458a2e..000000000 --- a/libc/nt/kernel32/LocalShrink.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalShrink,LocalShrink,977 diff --git a/libc/nt/kernel32/LocalSize.S b/libc/nt/kernel32/LocalSize.S deleted file mode 100644 index e7e2cbf5b..000000000 --- a/libc/nt/kernel32/LocalSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalSize,LocalSize,978 diff --git a/libc/nt/kernel32/LocalUnlock.S b/libc/nt/kernel32/LocalUnlock.S deleted file mode 100644 index a91404bee..000000000 --- a/libc/nt/kernel32/LocalUnlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocalUnlock,LocalUnlock,0 diff --git a/libc/nt/kernel32/LocaleNameToLCID.S b/libc/nt/kernel32/LocaleNameToLCID.S deleted file mode 100644 index cbb6a2188..000000000 --- a/libc/nt/kernel32/LocaleNameToLCID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocaleNameToLCID,LocaleNameToLCID,0 diff --git a/libc/nt/kernel32/LocateXStateFeature.S b/libc/nt/kernel32/LocateXStateFeature.S deleted file mode 100644 index a91242d1b..000000000 --- a/libc/nt/kernel32/LocateXStateFeature.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_LocateXStateFeature,LocateXStateFeature,0 diff --git a/libc/nt/kernel32/LockFile.S b/libc/nt/kernel32/LockFile.S index 79264e092..68a07c2cd 100644 --- a/libc/nt/kernel32/LockFile.S +++ b/libc/nt/kernel32/LockFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_LockFile,LockFile,0 +.imp kernel32,__imp_LockFile,LockFile .text.windows .ftrace1 diff --git a/libc/nt/kernel32/LockFileEx.S b/libc/nt/kernel32/LockFileEx.S index 288c8bffb..89a28505d 100644 --- a/libc/nt/kernel32/LockFileEx.S +++ b/libc/nt/kernel32/LockFileEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_LockFileEx,LockFileEx,0 +.imp kernel32,__imp_LockFileEx,LockFileEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/LockResource.S b/libc/nt/kernel32/LockResource.S index 7dda08d13..17a59073d 100644 --- a/libc/nt/kernel32/LockResource.S +++ b/libc/nt/kernel32/LockResource.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_LockResource,LockResource,0 +.imp kernel32,__imp_LockResource,LockResource .text.windows .ftrace1 diff --git a/libc/nt/kernel32/MapUserPhysicalPages.S b/libc/nt/kernel32/MapUserPhysicalPages.S deleted file mode 100644 index 69ef42a1e..000000000 --- a/libc/nt/kernel32/MapUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_MapUserPhysicalPages,MapUserPhysicalPages,0 diff --git a/libc/nt/kernel32/MapUserPhysicalPagesScatter.S b/libc/nt/kernel32/MapUserPhysicalPagesScatter.S deleted file mode 100644 index 495ba03bf..000000000 --- a/libc/nt/kernel32/MapUserPhysicalPagesScatter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_MapUserPhysicalPagesScatter,MapUserPhysicalPagesScatter,986 diff --git a/libc/nt/kernel32/MapViewOfFile.S b/libc/nt/kernel32/MapViewOfFile.S deleted file mode 100644 index b453ca719..000000000 --- a/libc/nt/kernel32/MapViewOfFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_MapViewOfFile,MapViewOfFile,0 diff --git a/libc/nt/kernel32/MapViewOfFileEx.S b/libc/nt/kernel32/MapViewOfFileEx.S index 25e926aa7..34507d3e6 100644 --- a/libc/nt/kernel32/MapViewOfFileEx.S +++ b/libc/nt/kernel32/MapViewOfFileEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_MapViewOfFileEx,MapViewOfFileEx,0 +.imp kernel32,__imp_MapViewOfFileEx,MapViewOfFileEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/MapViewOfFileExNuma.S b/libc/nt/kernel32/MapViewOfFileExNuma.S index 0ed71f8a6..652678b67 100644 --- a/libc/nt/kernel32/MapViewOfFileExNuma.S +++ b/libc/nt/kernel32/MapViewOfFileExNuma.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_MapViewOfFileExNuma,MapViewOfFileExNuma,0 +.imp kernel32,__imp_MapViewOfFileExNuma,MapViewOfFileExNuma .text.windows .ftrace1 diff --git a/libc/nt/kernel32/MapViewOfFileFromApp.S b/libc/nt/kernel32/MapViewOfFileFromApp.S deleted file mode 100644 index 029ef8c33..000000000 --- a/libc/nt/kernel32/MapViewOfFileFromApp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_MapViewOfFileFromApp,MapViewOfFileFromApp,0 diff --git a/libc/nt/kernel32/Module32FirstW.S b/libc/nt/kernel32/Module32FirstW.S deleted file mode 100644 index 20f590659..000000000 --- a/libc/nt/kernel32/Module32FirstW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Module32FirstW,Module32FirstW,992 diff --git a/libc/nt/kernel32/Module32NextW.S b/libc/nt/kernel32/Module32NextW.S deleted file mode 100644 index 4a945fbe3..000000000 --- a/libc/nt/kernel32/Module32NextW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Module32NextW,Module32NextW,994 diff --git a/libc/nt/kernel32/MoveFileExW.S b/libc/nt/kernel32/MoveFileExW.S index 9630d54a1..03be556bb 100644 --- a/libc/nt/kernel32/MoveFileExW.S +++ b/libc/nt/kernel32/MoveFileExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_MoveFileExW,MoveFileExW,0 +.imp kernel32,__imp_MoveFileExW,MoveFileExW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/MoveFileTransactedW.S b/libc/nt/kernel32/MoveFileTransactedW.S deleted file mode 100644 index d69e026e2..000000000 --- a/libc/nt/kernel32/MoveFileTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_MoveFileTransactedW,MoveFileTransactedW,999 diff --git a/libc/nt/kernel32/MoveFileW.S b/libc/nt/kernel32/MoveFileW.S index 68f877568..b2d2d097b 100644 --- a/libc/nt/kernel32/MoveFileW.S +++ b/libc/nt/kernel32/MoveFileW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_MoveFileW,MoveFileW,1000 +.imp kernel32,__imp_MoveFileW,MoveFileW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/MoveFileWithProgressW.S b/libc/nt/kernel32/MoveFileWithProgressW.S deleted file mode 100644 index e1680f060..000000000 --- a/libc/nt/kernel32/MoveFileWithProgressW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_MoveFileWithProgressW,MoveFileWithProgressW,0 diff --git a/libc/nt/kernel32/MulDiv.S b/libc/nt/kernel32/MulDiv.S deleted file mode 100644 index 9602a33bc..000000000 --- a/libc/nt/kernel32/MulDiv.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_MulDiv,MulDiv,0 diff --git a/libc/nt/kernel32/MultiByteToWideChar.S b/libc/nt/kernel32/MultiByteToWideChar.S index 0d592311a..b0a55dbd1 100644 --- a/libc/nt/kernel32/MultiByteToWideChar.S +++ b/libc/nt/kernel32/MultiByteToWideChar.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_MultiByteToWideChar,MultiByteToWideChar,0 +.imp kernel32,__imp_MultiByteToWideChar,MultiByteToWideChar .text.windows .ftrace1 diff --git a/libc/nt/kernel32/NeedCurrentDirectoryForExePathW.S b/libc/nt/kernel32/NeedCurrentDirectoryForExePathW.S deleted file mode 100644 index 5f6bde015..000000000 --- a/libc/nt/kernel32/NeedCurrentDirectoryForExePathW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_NeedCurrentDirectoryForExePathW,NeedCurrentDirectoryForExePathW,0 diff --git a/libc/nt/kernel32/NormalizeString.S b/libc/nt/kernel32/NormalizeString.S deleted file mode 100644 index f338715b0..000000000 --- a/libc/nt/kernel32/NormalizeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_NormalizeString,NormalizeString,0 diff --git a/libc/nt/kernel32/NotifyUILanguageChange.S b/libc/nt/kernel32/NotifyUILanguageChange.S deleted file mode 100644 index 756e28503..000000000 --- a/libc/nt/kernel32/NotifyUILanguageChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_NotifyUILanguageChange,NotifyUILanguageChange,1015 diff --git a/libc/nt/kernel32/NtVdm64CreateProcessInternalW.S b/libc/nt/kernel32/NtVdm64CreateProcessInternalW.S deleted file mode 100644 index 2101d51e9..000000000 --- a/libc/nt/kernel32/NtVdm64CreateProcessInternalW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_NtVdm64CreateProcessInternalW,NtVdm64CreateProcessInternalW,1016 diff --git a/libc/nt/kernel32/OOBEComplete.S b/libc/nt/kernel32/OOBEComplete.S deleted file mode 100644 index 2c71b5940..000000000 --- a/libc/nt/kernel32/OOBEComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OOBEComplete,OOBEComplete,1017 diff --git a/libc/nt/kernel32/OfferVirtualMemory.S b/libc/nt/kernel32/OfferVirtualMemory.S index 753b3553a..135d5602f 100644 --- a/libc/nt/kernel32/OfferVirtualMemory.S +++ b/libc/nt/kernel32/OfferVirtualMemory.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_OfferVirtualMemory,OfferVirtualMemory,0 +.imp kernel32,__imp_OfferVirtualMemory,OfferVirtualMemory .text.windows .ftrace1 diff --git a/libc/nt/kernel32/OpenConsoleW.S b/libc/nt/kernel32/OpenConsoleW.S deleted file mode 100644 index 8144e417d..000000000 --- a/libc/nt/kernel32/OpenConsoleW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenConsoleW,OpenConsoleW,1019 diff --git a/libc/nt/kernel32/OpenConsoleWStub.S b/libc/nt/kernel32/OpenConsoleWStub.S deleted file mode 100644 index d13cec940..000000000 --- a/libc/nt/kernel32/OpenConsoleWStub.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenConsoleWStub,OpenConsoleWStub,1020 diff --git a/libc/nt/kernel32/OpenEventW.S b/libc/nt/kernel32/OpenEventW.S deleted file mode 100644 index dce154d6a..000000000 --- a/libc/nt/kernel32/OpenEventW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenEventW,OpenEventW,0 diff --git a/libc/nt/kernel32/OpenFile.S b/libc/nt/kernel32/OpenFile.S deleted file mode 100644 index 1c293b368..000000000 --- a/libc/nt/kernel32/OpenFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenFile,OpenFile,1023 diff --git a/libc/nt/kernel32/OpenFileById.S b/libc/nt/kernel32/OpenFileById.S deleted file mode 100644 index 7d4c12421..000000000 --- a/libc/nt/kernel32/OpenFileById.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenFileById,OpenFileById,0 diff --git a/libc/nt/kernel32/OpenFileMappingW.S b/libc/nt/kernel32/OpenFileMappingW.S deleted file mode 100644 index fd4b681a4..000000000 --- a/libc/nt/kernel32/OpenFileMappingW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenFileMappingW,OpenFileMappingW,0 diff --git a/libc/nt/kernel32/OpenJobObjectW.S b/libc/nt/kernel32/OpenJobObjectW.S deleted file mode 100644 index 6baaf0504..000000000 --- a/libc/nt/kernel32/OpenJobObjectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenJobObjectW,OpenJobObjectW,1028 diff --git a/libc/nt/kernel32/OpenMutexW.S b/libc/nt/kernel32/OpenMutexW.S deleted file mode 100644 index 6eb655a7b..000000000 --- a/libc/nt/kernel32/OpenMutexW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenMutexW,OpenMutexW,0 diff --git a/libc/nt/kernel32/OpenPackageInfoByFullName.S b/libc/nt/kernel32/OpenPackageInfoByFullName.S deleted file mode 100644 index 541eea950..000000000 --- a/libc/nt/kernel32/OpenPackageInfoByFullName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenPackageInfoByFullName,OpenPackageInfoByFullName,0 diff --git a/libc/nt/kernel32/OpenPrivateNamespaceW.S b/libc/nt/kernel32/OpenPrivateNamespaceW.S deleted file mode 100644 index d9d071bcc..000000000 --- a/libc/nt/kernel32/OpenPrivateNamespaceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenPrivateNamespaceW,OpenPrivateNamespaceW,0 diff --git a/libc/nt/kernel32/OpenProcess.S b/libc/nt/kernel32/OpenProcess.S index fac0953be..bb0e8b304 100644 --- a/libc/nt/kernel32/OpenProcess.S +++ b/libc/nt/kernel32/OpenProcess.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenProcess,OpenProcess,0 +.imp kernel32,__imp_OpenProcess,OpenProcess .text.windows .ftrace1 diff --git a/libc/nt/kernel32/OpenProfileUserMapping.S b/libc/nt/kernel32/OpenProfileUserMapping.S deleted file mode 100644 index 6d1dfbc01..000000000 --- a/libc/nt/kernel32/OpenProfileUserMapping.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenProfileUserMapping,OpenProfileUserMapping,1036 diff --git a/libc/nt/kernel32/OpenSemaphoreW.S b/libc/nt/kernel32/OpenSemaphoreW.S deleted file mode 100644 index 127d8da65..000000000 --- a/libc/nt/kernel32/OpenSemaphoreW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenSemaphoreW,OpenSemaphoreW,0 diff --git a/libc/nt/kernel32/OpenThread.S b/libc/nt/kernel32/OpenThread.S index 618c466d0..c3e91e37f 100644 --- a/libc/nt/kernel32/OpenThread.S +++ b/libc/nt/kernel32/OpenThread.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenThread,OpenThread,0 +.imp kernel32,__imp_OpenThread,OpenThread .text.windows .ftrace1 diff --git a/libc/nt/kernel32/OpenWaitableTimerW.S b/libc/nt/kernel32/OpenWaitableTimerW.S deleted file mode 100644 index 0e40f2e62..000000000 --- a/libc/nt/kernel32/OpenWaitableTimerW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OpenWaitableTimerW,OpenWaitableTimerW,0 diff --git a/libc/nt/kernel32/OutputDebugStringW.S b/libc/nt/kernel32/OutputDebugStringW.S deleted file mode 100644 index c7548a7db..000000000 --- a/libc/nt/kernel32/OutputDebugStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_OutputDebugStringW,OutputDebugStringW,0 diff --git a/libc/nt/kernel32/PackageFamilyNameFromFullName.S b/libc/nt/kernel32/PackageFamilyNameFromFullName.S deleted file mode 100644 index a356bb808..000000000 --- a/libc/nt/kernel32/PackageFamilyNameFromFullName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PackageFamilyNameFromFullName,PackageFamilyNameFromFullName,0 diff --git a/libc/nt/kernel32/PackageFamilyNameFromId.S b/libc/nt/kernel32/PackageFamilyNameFromId.S deleted file mode 100644 index 95a5b9b22..000000000 --- a/libc/nt/kernel32/PackageFamilyNameFromId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PackageFamilyNameFromId,PackageFamilyNameFromId,0 diff --git a/libc/nt/kernel32/PackageFullNameFromId.S b/libc/nt/kernel32/PackageFullNameFromId.S deleted file mode 100644 index e36e8cfee..000000000 --- a/libc/nt/kernel32/PackageFullNameFromId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PackageFullNameFromId,PackageFullNameFromId,0 diff --git a/libc/nt/kernel32/PackageIdFromFullName.S b/libc/nt/kernel32/PackageIdFromFullName.S deleted file mode 100644 index 4f67e2c62..000000000 --- a/libc/nt/kernel32/PackageIdFromFullName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PackageIdFromFullName,PackageIdFromFullName,0 diff --git a/libc/nt/kernel32/PackageNameAndPublisherIdFromFamilyName.S b/libc/nt/kernel32/PackageNameAndPublisherIdFromFamilyName.S deleted file mode 100644 index f12380175..000000000 --- a/libc/nt/kernel32/PackageNameAndPublisherIdFromFamilyName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PackageNameAndPublisherIdFromFamilyName,PackageNameAndPublisherIdFromFamilyName,0 diff --git a/libc/nt/kernel32/ParseApplicationUserModelId.S b/libc/nt/kernel32/ParseApplicationUserModelId.S deleted file mode 100644 index bb21b2f70..000000000 --- a/libc/nt/kernel32/ParseApplicationUserModelId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ParseApplicationUserModelId,ParseApplicationUserModelId,0 diff --git a/libc/nt/kernel32/PeekConsoleInputW.S b/libc/nt/kernel32/PeekConsoleInputW.S index 4917874d9..7f9c8bfad 100644 --- a/libc/nt/kernel32/PeekConsoleInputW.S +++ b/libc/nt/kernel32/PeekConsoleInputW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_PeekConsoleInputW,PeekConsoleInputW,0 +.imp kernel32,__imp_PeekConsoleInputW,PeekConsoleInputW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/PeekNamedPipe.S b/libc/nt/kernel32/PeekNamedPipe.S index 6c4140e6a..fddf83325 100644 --- a/libc/nt/kernel32/PeekNamedPipe.S +++ b/libc/nt/kernel32/PeekNamedPipe.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_PeekNamedPipe,PeekNamedPipe,0 +.imp kernel32,__imp_PeekNamedPipe,PeekNamedPipe .text.windows .ftrace1 diff --git a/libc/nt/kernel32/PostQueuedCompletionStatus.S b/libc/nt/kernel32/PostQueuedCompletionStatus.S index 3ef1eb7b8..510e29893 100644 --- a/libc/nt/kernel32/PostQueuedCompletionStatus.S +++ b/libc/nt/kernel32/PostQueuedCompletionStatus.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_PostQueuedCompletionStatus,PostQueuedCompletionStatus,0 +.imp kernel32,__imp_PostQueuedCompletionStatus,PostQueuedCompletionStatus .text.windows .ftrace1 diff --git a/libc/nt/kernel32/PowerClearRequest.S b/libc/nt/kernel32/PowerClearRequest.S deleted file mode 100644 index ea580adfb..000000000 --- a/libc/nt/kernel32/PowerClearRequest.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PowerClearRequest,PowerClearRequest,1057 diff --git a/libc/nt/kernel32/PowerCreateRequest.S b/libc/nt/kernel32/PowerCreateRequest.S deleted file mode 100644 index db381c6cd..000000000 --- a/libc/nt/kernel32/PowerCreateRequest.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PowerCreateRequest,PowerCreateRequest,1058 diff --git a/libc/nt/kernel32/PowerSetRequest.S b/libc/nt/kernel32/PowerSetRequest.S deleted file mode 100644 index a302bddfe..000000000 --- a/libc/nt/kernel32/PowerSetRequest.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PowerSetRequest,PowerSetRequest,1059 diff --git a/libc/nt/kernel32/PrefetchVirtualMemory.S b/libc/nt/kernel32/PrefetchVirtualMemory.S index b7e37dfcc..7b4b51469 100644 --- a/libc/nt/kernel32/PrefetchVirtualMemory.S +++ b/libc/nt/kernel32/PrefetchVirtualMemory.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_PrefetchVirtualMemory,PrefetchVirtualMemory,0 +.imp kernel32,__imp_PrefetchVirtualMemory,PrefetchVirtualMemory .text.windows .ftrace1 diff --git a/libc/nt/kernel32/PrepareTape.S b/libc/nt/kernel32/PrepareTape.S deleted file mode 100644 index c1c88370b..000000000 --- a/libc/nt/kernel32/PrepareTape.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PrepareTape,PrepareTape,1061 diff --git a/libc/nt/kernel32/PrivMoveFileIdentityW.S b/libc/nt/kernel32/PrivMoveFileIdentityW.S deleted file mode 100644 index 0d7f50a38..000000000 --- a/libc/nt/kernel32/PrivMoveFileIdentityW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PrivMoveFileIdentityW,PrivMoveFileIdentityW,1063 diff --git a/libc/nt/kernel32/Process32FirstW.S b/libc/nt/kernel32/Process32FirstW.S index f4a140f88..e14adf67d 100644 --- a/libc/nt/kernel32/Process32FirstW.S +++ b/libc/nt/kernel32/Process32FirstW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_Process32FirstW,Process32FirstW,0 +.imp kernel32,__imp_Process32FirstW,Process32FirstW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/Process32NextW.S b/libc/nt/kernel32/Process32NextW.S index fc58385bc..4b48edc08 100644 --- a/libc/nt/kernel32/Process32NextW.S +++ b/libc/nt/kernel32/Process32NextW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_Process32NextW,Process32NextW,0 +.imp kernel32,__imp_Process32NextW,Process32NextW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ProcessIdToSessionId.S b/libc/nt/kernel32/ProcessIdToSessionId.S deleted file mode 100644 index eb537d759..000000000 --- a/libc/nt/kernel32/ProcessIdToSessionId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ProcessIdToSessionId,ProcessIdToSessionId,0 diff --git a/libc/nt/kernel32/PssCaptureSnapshot.S b/libc/nt/kernel32/PssCaptureSnapshot.S deleted file mode 100644 index 4f18d80e7..000000000 --- a/libc/nt/kernel32/PssCaptureSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssCaptureSnapshot,PssCaptureSnapshot,0 diff --git a/libc/nt/kernel32/PssDuplicateSnapshot.S b/libc/nt/kernel32/PssDuplicateSnapshot.S deleted file mode 100644 index 9ff796d52..000000000 --- a/libc/nt/kernel32/PssDuplicateSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssDuplicateSnapshot,PssDuplicateSnapshot,0 diff --git a/libc/nt/kernel32/PssFreeSnapshot.S b/libc/nt/kernel32/PssFreeSnapshot.S deleted file mode 100644 index fa5183184..000000000 --- a/libc/nt/kernel32/PssFreeSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssFreeSnapshot,PssFreeSnapshot,0 diff --git a/libc/nt/kernel32/PssQuerySnapshot.S b/libc/nt/kernel32/PssQuerySnapshot.S deleted file mode 100644 index f86a67810..000000000 --- a/libc/nt/kernel32/PssQuerySnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssQuerySnapshot,PssQuerySnapshot,0 diff --git a/libc/nt/kernel32/PssWalkMarkerCreate.S b/libc/nt/kernel32/PssWalkMarkerCreate.S deleted file mode 100644 index 0159f7342..000000000 --- a/libc/nt/kernel32/PssWalkMarkerCreate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkMarkerCreate,PssWalkMarkerCreate,0 diff --git a/libc/nt/kernel32/PssWalkMarkerFree.S b/libc/nt/kernel32/PssWalkMarkerFree.S deleted file mode 100644 index 937affa27..000000000 --- a/libc/nt/kernel32/PssWalkMarkerFree.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkMarkerFree,PssWalkMarkerFree,0 diff --git a/libc/nt/kernel32/PssWalkMarkerGetPosition.S b/libc/nt/kernel32/PssWalkMarkerGetPosition.S deleted file mode 100644 index f0858ca3a..000000000 --- a/libc/nt/kernel32/PssWalkMarkerGetPosition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkMarkerGetPosition,PssWalkMarkerGetPosition,0 diff --git a/libc/nt/kernel32/PssWalkMarkerRewind.S b/libc/nt/kernel32/PssWalkMarkerRewind.S deleted file mode 100644 index 2368a11e7..000000000 --- a/libc/nt/kernel32/PssWalkMarkerRewind.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkMarkerRewind,PssWalkMarkerRewind,1076 diff --git a/libc/nt/kernel32/PssWalkMarkerSeek.S b/libc/nt/kernel32/PssWalkMarkerSeek.S deleted file mode 100644 index e8ec2036e..000000000 --- a/libc/nt/kernel32/PssWalkMarkerSeek.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkMarkerSeek,PssWalkMarkerSeek,1077 diff --git a/libc/nt/kernel32/PssWalkMarkerSeekToBeginning.S b/libc/nt/kernel32/PssWalkMarkerSeekToBeginning.S deleted file mode 100644 index 3c4883d2c..000000000 --- a/libc/nt/kernel32/PssWalkMarkerSeekToBeginning.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkMarkerSeekToBeginning,PssWalkMarkerSeekToBeginning,0 diff --git a/libc/nt/kernel32/PssWalkMarkerSetPosition.S b/libc/nt/kernel32/PssWalkMarkerSetPosition.S deleted file mode 100644 index 0a16109c3..000000000 --- a/libc/nt/kernel32/PssWalkMarkerSetPosition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkMarkerSetPosition,PssWalkMarkerSetPosition,0 diff --git a/libc/nt/kernel32/PssWalkMarkerTell.S b/libc/nt/kernel32/PssWalkMarkerTell.S deleted file mode 100644 index 4380615c6..000000000 --- a/libc/nt/kernel32/PssWalkMarkerTell.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkMarkerTell,PssWalkMarkerTell,1080 diff --git a/libc/nt/kernel32/PssWalkSnapshot.S b/libc/nt/kernel32/PssWalkSnapshot.S deleted file mode 100644 index e8cda94c6..000000000 --- a/libc/nt/kernel32/PssWalkSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_PssWalkSnapshot,PssWalkSnapshot,0 diff --git a/libc/nt/kernel32/PulseEvent.S b/libc/nt/kernel32/PulseEvent.S index 7d73245d4..0e64e6c79 100644 --- a/libc/nt/kernel32/PulseEvent.S +++ b/libc/nt/kernel32/PulseEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_PulseEvent,PulseEvent,0 +.imp kernel32,__imp_PulseEvent,PulseEvent .text.windows .ftrace1 diff --git a/libc/nt/kernel32/PurgeComm.S b/libc/nt/kernel32/PurgeComm.S index 70cb546fd..f7372cf6b 100644 --- a/libc/nt/kernel32/PurgeComm.S +++ b/libc/nt/kernel32/PurgeComm.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_PurgeComm,PurgeComm,0 +.imp kernel32,__imp_PurgeComm,PurgeComm .text.windows .ftrace1 diff --git a/libc/nt/kernel32/QueryActCtxSettingsW.S b/libc/nt/kernel32/QueryActCtxSettingsW.S deleted file mode 100644 index e3f34dd91..000000000 --- a/libc/nt/kernel32/QueryActCtxSettingsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryActCtxSettingsW,QueryActCtxSettingsW,0 diff --git a/libc/nt/kernel32/QueryActCtxSettingsWWorker.S b/libc/nt/kernel32/QueryActCtxSettingsWWorker.S deleted file mode 100644 index 4e0079958..000000000 --- a/libc/nt/kernel32/QueryActCtxSettingsWWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryActCtxSettingsWWorker,QueryActCtxSettingsWWorker,1085 diff --git a/libc/nt/kernel32/QueryActCtxW.S b/libc/nt/kernel32/QueryActCtxW.S deleted file mode 100644 index 4d31d6a74..000000000 --- a/libc/nt/kernel32/QueryActCtxW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryActCtxW,QueryActCtxW,0 diff --git a/libc/nt/kernel32/QueryActCtxWWorker.S b/libc/nt/kernel32/QueryActCtxWWorker.S deleted file mode 100644 index de9b49d7b..000000000 --- a/libc/nt/kernel32/QueryActCtxWWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryActCtxWWorker,QueryActCtxWWorker,1087 diff --git a/libc/nt/kernel32/QueryDosDeviceW.S b/libc/nt/kernel32/QueryDosDeviceW.S deleted file mode 100644 index 1d04f9b90..000000000 --- a/libc/nt/kernel32/QueryDosDeviceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryDosDeviceW,QueryDosDeviceW,0 diff --git a/libc/nt/kernel32/QueryFullProcessImageNameW.S b/libc/nt/kernel32/QueryFullProcessImageNameW.S deleted file mode 100644 index 5c04e05d4..000000000 --- a/libc/nt/kernel32/QueryFullProcessImageNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryFullProcessImageNameW,QueryFullProcessImageNameW,0 diff --git a/libc/nt/kernel32/QueryIdleProcessorCycleTime.S b/libc/nt/kernel32/QueryIdleProcessorCycleTime.S deleted file mode 100644 index f8f0ffc79..000000000 --- a/libc/nt/kernel32/QueryIdleProcessorCycleTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryIdleProcessorCycleTime,QueryIdleProcessorCycleTime,0 diff --git a/libc/nt/kernel32/QueryIdleProcessorCycleTimeEx.S b/libc/nt/kernel32/QueryIdleProcessorCycleTimeEx.S deleted file mode 100644 index 0206f72c1..000000000 --- a/libc/nt/kernel32/QueryIdleProcessorCycleTimeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryIdleProcessorCycleTimeEx,QueryIdleProcessorCycleTimeEx,0 diff --git a/libc/nt/kernel32/QueryInformationJobObject.S b/libc/nt/kernel32/QueryInformationJobObject.S deleted file mode 100644 index bc5ba17f0..000000000 --- a/libc/nt/kernel32/QueryInformationJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryInformationJobObject,QueryInformationJobObject,1095 diff --git a/libc/nt/kernel32/QueryIoRateControlInformationJobObject.S b/libc/nt/kernel32/QueryIoRateControlInformationJobObject.S deleted file mode 100644 index 63d67629a..000000000 --- a/libc/nt/kernel32/QueryIoRateControlInformationJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryIoRateControlInformationJobObject,QueryIoRateControlInformationJobObject,1096 diff --git a/libc/nt/kernel32/QueryMemoryResourceNotification.S b/libc/nt/kernel32/QueryMemoryResourceNotification.S deleted file mode 100644 index 492c281ee..000000000 --- a/libc/nt/kernel32/QueryMemoryResourceNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryMemoryResourceNotification,QueryMemoryResourceNotification,0 diff --git a/libc/nt/kernel32/QueryPerformanceCounter.S b/libc/nt/kernel32/QueryPerformanceCounter.S index e0af81fe7..bb589ec47 100644 --- a/libc/nt/kernel32/QueryPerformanceCounter.S +++ b/libc/nt/kernel32/QueryPerformanceCounter.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryPerformanceCounter,QueryPerformanceCounter,1098 +.imp kernel32,__imp_QueryPerformanceCounter,QueryPerformanceCounter .text.windows .ftrace1 diff --git a/libc/nt/kernel32/QueryPerformanceFrequency.S b/libc/nt/kernel32/QueryPerformanceFrequency.S index b0f90b056..d462c74f2 100644 --- a/libc/nt/kernel32/QueryPerformanceFrequency.S +++ b/libc/nt/kernel32/QueryPerformanceFrequency.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryPerformanceFrequency,QueryPerformanceFrequency,1099 +.imp kernel32,__imp_QueryPerformanceFrequency,QueryPerformanceFrequency .text.windows .ftrace1 diff --git a/libc/nt/kernel32/QueryProcessAffinityUpdateMode.S b/libc/nt/kernel32/QueryProcessAffinityUpdateMode.S deleted file mode 100644 index acb34c893..000000000 --- a/libc/nt/kernel32/QueryProcessAffinityUpdateMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryProcessAffinityUpdateMode,QueryProcessAffinityUpdateMode,0 diff --git a/libc/nt/kernel32/QueryProcessCycleTime.S b/libc/nt/kernel32/QueryProcessCycleTime.S deleted file mode 100644 index 63715f8ee..000000000 --- a/libc/nt/kernel32/QueryProcessCycleTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryProcessCycleTime,QueryProcessCycleTime,0 diff --git a/libc/nt/kernel32/QueryProtectedPolicy.S b/libc/nt/kernel32/QueryProtectedPolicy.S deleted file mode 100644 index c12258183..000000000 --- a/libc/nt/kernel32/QueryProtectedPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryProtectedPolicy,QueryProtectedPolicy,0 diff --git a/libc/nt/kernel32/QueryThreadCycleTime.S b/libc/nt/kernel32/QueryThreadCycleTime.S deleted file mode 100644 index 55f82e59c..000000000 --- a/libc/nt/kernel32/QueryThreadCycleTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryThreadCycleTime,QueryThreadCycleTime,0 diff --git a/libc/nt/kernel32/QueryThreadProfiling.S b/libc/nt/kernel32/QueryThreadProfiling.S deleted file mode 100644 index 9cfc7be6f..000000000 --- a/libc/nt/kernel32/QueryThreadProfiling.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryThreadProfiling,QueryThreadProfiling,1104 diff --git a/libc/nt/kernel32/QueryThreadpoolStackInformation.S b/libc/nt/kernel32/QueryThreadpoolStackInformation.S deleted file mode 100644 index 922500b4a..000000000 --- a/libc/nt/kernel32/QueryThreadpoolStackInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryThreadpoolStackInformation,QueryThreadpoolStackInformation,0 diff --git a/libc/nt/kernel32/QueryUmsThreadInformation.S b/libc/nt/kernel32/QueryUmsThreadInformation.S deleted file mode 100644 index cbefb06cc..000000000 --- a/libc/nt/kernel32/QueryUmsThreadInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryUmsThreadInformation,QueryUmsThreadInformation,1106 diff --git a/libc/nt/kernel32/QueryUnbiasedInterruptTime.S b/libc/nt/kernel32/QueryUnbiasedInterruptTime.S deleted file mode 100644 index 70bce8057..000000000 --- a/libc/nt/kernel32/QueryUnbiasedInterruptTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueryUnbiasedInterruptTime,QueryUnbiasedInterruptTime,1107 diff --git a/libc/nt/kernel32/QueueUserAPC.S b/libc/nt/kernel32/QueueUserAPC.S deleted file mode 100644 index 6660777a3..000000000 --- a/libc/nt/kernel32/QueueUserAPC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueueUserAPC,QueueUserAPC,0 diff --git a/libc/nt/kernel32/QueueUserWorkItem.S b/libc/nt/kernel32/QueueUserWorkItem.S deleted file mode 100644 index a20be65e4..000000000 --- a/libc/nt/kernel32/QueueUserWorkItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QueueUserWorkItem,QueueUserWorkItem,0 diff --git a/libc/nt/kernel32/QuirkGetData2Worker.S b/libc/nt/kernel32/QuirkGetData2Worker.S deleted file mode 100644 index 7490726bf..000000000 --- a/libc/nt/kernel32/QuirkGetData2Worker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkGetData2Worker,QuirkGetData2Worker,1110 diff --git a/libc/nt/kernel32/QuirkGetDataWorker.S b/libc/nt/kernel32/QuirkGetDataWorker.S deleted file mode 100644 index 18e64bf5d..000000000 --- a/libc/nt/kernel32/QuirkGetDataWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkGetDataWorker,QuirkGetDataWorker,1111 diff --git a/libc/nt/kernel32/QuirkIsEnabled2Worker.S b/libc/nt/kernel32/QuirkIsEnabled2Worker.S deleted file mode 100644 index 4b7d20a2b..000000000 --- a/libc/nt/kernel32/QuirkIsEnabled2Worker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkIsEnabled2Worker,QuirkIsEnabled2Worker,1112 diff --git a/libc/nt/kernel32/QuirkIsEnabled3Worker.S b/libc/nt/kernel32/QuirkIsEnabled3Worker.S deleted file mode 100644 index 5f85fb6f2..000000000 --- a/libc/nt/kernel32/QuirkIsEnabled3Worker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkIsEnabled3Worker,QuirkIsEnabled3Worker,1113 diff --git a/libc/nt/kernel32/QuirkIsEnabledForPackage2Worker.S b/libc/nt/kernel32/QuirkIsEnabledForPackage2Worker.S deleted file mode 100644 index e11d5c556..000000000 --- a/libc/nt/kernel32/QuirkIsEnabledForPackage2Worker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkIsEnabledForPackage2Worker,QuirkIsEnabledForPackage2Worker,1114 diff --git a/libc/nt/kernel32/QuirkIsEnabledForPackage3Worker.S b/libc/nt/kernel32/QuirkIsEnabledForPackage3Worker.S deleted file mode 100644 index 20aef4c61..000000000 --- a/libc/nt/kernel32/QuirkIsEnabledForPackage3Worker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkIsEnabledForPackage3Worker,QuirkIsEnabledForPackage3Worker,1115 diff --git a/libc/nt/kernel32/QuirkIsEnabledForPackage4Worker.S b/libc/nt/kernel32/QuirkIsEnabledForPackage4Worker.S deleted file mode 100644 index 7232a77e0..000000000 --- a/libc/nt/kernel32/QuirkIsEnabledForPackage4Worker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkIsEnabledForPackage4Worker,QuirkIsEnabledForPackage4Worker,1116 diff --git a/libc/nt/kernel32/QuirkIsEnabledForPackageWorker.S b/libc/nt/kernel32/QuirkIsEnabledForPackageWorker.S deleted file mode 100644 index 73dfdb8f0..000000000 --- a/libc/nt/kernel32/QuirkIsEnabledForPackageWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkIsEnabledForPackageWorker,QuirkIsEnabledForPackageWorker,1117 diff --git a/libc/nt/kernel32/QuirkIsEnabledForProcessWorker.S b/libc/nt/kernel32/QuirkIsEnabledForProcessWorker.S deleted file mode 100644 index b43618d88..000000000 --- a/libc/nt/kernel32/QuirkIsEnabledForProcessWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkIsEnabledForProcessWorker,QuirkIsEnabledForProcessWorker,1118 diff --git a/libc/nt/kernel32/QuirkIsEnabledWorker.S b/libc/nt/kernel32/QuirkIsEnabledWorker.S deleted file mode 100644 index 3636c4a24..000000000 --- a/libc/nt/kernel32/QuirkIsEnabledWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_QuirkIsEnabledWorker,QuirkIsEnabledWorker,1119 diff --git a/libc/nt/kernel32/RaiseException.S b/libc/nt/kernel32/RaiseException.S deleted file mode 100644 index 1929542e7..000000000 --- a/libc/nt/kernel32/RaiseException.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RaiseException,RaiseException,0 diff --git a/libc/nt/kernel32/RaiseFailFastException.S b/libc/nt/kernel32/RaiseFailFastException.S deleted file mode 100644 index f0d683b55..000000000 --- a/libc/nt/kernel32/RaiseFailFastException.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RaiseFailFastException,RaiseFailFastException,0 diff --git a/libc/nt/kernel32/RaiseInvalid16BitExeError.S b/libc/nt/kernel32/RaiseInvalid16BitExeError.S deleted file mode 100644 index 8f2f8fe99..000000000 --- a/libc/nt/kernel32/RaiseInvalid16BitExeError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RaiseInvalid16BitExeError,RaiseInvalid16BitExeError,1122 diff --git a/libc/nt/kernel32/ReOpenFile.S b/libc/nt/kernel32/ReOpenFile.S index 350b1ccca..2ec841f9a 100644 --- a/libc/nt/kernel32/ReOpenFile.S +++ b/libc/nt/kernel32/ReOpenFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReOpenFile,ReOpenFile,0 +.imp kernel32,__imp_ReOpenFile,ReOpenFile .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadConsoleInputW.S b/libc/nt/kernel32/ReadConsoleInputW.S index cc9785430..33d47ffaa 100644 --- a/libc/nt/kernel32/ReadConsoleInputW.S +++ b/libc/nt/kernel32/ReadConsoleInputW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadConsoleInputW,ReadConsoleInputW,0 +.imp kernel32,__imp_ReadConsoleInputW,ReadConsoleInputW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadConsoleOutputAttribute.S b/libc/nt/kernel32/ReadConsoleOutputAttribute.S index ef367a497..b7bf491a4 100644 --- a/libc/nt/kernel32/ReadConsoleOutputAttribute.S +++ b/libc/nt/kernel32/ReadConsoleOutputAttribute.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadConsoleOutputAttribute,ReadConsoleOutputAttribute,0 +.imp kernel32,__imp_ReadConsoleOutputAttribute,ReadConsoleOutputAttribute .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadConsoleOutputCharacterW.S b/libc/nt/kernel32/ReadConsoleOutputCharacterW.S index a0ecfe28a..644f48f99 100644 --- a/libc/nt/kernel32/ReadConsoleOutputCharacterW.S +++ b/libc/nt/kernel32/ReadConsoleOutputCharacterW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadConsoleOutputCharacterW,ReadConsoleOutputCharacterW,0 +.imp kernel32,__imp_ReadConsoleOutputCharacterW,ReadConsoleOutputCharacterW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadConsoleOutputW.S b/libc/nt/kernel32/ReadConsoleOutputW.S index 764654351..660fe46c5 100644 --- a/libc/nt/kernel32/ReadConsoleOutputW.S +++ b/libc/nt/kernel32/ReadConsoleOutputW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadConsoleOutputW,ReadConsoleOutputW,0 +.imp kernel32,__imp_ReadConsoleOutputW,ReadConsoleOutputW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadConsoleW.S b/libc/nt/kernel32/ReadConsoleW.S index 0e53f232c..3c4d37f5b 100644 --- a/libc/nt/kernel32/ReadConsoleW.S +++ b/libc/nt/kernel32/ReadConsoleW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadConsoleW,ReadConsoleW,0 +.imp kernel32,__imp_ReadConsoleW,ReadConsoleW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadDirectoryChangesW.S b/libc/nt/kernel32/ReadDirectoryChangesW.S deleted file mode 100644 index 68ea03636..000000000 --- a/libc/nt/kernel32/ReadDirectoryChangesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadDirectoryChangesW,ReadDirectoryChangesW,0 diff --git a/libc/nt/kernel32/ReadFile.S b/libc/nt/kernel32/ReadFile.S index 984487b19..7545e86d7 100644 --- a/libc/nt/kernel32/ReadFile.S +++ b/libc/nt/kernel32/ReadFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadFile,ReadFile,0 +.imp kernel32,__imp_ReadFile,ReadFile .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadFileEx.S b/libc/nt/kernel32/ReadFileEx.S index bc0199f89..20ea1407d 100644 --- a/libc/nt/kernel32/ReadFileEx.S +++ b/libc/nt/kernel32/ReadFileEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadFileEx,ReadFileEx,0 +.imp kernel32,__imp_ReadFileEx,ReadFileEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadFileScatter.S b/libc/nt/kernel32/ReadFileScatter.S index 419cf7794..3a8c446f9 100644 --- a/libc/nt/kernel32/ReadFileScatter.S +++ b/libc/nt/kernel32/ReadFileScatter.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadFileScatter,ReadFileScatter,0 +.imp kernel32,__imp_ReadFileScatter,ReadFileScatter .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReadProcessMemory.S b/libc/nt/kernel32/ReadProcessMemory.S deleted file mode 100644 index 201280db3..000000000 --- a/libc/nt/kernel32/ReadProcessMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadProcessMemory,ReadProcessMemory,0 diff --git a/libc/nt/kernel32/ReadThreadProfilingData.S b/libc/nt/kernel32/ReadThreadProfilingData.S deleted file mode 100644 index 5475d27e2..000000000 --- a/libc/nt/kernel32/ReadThreadProfilingData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ReadThreadProfilingData,ReadThreadProfilingData,1141 diff --git a/libc/nt/kernel32/ReclaimVirtualMemory.S b/libc/nt/kernel32/ReclaimVirtualMemory.S deleted file mode 100644 index 82292abfc..000000000 --- a/libc/nt/kernel32/ReclaimVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ReclaimVirtualMemory,ReclaimVirtualMemory,0 diff --git a/libc/nt/kernel32/RegDisablePredefinedCacheEx.S b/libc/nt/kernel32/RegDisablePredefinedCacheEx.S deleted file mode 100644 index 7d930439c..000000000 --- a/libc/nt/kernel32/RegDisablePredefinedCacheEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegDisablePredefinedCacheEx,RegDisablePredefinedCacheEx,0 diff --git a/libc/nt/kernel32/RegisterApplicationRecoveryCallback.S b/libc/nt/kernel32/RegisterApplicationRecoveryCallback.S deleted file mode 100644 index 81c28b699..000000000 --- a/libc/nt/kernel32/RegisterApplicationRecoveryCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterApplicationRecoveryCallback,RegisterApplicationRecoveryCallback,1184 diff --git a/libc/nt/kernel32/RegisterApplicationRestart.S b/libc/nt/kernel32/RegisterApplicationRestart.S deleted file mode 100644 index 3a9ed56cf..000000000 --- a/libc/nt/kernel32/RegisterApplicationRestart.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterApplicationRestart,RegisterApplicationRestart,1185 diff --git a/libc/nt/kernel32/RegisterBadMemoryNotification.S b/libc/nt/kernel32/RegisterBadMemoryNotification.S deleted file mode 100644 index bfd6921b8..000000000 --- a/libc/nt/kernel32/RegisterBadMemoryNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterBadMemoryNotification,RegisterBadMemoryNotification,0 diff --git a/libc/nt/kernel32/RegisterConsoleIME.S b/libc/nt/kernel32/RegisterConsoleIME.S deleted file mode 100644 index 159464f1d..000000000 --- a/libc/nt/kernel32/RegisterConsoleIME.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterConsoleIME,RegisterConsoleIME,1187 diff --git a/libc/nt/kernel32/RegisterConsoleOS2.S b/libc/nt/kernel32/RegisterConsoleOS2.S deleted file mode 100644 index de519c5c1..000000000 --- a/libc/nt/kernel32/RegisterConsoleOS2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterConsoleOS2,RegisterConsoleOS2,1188 diff --git a/libc/nt/kernel32/RegisterConsoleVDM.S b/libc/nt/kernel32/RegisterConsoleVDM.S deleted file mode 100644 index 117116a3d..000000000 --- a/libc/nt/kernel32/RegisterConsoleVDM.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterConsoleVDM,RegisterConsoleVDM,1189 diff --git a/libc/nt/kernel32/RegisterWaitForInputIdle.S b/libc/nt/kernel32/RegisterWaitForInputIdle.S deleted file mode 100644 index 97e6c684c..000000000 --- a/libc/nt/kernel32/RegisterWaitForInputIdle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterWaitForInputIdle,RegisterWaitForInputIdle,1190 diff --git a/libc/nt/kernel32/RegisterWaitForSingleObject.S b/libc/nt/kernel32/RegisterWaitForSingleObject.S index 44bb5d379..cd35863a7 100644 --- a/libc/nt/kernel32/RegisterWaitForSingleObject.S +++ b/libc/nt/kernel32/RegisterWaitForSingleObject.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterWaitForSingleObject,RegisterWaitForSingleObject,1191 +.imp kernel32,__imp_RegisterWaitForSingleObject,RegisterWaitForSingleObject .text.windows .ftrace1 diff --git a/libc/nt/kernel32/RegisterWaitUntilOOBECompleted.S b/libc/nt/kernel32/RegisterWaitUntilOOBECompleted.S deleted file mode 100644 index db54c58a5..000000000 --- a/libc/nt/kernel32/RegisterWaitUntilOOBECompleted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterWaitUntilOOBECompleted,RegisterWaitUntilOOBECompleted,1193 diff --git a/libc/nt/kernel32/RegisterWowBaseHandlers.S b/libc/nt/kernel32/RegisterWowBaseHandlers.S deleted file mode 100644 index d58226e9b..000000000 --- a/libc/nt/kernel32/RegisterWowBaseHandlers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterWowBaseHandlers,RegisterWowBaseHandlers,1194 diff --git a/libc/nt/kernel32/RegisterWowExec.S b/libc/nt/kernel32/RegisterWowExec.S deleted file mode 100644 index d05bb46af..000000000 --- a/libc/nt/kernel32/RegisterWowExec.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RegisterWowExec,RegisterWowExec,1195 diff --git a/libc/nt/kernel32/ReleaseActCtx.S b/libc/nt/kernel32/ReleaseActCtx.S deleted file mode 100644 index 6cf0b3d3f..000000000 --- a/libc/nt/kernel32/ReleaseActCtx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ReleaseActCtx,ReleaseActCtx,0 diff --git a/libc/nt/kernel32/ReleaseActCtxWorker.S b/libc/nt/kernel32/ReleaseActCtxWorker.S deleted file mode 100644 index 6332346d2..000000000 --- a/libc/nt/kernel32/ReleaseActCtxWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ReleaseActCtxWorker,ReleaseActCtxWorker,1197 diff --git a/libc/nt/kernel32/ReleaseMutex.S b/libc/nt/kernel32/ReleaseMutex.S index 1b4e97fb7..1885b68b2 100644 --- a/libc/nt/kernel32/ReleaseMutex.S +++ b/libc/nt/kernel32/ReleaseMutex.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReleaseMutex,ReleaseMutex,0 +.imp kernel32,__imp_ReleaseMutex,ReleaseMutex .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReleaseSRWLockExclusive.S b/libc/nt/kernel32/ReleaseSRWLockExclusive.S index c1244c811..8dfe5c8f1 100644 --- a/libc/nt/kernel32/ReleaseSRWLockExclusive.S +++ b/libc/nt/kernel32/ReleaseSRWLockExclusive.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReleaseSRWLockExclusive,ReleaseSRWLockExclusive,0 +.imp kernel32,__imp_ReleaseSRWLockExclusive,ReleaseSRWLockExclusive .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReleaseSRWLockShared.S b/libc/nt/kernel32/ReleaseSRWLockShared.S index cdfbe2072..017510c65 100644 --- a/libc/nt/kernel32/ReleaseSRWLockShared.S +++ b/libc/nt/kernel32/ReleaseSRWLockShared.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReleaseSRWLockShared,ReleaseSRWLockShared,0 +.imp kernel32,__imp_ReleaseSRWLockShared,ReleaseSRWLockShared .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReleaseSemaphore.S b/libc/nt/kernel32/ReleaseSemaphore.S index eaf015273..a85596760 100644 --- a/libc/nt/kernel32/ReleaseSemaphore.S +++ b/libc/nt/kernel32/ReleaseSemaphore.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ReleaseSemaphore,ReleaseSemaphore,0 +.imp kernel32,__imp_ReleaseSemaphore,ReleaseSemaphore .text.windows .ftrace1 diff --git a/libc/nt/kernel32/RemoveDirectoryTransactedW.S b/libc/nt/kernel32/RemoveDirectoryTransactedW.S deleted file mode 100644 index 61b2c3bae..000000000 --- a/libc/nt/kernel32/RemoveDirectoryTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RemoveDirectoryTransactedW,RemoveDirectoryTransactedW,1206 diff --git a/libc/nt/kernel32/RemoveDirectoryW.S b/libc/nt/kernel32/RemoveDirectoryW.S index c022485ab..29f29f49a 100644 --- a/libc/nt/kernel32/RemoveDirectoryW.S +++ b/libc/nt/kernel32/RemoveDirectoryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_RemoveDirectoryW,RemoveDirectoryW,0 +.imp kernel32,__imp_RemoveDirectoryW,RemoveDirectoryW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/RemoveDllDirectory.S b/libc/nt/kernel32/RemoveDllDirectory.S deleted file mode 100644 index a4e2bf406..000000000 --- a/libc/nt/kernel32/RemoveDllDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RemoveDllDirectory,RemoveDllDirectory,0 diff --git a/libc/nt/kernel32/RemoveLocalAlternateComputerNameW.S b/libc/nt/kernel32/RemoveLocalAlternateComputerNameW.S deleted file mode 100644 index ba3ce3e60..000000000 --- a/libc/nt/kernel32/RemoveLocalAlternateComputerNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RemoveLocalAlternateComputerNameW,RemoveLocalAlternateComputerNameW,1210 diff --git a/libc/nt/kernel32/RemoveSecureMemoryCacheCallback.S b/libc/nt/kernel32/RemoveSecureMemoryCacheCallback.S deleted file mode 100644 index c9b760c11..000000000 --- a/libc/nt/kernel32/RemoveSecureMemoryCacheCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RemoveSecureMemoryCacheCallback,RemoveSecureMemoryCacheCallback,1211 diff --git a/libc/nt/kernel32/RemoveVectoredContinueHandler.S b/libc/nt/kernel32/RemoveVectoredContinueHandler.S index 15e516e70..57e1f519c 100644 --- a/libc/nt/kernel32/RemoveVectoredContinueHandler.S +++ b/libc/nt/kernel32/RemoveVectoredContinueHandler.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_RemoveVectoredContinueHandler,RemoveVectoredContinueHandler,0 +.imp kernel32,__imp_RemoveVectoredContinueHandler,RemoveVectoredContinueHandler .text.windows .ftrace1 diff --git a/libc/nt/kernel32/RemoveVectoredExceptionHandler.S b/libc/nt/kernel32/RemoveVectoredExceptionHandler.S index 83465045c..98d2f4508 100644 --- a/libc/nt/kernel32/RemoveVectoredExceptionHandler.S +++ b/libc/nt/kernel32/RemoveVectoredExceptionHandler.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_RemoveVectoredExceptionHandler,RemoveVectoredExceptionHandler,0 +.imp kernel32,__imp_RemoveVectoredExceptionHandler,RemoveVectoredExceptionHandler .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ReplaceFileW.S b/libc/nt/kernel32/ReplaceFileW.S deleted file mode 100644 index 80bdc25b2..000000000 --- a/libc/nt/kernel32/ReplaceFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ReplaceFileW,ReplaceFileW,0 diff --git a/libc/nt/kernel32/ReplacePartitionUnit.S b/libc/nt/kernel32/ReplacePartitionUnit.S deleted file mode 100644 index a41dea4f9..000000000 --- a/libc/nt/kernel32/ReplacePartitionUnit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ReplacePartitionUnit,ReplacePartitionUnit,1217 diff --git a/libc/nt/kernel32/RequestDeviceWakeup.S b/libc/nt/kernel32/RequestDeviceWakeup.S deleted file mode 100644 index 4e4b160fd..000000000 --- a/libc/nt/kernel32/RequestDeviceWakeup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RequestDeviceWakeup,RequestDeviceWakeup,1218 diff --git a/libc/nt/kernel32/RequestWakeupLatency.S b/libc/nt/kernel32/RequestWakeupLatency.S deleted file mode 100644 index 85e329738..000000000 --- a/libc/nt/kernel32/RequestWakeupLatency.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_RequestWakeupLatency,RequestWakeupLatency,1219 diff --git a/libc/nt/kernel32/ResetEvent.S b/libc/nt/kernel32/ResetEvent.S index ada56119f..3f1aac3b0 100644 --- a/libc/nt/kernel32/ResetEvent.S +++ b/libc/nt/kernel32/ResetEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_ResetEvent,ResetEvent,0 +.imp kernel32,__imp_ResetEvent,ResetEvent .text.windows .ftrace1 diff --git a/libc/nt/kernel32/ResetWriteWatch.S b/libc/nt/kernel32/ResetWriteWatch.S deleted file mode 100644 index e8d97c218..000000000 --- a/libc/nt/kernel32/ResetWriteWatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ResetWriteWatch,ResetWriteWatch,0 diff --git a/libc/nt/kernel32/ResolveDelayLoadedAPI.S b/libc/nt/kernel32/ResolveDelayLoadedAPI.S deleted file mode 100644 index 69aaed1f0..000000000 --- a/libc/nt/kernel32/ResolveDelayLoadedAPI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ResolveDelayLoadedAPI,ResolveDelayLoadedAPI,0 diff --git a/libc/nt/kernel32/ResolveDelayLoadsFromDll.S b/libc/nt/kernel32/ResolveDelayLoadsFromDll.S deleted file mode 100644 index d4d6c2ebd..000000000 --- a/libc/nt/kernel32/ResolveDelayLoadsFromDll.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ResolveDelayLoadsFromDll,ResolveDelayLoadsFromDll,0 diff --git a/libc/nt/kernel32/ResolveLocaleName.S b/libc/nt/kernel32/ResolveLocaleName.S deleted file mode 100644 index 9f35e85bc..000000000 --- a/libc/nt/kernel32/ResolveLocaleName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ResolveLocaleName,ResolveLocaleName,0 diff --git a/libc/nt/kernel32/ResumeThread.S b/libc/nt/kernel32/ResumeThread.S deleted file mode 100644 index b1b9a3412..000000000 --- a/libc/nt/kernel32/ResumeThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ResumeThread,ResumeThread,0 diff --git a/libc/nt/kernel32/ScrollConsoleScreenBufferW.S b/libc/nt/kernel32/ScrollConsoleScreenBufferW.S deleted file mode 100644 index b8aafaa2b..000000000 --- a/libc/nt/kernel32/ScrollConsoleScreenBufferW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ScrollConsoleScreenBufferW,ScrollConsoleScreenBufferW,0 diff --git a/libc/nt/kernel32/SearchPathW.S b/libc/nt/kernel32/SearchPathW.S deleted file mode 100644 index 3b2efc74d..000000000 --- a/libc/nt/kernel32/SearchPathW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SearchPathW,SearchPathW,0 diff --git a/libc/nt/kernel32/SetCalendarInfoW.S b/libc/nt/kernel32/SetCalendarInfoW.S deleted file mode 100644 index 6b018356b..000000000 --- a/libc/nt/kernel32/SetCalendarInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCalendarInfoW,SetCalendarInfoW,0 diff --git a/libc/nt/kernel32/SetComPlusPackageInstallStatus.S b/libc/nt/kernel32/SetComPlusPackageInstallStatus.S deleted file mode 100644 index c56ae97f0..000000000 --- a/libc/nt/kernel32/SetComPlusPackageInstallStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetComPlusPackageInstallStatus,SetComPlusPackageInstallStatus,1251 diff --git a/libc/nt/kernel32/SetCommBreak.S b/libc/nt/kernel32/SetCommBreak.S deleted file mode 100644 index 19d9d498e..000000000 --- a/libc/nt/kernel32/SetCommBreak.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCommBreak,SetCommBreak,0 diff --git a/libc/nt/kernel32/SetCommConfig.S b/libc/nt/kernel32/SetCommConfig.S deleted file mode 100644 index b4b646307..000000000 --- a/libc/nt/kernel32/SetCommConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCommConfig,SetCommConfig,0 diff --git a/libc/nt/kernel32/SetCommMask.S b/libc/nt/kernel32/SetCommMask.S deleted file mode 100644 index a42be7bf8..000000000 --- a/libc/nt/kernel32/SetCommMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCommMask,SetCommMask,0 diff --git a/libc/nt/kernel32/SetCommState.S b/libc/nt/kernel32/SetCommState.S deleted file mode 100644 index dfbe1ac54..000000000 --- a/libc/nt/kernel32/SetCommState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCommState,SetCommState,0 diff --git a/libc/nt/kernel32/SetCommTimeouts.S b/libc/nt/kernel32/SetCommTimeouts.S deleted file mode 100644 index 0644f6651..000000000 --- a/libc/nt/kernel32/SetCommTimeouts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCommTimeouts,SetCommTimeouts,0 diff --git a/libc/nt/kernel32/SetComputerNameExW.S b/libc/nt/kernel32/SetComputerNameExW.S deleted file mode 100644 index 8c8c87bff..000000000 --- a/libc/nt/kernel32/SetComputerNameExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetComputerNameExW,SetComputerNameExW,0 diff --git a/libc/nt/kernel32/SetComputerNameW.S b/libc/nt/kernel32/SetComputerNameW.S deleted file mode 100644 index 36a18c1bc..000000000 --- a/libc/nt/kernel32/SetComputerNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetComputerNameW,SetComputerNameW,0 diff --git a/libc/nt/kernel32/SetConsoleActiveScreenBuffer.S b/libc/nt/kernel32/SetConsoleActiveScreenBuffer.S index f5f6bd7bb..9abeba181 100644 --- a/libc/nt/kernel32/SetConsoleActiveScreenBuffer.S +++ b/libc/nt/kernel32/SetConsoleActiveScreenBuffer.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleActiveScreenBuffer,SetConsoleActiveScreenBuffer,0 +.imp kernel32,__imp_SetConsoleActiveScreenBuffer,SetConsoleActiveScreenBuffer .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleCP.S b/libc/nt/kernel32/SetConsoleCP.S index 79c340f13..f93b57b9e 100644 --- a/libc/nt/kernel32/SetConsoleCP.S +++ b/libc/nt/kernel32/SetConsoleCP.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleCP,SetConsoleCP,0 +.imp kernel32,__imp_SetConsoleCP,SetConsoleCP .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleCtrlHandler.S b/libc/nt/kernel32/SetConsoleCtrlHandler.S index b48ba03a2..32474be79 100644 --- a/libc/nt/kernel32/SetConsoleCtrlHandler.S +++ b/libc/nt/kernel32/SetConsoleCtrlHandler.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleCtrlHandler,SetConsoleCtrlHandler,0 +.imp kernel32,__imp_SetConsoleCtrlHandler,SetConsoleCtrlHandler .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleCursor.S b/libc/nt/kernel32/SetConsoleCursor.S deleted file mode 100644 index d69cb14dc..000000000 --- a/libc/nt/kernel32/SetConsoleCursor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleCursor,SetConsoleCursor,1265 diff --git a/libc/nt/kernel32/SetConsoleCursorInfo.S b/libc/nt/kernel32/SetConsoleCursorInfo.S index a31bcbca4..4d3c8bba4 100644 --- a/libc/nt/kernel32/SetConsoleCursorInfo.S +++ b/libc/nt/kernel32/SetConsoleCursorInfo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleCursorInfo,SetConsoleCursorInfo,0 +.imp kernel32,__imp_SetConsoleCursorInfo,SetConsoleCursorInfo .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleCursorMode.S b/libc/nt/kernel32/SetConsoleCursorMode.S deleted file mode 100644 index 7b458f1dc..000000000 --- a/libc/nt/kernel32/SetConsoleCursorMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleCursorMode,SetConsoleCursorMode,1267 diff --git a/libc/nt/kernel32/SetConsoleCursorPosition.S b/libc/nt/kernel32/SetConsoleCursorPosition.S index fbbe6021a..5f7cccdf8 100644 --- a/libc/nt/kernel32/SetConsoleCursorPosition.S +++ b/libc/nt/kernel32/SetConsoleCursorPosition.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleCursorPosition,SetConsoleCursorPosition,0 +.imp kernel32,__imp_SetConsoleCursorPosition,SetConsoleCursorPosition .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleDisplayMode.S b/libc/nt/kernel32/SetConsoleDisplayMode.S deleted file mode 100644 index 2f4a97551..000000000 --- a/libc/nt/kernel32/SetConsoleDisplayMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleDisplayMode,SetConsoleDisplayMode,0 diff --git a/libc/nt/kernel32/SetConsoleFont.S b/libc/nt/kernel32/SetConsoleFont.S deleted file mode 100644 index 114868ab3..000000000 --- a/libc/nt/kernel32/SetConsoleFont.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleFont,SetConsoleFont,1270 diff --git a/libc/nt/kernel32/SetConsoleHardwareState.S b/libc/nt/kernel32/SetConsoleHardwareState.S deleted file mode 100644 index 18f0b0065..000000000 --- a/libc/nt/kernel32/SetConsoleHardwareState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleHardwareState,SetConsoleHardwareState,1271 diff --git a/libc/nt/kernel32/SetConsoleHistoryInfo.S b/libc/nt/kernel32/SetConsoleHistoryInfo.S deleted file mode 100644 index 296f0a37b..000000000 --- a/libc/nt/kernel32/SetConsoleHistoryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleHistoryInfo,SetConsoleHistoryInfo,0 diff --git a/libc/nt/kernel32/SetConsoleIcon.S b/libc/nt/kernel32/SetConsoleIcon.S deleted file mode 100644 index fc6b8b993..000000000 --- a/libc/nt/kernel32/SetConsoleIcon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleIcon,SetConsoleIcon,1273 diff --git a/libc/nt/kernel32/SetConsoleKeyShortcuts.S b/libc/nt/kernel32/SetConsoleKeyShortcuts.S deleted file mode 100644 index acaffa125..000000000 --- a/libc/nt/kernel32/SetConsoleKeyShortcuts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleKeyShortcuts,SetConsoleKeyShortcuts,1276 diff --git a/libc/nt/kernel32/SetConsoleLocalEUDC.S b/libc/nt/kernel32/SetConsoleLocalEUDC.S deleted file mode 100644 index 7a2ac5488..000000000 --- a/libc/nt/kernel32/SetConsoleLocalEUDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleLocalEUDC,SetConsoleLocalEUDC,1277 diff --git a/libc/nt/kernel32/SetConsoleMaximumWindowSize.S b/libc/nt/kernel32/SetConsoleMaximumWindowSize.S deleted file mode 100644 index ff30bed9c..000000000 --- a/libc/nt/kernel32/SetConsoleMaximumWindowSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleMaximumWindowSize,SetConsoleMaximumWindowSize,1278 diff --git a/libc/nt/kernel32/SetConsoleMenuClose.S b/libc/nt/kernel32/SetConsoleMenuClose.S deleted file mode 100644 index 63355781b..000000000 --- a/libc/nt/kernel32/SetConsoleMenuClose.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleMenuClose,SetConsoleMenuClose,1279 diff --git a/libc/nt/kernel32/SetConsoleMode.S b/libc/nt/kernel32/SetConsoleMode.S index 8e2cf8630..b51311cf4 100644 --- a/libc/nt/kernel32/SetConsoleMode.S +++ b/libc/nt/kernel32/SetConsoleMode.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleMode,SetConsoleMode,0 +.imp kernel32,__imp_SetConsoleMode,SetConsoleMode .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleNlsMode.S b/libc/nt/kernel32/SetConsoleNlsMode.S deleted file mode 100644 index ace574acf..000000000 --- a/libc/nt/kernel32/SetConsoleNlsMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleNlsMode,SetConsoleNlsMode,1281 diff --git a/libc/nt/kernel32/SetConsoleOS2OemFormat.S b/libc/nt/kernel32/SetConsoleOS2OemFormat.S deleted file mode 100644 index 90192dcfc..000000000 --- a/libc/nt/kernel32/SetConsoleOS2OemFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleOS2OemFormat,SetConsoleOS2OemFormat,1284 diff --git a/libc/nt/kernel32/SetConsoleOutputCP.S b/libc/nt/kernel32/SetConsoleOutputCP.S index 85afda97e..8fda814bc 100644 --- a/libc/nt/kernel32/SetConsoleOutputCP.S +++ b/libc/nt/kernel32/SetConsoleOutputCP.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleOutputCP,SetConsoleOutputCP,0 +.imp kernel32,__imp_SetConsoleOutputCP,SetConsoleOutputCP .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsolePalette.S b/libc/nt/kernel32/SetConsolePalette.S deleted file mode 100644 index f4d2ea856..000000000 --- a/libc/nt/kernel32/SetConsolePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsolePalette,SetConsolePalette,1286 diff --git a/libc/nt/kernel32/SetConsoleScreenBufferInfoEx.S b/libc/nt/kernel32/SetConsoleScreenBufferInfoEx.S index 47ef74401..6e80e657e 100644 --- a/libc/nt/kernel32/SetConsoleScreenBufferInfoEx.S +++ b/libc/nt/kernel32/SetConsoleScreenBufferInfoEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleScreenBufferInfoEx,SetConsoleScreenBufferInfoEx,0 +.imp kernel32,__imp_SetConsoleScreenBufferInfoEx,SetConsoleScreenBufferInfoEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleScreenBufferSize.S b/libc/nt/kernel32/SetConsoleScreenBufferSize.S index b70b13242..059df3c98 100644 --- a/libc/nt/kernel32/SetConsoleScreenBufferSize.S +++ b/libc/nt/kernel32/SetConsoleScreenBufferSize.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleScreenBufferSize,SetConsoleScreenBufferSize,0 +.imp kernel32,__imp_SetConsoleScreenBufferSize,SetConsoleScreenBufferSize .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleTextAttribute.S b/libc/nt/kernel32/SetConsoleTextAttribute.S deleted file mode 100644 index 1e5f2f03c..000000000 --- a/libc/nt/kernel32/SetConsoleTextAttribute.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleTextAttribute,SetConsoleTextAttribute,0 diff --git a/libc/nt/kernel32/SetConsoleTitleW.S b/libc/nt/kernel32/SetConsoleTitleW.S index 77aaec600..8a29ae7a6 100644 --- a/libc/nt/kernel32/SetConsoleTitleW.S +++ b/libc/nt/kernel32/SetConsoleTitleW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleTitleW,SetConsoleTitleW,0 +.imp kernel32,__imp_SetConsoleTitleW,SetConsoleTitleW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetConsoleWindowInfo.S b/libc/nt/kernel32/SetConsoleWindowInfo.S index 0c5162f25..4c143788b 100644 --- a/libc/nt/kernel32/SetConsoleWindowInfo.S +++ b/libc/nt/kernel32/SetConsoleWindowInfo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetConsoleWindowInfo,SetConsoleWindowInfo,0 +.imp kernel32,__imp_SetConsoleWindowInfo,SetConsoleWindowInfo .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetCriticalSectionSpinCount.S b/libc/nt/kernel32/SetCriticalSectionSpinCount.S index 4027d55bc..c57b93ac7 100644 --- a/libc/nt/kernel32/SetCriticalSectionSpinCount.S +++ b/libc/nt/kernel32/SetCriticalSectionSpinCount.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCriticalSectionSpinCount,SetCriticalSectionSpinCount,0 +.imp kernel32,__imp_SetCriticalSectionSpinCount,SetCriticalSectionSpinCount .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetCurrentConsoleFontEx.S b/libc/nt/kernel32/SetCurrentConsoleFontEx.S deleted file mode 100644 index 3666f8104..000000000 --- a/libc/nt/kernel32/SetCurrentConsoleFontEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCurrentConsoleFontEx,SetCurrentConsoleFontEx,0 diff --git a/libc/nt/kernel32/SetCurrentDirectoryW.S b/libc/nt/kernel32/SetCurrentDirectoryW.S index 724e3d8a9..60abfb462 100644 --- a/libc/nt/kernel32/SetCurrentDirectoryW.S +++ b/libc/nt/kernel32/SetCurrentDirectoryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetCurrentDirectoryW,SetCurrentDirectoryW,0 +.imp kernel32,__imp_SetCurrentDirectoryW,SetCurrentDirectoryW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetDefaultCommConfigW.S b/libc/nt/kernel32/SetDefaultCommConfigW.S deleted file mode 100644 index 50df898af..000000000 --- a/libc/nt/kernel32/SetDefaultCommConfigW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetDefaultCommConfigW,SetDefaultCommConfigW,1298 diff --git a/libc/nt/kernel32/SetDefaultDllDirectories.S b/libc/nt/kernel32/SetDefaultDllDirectories.S index 9b47f9b11..29c14a04e 100644 --- a/libc/nt/kernel32/SetDefaultDllDirectories.S +++ b/libc/nt/kernel32/SetDefaultDllDirectories.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetDefaultDllDirectories,SetDefaultDllDirectories,0 +.imp kernel32,__imp_SetDefaultDllDirectories,SetDefaultDllDirectories .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetDllDirectoryW.S b/libc/nt/kernel32/SetDllDirectoryW.S deleted file mode 100644 index 5d062f023..000000000 --- a/libc/nt/kernel32/SetDllDirectoryW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetDllDirectoryW,SetDllDirectoryW,1301 diff --git a/libc/nt/kernel32/SetDynamicTimeZoneInformation.S b/libc/nt/kernel32/SetDynamicTimeZoneInformation.S deleted file mode 100644 index b40424f79..000000000 --- a/libc/nt/kernel32/SetDynamicTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetDynamicTimeZoneInformation,SetDynamicTimeZoneInformation,0 diff --git a/libc/nt/kernel32/SetEndOfFile.S b/libc/nt/kernel32/SetEndOfFile.S index c86a3fe3a..46d6fb951 100644 --- a/libc/nt/kernel32/SetEndOfFile.S +++ b/libc/nt/kernel32/SetEndOfFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetEndOfFile,SetEndOfFile,0 +.imp kernel32,__imp_SetEndOfFile,SetEndOfFile .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetEnvironmentVariableW.S b/libc/nt/kernel32/SetEnvironmentVariableW.S index 36dbb4170..ba7418c30 100644 --- a/libc/nt/kernel32/SetEnvironmentVariableW.S +++ b/libc/nt/kernel32/SetEnvironmentVariableW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetEnvironmentVariableW,SetEnvironmentVariableW,0 +.imp kernel32,__imp_SetEnvironmentVariableW,SetEnvironmentVariableW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetErrorMode.S b/libc/nt/kernel32/SetErrorMode.S index 42e73979a..e0f59392b 100644 --- a/libc/nt/kernel32/SetErrorMode.S +++ b/libc/nt/kernel32/SetErrorMode.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetErrorMode,SetErrorMode,0 +.imp kernel32,__imp_SetErrorMode,SetErrorMode .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetEvent.S b/libc/nt/kernel32/SetEvent.S index 57dd27b25..aba6fe17b 100644 --- a/libc/nt/kernel32/SetEvent.S +++ b/libc/nt/kernel32/SetEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetEvent,SetEvent,0 +.imp kernel32,__imp_SetEvent,SetEvent .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetFileApisToANSI.S b/libc/nt/kernel32/SetFileApisToANSI.S deleted file mode 100644 index 864ca6efd..000000000 --- a/libc/nt/kernel32/SetFileApisToANSI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileApisToANSI,SetFileApisToANSI,0 diff --git a/libc/nt/kernel32/SetFileApisToOEM.S b/libc/nt/kernel32/SetFileApisToOEM.S deleted file mode 100644 index eae8c368f..000000000 --- a/libc/nt/kernel32/SetFileApisToOEM.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileApisToOEM,SetFileApisToOEM,0 diff --git a/libc/nt/kernel32/SetFileAttributesTransactedW.S b/libc/nt/kernel32/SetFileAttributesTransactedW.S deleted file mode 100644 index 745d7eef3..000000000 --- a/libc/nt/kernel32/SetFileAttributesTransactedW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileAttributesTransactedW,SetFileAttributesTransactedW,1315 diff --git a/libc/nt/kernel32/SetFileAttributesW.S b/libc/nt/kernel32/SetFileAttributesW.S index 8d885e9df..08962e132 100644 --- a/libc/nt/kernel32/SetFileAttributesW.S +++ b/libc/nt/kernel32/SetFileAttributesW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileAttributesW,SetFileAttributesW,0 +.imp kernel32,__imp_SetFileAttributesW,SetFileAttributesW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetFileBandwidthReservation.S b/libc/nt/kernel32/SetFileBandwidthReservation.S deleted file mode 100644 index bfd355594..000000000 --- a/libc/nt/kernel32/SetFileBandwidthReservation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileBandwidthReservation,SetFileBandwidthReservation,1317 diff --git a/libc/nt/kernel32/SetFileCompletionNotificationModes.S b/libc/nt/kernel32/SetFileCompletionNotificationModes.S index 46079409e..6fd0025e1 100644 --- a/libc/nt/kernel32/SetFileCompletionNotificationModes.S +++ b/libc/nt/kernel32/SetFileCompletionNotificationModes.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileCompletionNotificationModes,SetFileCompletionNotificationModes,1318 +.imp kernel32,__imp_SetFileCompletionNotificationModes,SetFileCompletionNotificationModes .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetFileInformationByHandle.S b/libc/nt/kernel32/SetFileInformationByHandle.S deleted file mode 100644 index f15222cda..000000000 --- a/libc/nt/kernel32/SetFileInformationByHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileInformationByHandle,SetFileInformationByHandle,0 diff --git a/libc/nt/kernel32/SetFileIoOverlappedRange.S b/libc/nt/kernel32/SetFileIoOverlappedRange.S deleted file mode 100644 index 78e9a7d53..000000000 --- a/libc/nt/kernel32/SetFileIoOverlappedRange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileIoOverlappedRange,SetFileIoOverlappedRange,0 diff --git a/libc/nt/kernel32/SetFilePointer.S b/libc/nt/kernel32/SetFilePointer.S index c3be9e0dd..4fc250d78 100644 --- a/libc/nt/kernel32/SetFilePointer.S +++ b/libc/nt/kernel32/SetFilePointer.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFilePointer,SetFilePointer,0 +.imp kernel32,__imp_SetFilePointer,SetFilePointer .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetFilePointerEx.S b/libc/nt/kernel32/SetFilePointerEx.S index d0f5b1350..971e7c64d 100644 --- a/libc/nt/kernel32/SetFilePointerEx.S +++ b/libc/nt/kernel32/SetFilePointerEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFilePointerEx,SetFilePointerEx,0 +.imp kernel32,__imp_SetFilePointerEx,SetFilePointerEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetFileShortNameW.S b/libc/nt/kernel32/SetFileShortNameW.S deleted file mode 100644 index fa7d57dcf..000000000 --- a/libc/nt/kernel32/SetFileShortNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileShortNameW,SetFileShortNameW,1324 diff --git a/libc/nt/kernel32/SetFileTime.S b/libc/nt/kernel32/SetFileTime.S index f0b8669e2..3ab65e142 100644 --- a/libc/nt/kernel32/SetFileTime.S +++ b/libc/nt/kernel32/SetFileTime.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileTime,SetFileTime,0 +.imp kernel32,__imp_SetFileTime,SetFileTime .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetFileValidData.S b/libc/nt/kernel32/SetFileValidData.S index 0954a7695..2de257d47 100644 --- a/libc/nt/kernel32/SetFileValidData.S +++ b/libc/nt/kernel32/SetFileValidData.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFileValidData,SetFileValidData,0 +.imp kernel32,__imp_SetFileValidData,SetFileValidData .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetFirmwareEnvironmentVariableExW.S b/libc/nt/kernel32/SetFirmwareEnvironmentVariableExW.S deleted file mode 100644 index c73799bde..000000000 --- a/libc/nt/kernel32/SetFirmwareEnvironmentVariableExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFirmwareEnvironmentVariableExW,SetFirmwareEnvironmentVariableExW,1329 diff --git a/libc/nt/kernel32/SetFirmwareEnvironmentVariableW.S b/libc/nt/kernel32/SetFirmwareEnvironmentVariableW.S deleted file mode 100644 index f13a7bdec..000000000 --- a/libc/nt/kernel32/SetFirmwareEnvironmentVariableW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetFirmwareEnvironmentVariableW,SetFirmwareEnvironmentVariableW,1330 diff --git a/libc/nt/kernel32/SetHandleCount.S b/libc/nt/kernel32/SetHandleCount.S index f8c95913e..23fe29c3a 100644 --- a/libc/nt/kernel32/SetHandleCount.S +++ b/libc/nt/kernel32/SetHandleCount.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetHandleCount,SetHandleCount,0 +.imp kernel32,__imp_SetHandleCount,SetHandleCount .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetHandleInformation.S b/libc/nt/kernel32/SetHandleInformation.S index 0d4d2f3de..3acaf4676 100644 --- a/libc/nt/kernel32/SetHandleInformation.S +++ b/libc/nt/kernel32/SetHandleInformation.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetHandleInformation,SetHandleInformation,0 +.imp kernel32,__imp_SetHandleInformation,SetHandleInformation .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetInformationJobObject.S b/libc/nt/kernel32/SetInformationJobObject.S deleted file mode 100644 index 2bf9c2334..000000000 --- a/libc/nt/kernel32/SetInformationJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetInformationJobObject,SetInformationJobObject,1333 diff --git a/libc/nt/kernel32/SetIoRateControlInformationJobObject.S b/libc/nt/kernel32/SetIoRateControlInformationJobObject.S deleted file mode 100644 index 83ad1db53..000000000 --- a/libc/nt/kernel32/SetIoRateControlInformationJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetIoRateControlInformationJobObject,SetIoRateControlInformationJobObject,1334 diff --git a/libc/nt/kernel32/SetLastError.S b/libc/nt/kernel32/SetLastError.S index 9c0b1ac68..7795f0025 100644 --- a/libc/nt/kernel32/SetLastError.S +++ b/libc/nt/kernel32/SetLastError.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetLastError,SetLastError,0 +.imp kernel32,__imp_SetLastError,SetLastError .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetLocalPrimaryComputerNameW.S b/libc/nt/kernel32/SetLocalPrimaryComputerNameW.S deleted file mode 100644 index 8b9cf8a66..000000000 --- a/libc/nt/kernel32/SetLocalPrimaryComputerNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetLocalPrimaryComputerNameW,SetLocalPrimaryComputerNameW,1338 diff --git a/libc/nt/kernel32/SetLocalTime.S b/libc/nt/kernel32/SetLocalTime.S deleted file mode 100644 index f83ca808c..000000000 --- a/libc/nt/kernel32/SetLocalTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetLocalTime,SetLocalTime,0 diff --git a/libc/nt/kernel32/SetLocaleInfoW.S b/libc/nt/kernel32/SetLocaleInfoW.S deleted file mode 100644 index c9d94c74e..000000000 --- a/libc/nt/kernel32/SetLocaleInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetLocaleInfoW,SetLocaleInfoW,0 diff --git a/libc/nt/kernel32/SetMailslotInfo.S b/libc/nt/kernel32/SetMailslotInfo.S deleted file mode 100644 index b533d4d0b..000000000 --- a/libc/nt/kernel32/SetMailslotInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetMailslotInfo,SetMailslotInfo,1342 diff --git a/libc/nt/kernel32/SetMessageWaitingIndicator.S b/libc/nt/kernel32/SetMessageWaitingIndicator.S deleted file mode 100644 index 81c7ebcdf..000000000 --- a/libc/nt/kernel32/SetMessageWaitingIndicator.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetMessageWaitingIndicator,SetMessageWaitingIndicator,1343 diff --git a/libc/nt/kernel32/SetNamedPipeAttribute.S b/libc/nt/kernel32/SetNamedPipeAttribute.S deleted file mode 100644 index 3fae3c6f7..000000000 --- a/libc/nt/kernel32/SetNamedPipeAttribute.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetNamedPipeAttribute,SetNamedPipeAttribute,1344 diff --git a/libc/nt/kernel32/SetNamedPipeHandleState.S b/libc/nt/kernel32/SetNamedPipeHandleState.S index 56052f398..a391c8aba 100644 --- a/libc/nt/kernel32/SetNamedPipeHandleState.S +++ b/libc/nt/kernel32/SetNamedPipeHandleState.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetNamedPipeHandleState,SetNamedPipeHandleState,0 +.imp kernel32,__imp_SetNamedPipeHandleState,SetNamedPipeHandleState .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetPriorityClass.S b/libc/nt/kernel32/SetPriorityClass.S index 8e89bcad5..5a22616f4 100644 --- a/libc/nt/kernel32/SetPriorityClass.S +++ b/libc/nt/kernel32/SetPriorityClass.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetPriorityClass,SetPriorityClass,0 +.imp kernel32,__imp_SetPriorityClass,SetPriorityClass .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetProcessAffinityMask.S b/libc/nt/kernel32/SetProcessAffinityMask.S index 1198d54e5..d633041b6 100644 --- a/libc/nt/kernel32/SetProcessAffinityMask.S +++ b/libc/nt/kernel32/SetProcessAffinityMask.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessAffinityMask,SetProcessAffinityMask,1347 +.imp kernel32,__imp_SetProcessAffinityMask,SetProcessAffinityMask .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetProcessAffinityUpdateMode.S b/libc/nt/kernel32/SetProcessAffinityUpdateMode.S deleted file mode 100644 index 7dc467f26..000000000 --- a/libc/nt/kernel32/SetProcessAffinityUpdateMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessAffinityUpdateMode,SetProcessAffinityUpdateMode,0 diff --git a/libc/nt/kernel32/SetProcessDEPPolicy.S b/libc/nt/kernel32/SetProcessDEPPolicy.S deleted file mode 100644 index c43a8116e..000000000 --- a/libc/nt/kernel32/SetProcessDEPPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessDEPPolicy,SetProcessDEPPolicy,1349 diff --git a/libc/nt/kernel32/SetProcessDefaultCpuSets.S b/libc/nt/kernel32/SetProcessDefaultCpuSets.S deleted file mode 100644 index fe6c6b823..000000000 --- a/libc/nt/kernel32/SetProcessDefaultCpuSets.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessDefaultCpuSets,SetProcessDefaultCpuSets,0 diff --git a/libc/nt/kernel32/SetProcessInformation.S b/libc/nt/kernel32/SetProcessInformation.S deleted file mode 100644 index 3c5661eaf..000000000 --- a/libc/nt/kernel32/SetProcessInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessInformation,SetProcessInformation,0 diff --git a/libc/nt/kernel32/SetProcessMitigationPolicy.S b/libc/nt/kernel32/SetProcessMitigationPolicy.S deleted file mode 100644 index bd6e87d78..000000000 --- a/libc/nt/kernel32/SetProcessMitigationPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessMitigationPolicy,SetProcessMitigationPolicy,0 diff --git a/libc/nt/kernel32/SetProcessPreferredUILanguages.S b/libc/nt/kernel32/SetProcessPreferredUILanguages.S deleted file mode 100644 index a67b43d08..000000000 --- a/libc/nt/kernel32/SetProcessPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessPreferredUILanguages,SetProcessPreferredUILanguages,0 diff --git a/libc/nt/kernel32/SetProcessPriorityBoost.S b/libc/nt/kernel32/SetProcessPriorityBoost.S index bdc8283bc..236dfbf56 100644 --- a/libc/nt/kernel32/SetProcessPriorityBoost.S +++ b/libc/nt/kernel32/SetProcessPriorityBoost.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessPriorityBoost,SetProcessPriorityBoost,0 +.imp kernel32,__imp_SetProcessPriorityBoost,SetProcessPriorityBoost .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetProcessShutdownParameters.S b/libc/nt/kernel32/SetProcessShutdownParameters.S deleted file mode 100644 index 307bed53f..000000000 --- a/libc/nt/kernel32/SetProcessShutdownParameters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessShutdownParameters,SetProcessShutdownParameters,0 diff --git a/libc/nt/kernel32/SetProcessWorkingSetSize.S b/libc/nt/kernel32/SetProcessWorkingSetSize.S index b01b2e084..1e395d4ea 100644 --- a/libc/nt/kernel32/SetProcessWorkingSetSize.S +++ b/libc/nt/kernel32/SetProcessWorkingSetSize.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessWorkingSetSize,SetProcessWorkingSetSize,1356 +.imp kernel32,__imp_SetProcessWorkingSetSize,SetProcessWorkingSetSize .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetProcessWorkingSetSizeEx.S b/libc/nt/kernel32/SetProcessWorkingSetSizeEx.S index 72d529b5c..af63d2467 100644 --- a/libc/nt/kernel32/SetProcessWorkingSetSizeEx.S +++ b/libc/nt/kernel32/SetProcessWorkingSetSizeEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProcessWorkingSetSizeEx,SetProcessWorkingSetSizeEx,0 +.imp kernel32,__imp_SetProcessWorkingSetSizeEx,SetProcessWorkingSetSizeEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetProtectedPolicy.S b/libc/nt/kernel32/SetProtectedPolicy.S deleted file mode 100644 index 951142644..000000000 --- a/libc/nt/kernel32/SetProtectedPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetProtectedPolicy,SetProtectedPolicy,0 diff --git a/libc/nt/kernel32/SetSearchPathMode.S b/libc/nt/kernel32/SetSearchPathMode.S deleted file mode 100644 index 90d2c7f3a..000000000 --- a/libc/nt/kernel32/SetSearchPathMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetSearchPathMode,SetSearchPathMode,1359 diff --git a/libc/nt/kernel32/SetStdHandle.S b/libc/nt/kernel32/SetStdHandle.S index 07e418270..491acd189 100644 --- a/libc/nt/kernel32/SetStdHandle.S +++ b/libc/nt/kernel32/SetStdHandle.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetStdHandle,SetStdHandle,0 +.imp kernel32,__imp_SetStdHandle,SetStdHandle .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetSystemFileCacheSize.S b/libc/nt/kernel32/SetSystemFileCacheSize.S deleted file mode 100644 index 8c67c2cb8..000000000 --- a/libc/nt/kernel32/SetSystemFileCacheSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetSystemFileCacheSize,SetSystemFileCacheSize,0 diff --git a/libc/nt/kernel32/SetSystemPowerState.S b/libc/nt/kernel32/SetSystemPowerState.S deleted file mode 100644 index 920d9e2ff..000000000 --- a/libc/nt/kernel32/SetSystemPowerState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetSystemPowerState,SetSystemPowerState,1363 diff --git a/libc/nt/kernel32/SetSystemTime.S b/libc/nt/kernel32/SetSystemTime.S deleted file mode 100644 index 090d138fe..000000000 --- a/libc/nt/kernel32/SetSystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetSystemTime,SetSystemTime,0 diff --git a/libc/nt/kernel32/SetSystemTimeAdjustment.S b/libc/nt/kernel32/SetSystemTimeAdjustment.S deleted file mode 100644 index 4f9606c43..000000000 --- a/libc/nt/kernel32/SetSystemTimeAdjustment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetSystemTimeAdjustment,SetSystemTimeAdjustment,0 diff --git a/libc/nt/kernel32/SetTapeParameters.S b/libc/nt/kernel32/SetTapeParameters.S deleted file mode 100644 index 12aa2d1b8..000000000 --- a/libc/nt/kernel32/SetTapeParameters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetTapeParameters,SetTapeParameters,1366 diff --git a/libc/nt/kernel32/SetTapePosition.S b/libc/nt/kernel32/SetTapePosition.S deleted file mode 100644 index a4458ac86..000000000 --- a/libc/nt/kernel32/SetTapePosition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetTapePosition,SetTapePosition,1367 diff --git a/libc/nt/kernel32/SetTermsrvAppInstallMode.S b/libc/nt/kernel32/SetTermsrvAppInstallMode.S deleted file mode 100644 index 304d67e11..000000000 --- a/libc/nt/kernel32/SetTermsrvAppInstallMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetTermsrvAppInstallMode,SetTermsrvAppInstallMode,1368 diff --git a/libc/nt/kernel32/SetThreadAffinityMask.S b/libc/nt/kernel32/SetThreadAffinityMask.S index f14331d94..ef79ef00c 100644 --- a/libc/nt/kernel32/SetThreadAffinityMask.S +++ b/libc/nt/kernel32/SetThreadAffinityMask.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadAffinityMask,SetThreadAffinityMask,1369 +.imp kernel32,__imp_SetThreadAffinityMask,SetThreadAffinityMask .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetThreadContext.S b/libc/nt/kernel32/SetThreadContext.S deleted file mode 100644 index 475e167c8..000000000 --- a/libc/nt/kernel32/SetThreadContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadContext,SetThreadContext,0 diff --git a/libc/nt/kernel32/SetThreadErrorMode.S b/libc/nt/kernel32/SetThreadErrorMode.S deleted file mode 100644 index 1f0ed493f..000000000 --- a/libc/nt/kernel32/SetThreadErrorMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadErrorMode,SetThreadErrorMode,0 diff --git a/libc/nt/kernel32/SetThreadExecutionState.S b/libc/nt/kernel32/SetThreadExecutionState.S deleted file mode 100644 index 97a65b49e..000000000 --- a/libc/nt/kernel32/SetThreadExecutionState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadExecutionState,SetThreadExecutionState,1373 diff --git a/libc/nt/kernel32/SetThreadGroupAffinity.S b/libc/nt/kernel32/SetThreadGroupAffinity.S deleted file mode 100644 index 5ce91f0c3..000000000 --- a/libc/nt/kernel32/SetThreadGroupAffinity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadGroupAffinity,SetThreadGroupAffinity,0 diff --git a/libc/nt/kernel32/SetThreadIdealProcessor.S b/libc/nt/kernel32/SetThreadIdealProcessor.S deleted file mode 100644 index 9973a26aa..000000000 --- a/libc/nt/kernel32/SetThreadIdealProcessor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadIdealProcessor,SetThreadIdealProcessor,0 diff --git a/libc/nt/kernel32/SetThreadIdealProcessorEx.S b/libc/nt/kernel32/SetThreadIdealProcessorEx.S deleted file mode 100644 index e941e5c3f..000000000 --- a/libc/nt/kernel32/SetThreadIdealProcessorEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadIdealProcessorEx,SetThreadIdealProcessorEx,0 diff --git a/libc/nt/kernel32/SetThreadInformation.S b/libc/nt/kernel32/SetThreadInformation.S deleted file mode 100644 index b0fb33ed2..000000000 --- a/libc/nt/kernel32/SetThreadInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadInformation,SetThreadInformation,0 diff --git a/libc/nt/kernel32/SetThreadLocale.S b/libc/nt/kernel32/SetThreadLocale.S deleted file mode 100644 index 54de8decd..000000000 --- a/libc/nt/kernel32/SetThreadLocale.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadLocale,SetThreadLocale,0 diff --git a/libc/nt/kernel32/SetThreadPreferredUILanguages.S b/libc/nt/kernel32/SetThreadPreferredUILanguages.S deleted file mode 100644 index ea1d19dfa..000000000 --- a/libc/nt/kernel32/SetThreadPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadPreferredUILanguages,SetThreadPreferredUILanguages,0 diff --git a/libc/nt/kernel32/SetThreadPriority.S b/libc/nt/kernel32/SetThreadPriority.S index ccf5f2ce2..be988c61a 100644 --- a/libc/nt/kernel32/SetThreadPriority.S +++ b/libc/nt/kernel32/SetThreadPriority.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadPriority,SetThreadPriority,0 +.imp kernel32,__imp_SetThreadPriority,SetThreadPriority .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetThreadPriorityBoost.S b/libc/nt/kernel32/SetThreadPriorityBoost.S index 704450959..05de3cfba 100644 --- a/libc/nt/kernel32/SetThreadPriorityBoost.S +++ b/libc/nt/kernel32/SetThreadPriorityBoost.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadPriorityBoost,SetThreadPriorityBoost,0 +.imp kernel32,__imp_SetThreadPriorityBoost,SetThreadPriorityBoost .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetThreadSelectedCpuSets.S b/libc/nt/kernel32/SetThreadSelectedCpuSets.S deleted file mode 100644 index 37bfc4df7..000000000 --- a/libc/nt/kernel32/SetThreadSelectedCpuSets.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadSelectedCpuSets,SetThreadSelectedCpuSets,0 diff --git a/libc/nt/kernel32/SetThreadStackGuarantee.S b/libc/nt/kernel32/SetThreadStackGuarantee.S deleted file mode 100644 index efa725a5a..000000000 --- a/libc/nt/kernel32/SetThreadStackGuarantee.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadStackGuarantee,SetThreadStackGuarantee,0 diff --git a/libc/nt/kernel32/SetThreadUILanguage.S b/libc/nt/kernel32/SetThreadUILanguage.S deleted file mode 100644 index 524883ea9..000000000 --- a/libc/nt/kernel32/SetThreadUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadUILanguage,SetThreadUILanguage,0 diff --git a/libc/nt/kernel32/SetThreadpoolStackInformation.S b/libc/nt/kernel32/SetThreadpoolStackInformation.S deleted file mode 100644 index 5767a1e18..000000000 --- a/libc/nt/kernel32/SetThreadpoolStackInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadpoolStackInformation,SetThreadpoolStackInformation,0 diff --git a/libc/nt/kernel32/SetThreadpoolThreadMinimum.S b/libc/nt/kernel32/SetThreadpoolThreadMinimum.S deleted file mode 100644 index b95479282..000000000 --- a/libc/nt/kernel32/SetThreadpoolThreadMinimum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetThreadpoolThreadMinimum,SetThreadpoolThreadMinimum,0 diff --git a/libc/nt/kernel32/SetTimeZoneInformation.S b/libc/nt/kernel32/SetTimeZoneInformation.S deleted file mode 100644 index ef6c65feb..000000000 --- a/libc/nt/kernel32/SetTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetTimeZoneInformation,SetTimeZoneInformation,0 diff --git a/libc/nt/kernel32/SetTimerQueueTimer.S b/libc/nt/kernel32/SetTimerQueueTimer.S deleted file mode 100644 index 5f3f69517..000000000 --- a/libc/nt/kernel32/SetTimerQueueTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetTimerQueueTimer,SetTimerQueueTimer,1394 diff --git a/libc/nt/kernel32/SetUmsThreadInformation.S b/libc/nt/kernel32/SetUmsThreadInformation.S deleted file mode 100644 index 876d164e5..000000000 --- a/libc/nt/kernel32/SetUmsThreadInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetUmsThreadInformation,SetUmsThreadInformation,1395 diff --git a/libc/nt/kernel32/SetUnhandledExceptionFilter.S b/libc/nt/kernel32/SetUnhandledExceptionFilter.S index 1c7e9b87a..88f92d927 100644 --- a/libc/nt/kernel32/SetUnhandledExceptionFilter.S +++ b/libc/nt/kernel32/SetUnhandledExceptionFilter.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetUnhandledExceptionFilter,SetUnhandledExceptionFilter,0 +.imp kernel32,__imp_SetUnhandledExceptionFilter,SetUnhandledExceptionFilter .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetUserGeoID.S b/libc/nt/kernel32/SetUserGeoID.S deleted file mode 100644 index 4a68d59a2..000000000 --- a/libc/nt/kernel32/SetUserGeoID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetUserGeoID,SetUserGeoID,0 diff --git a/libc/nt/kernel32/SetVDMCurrentDirectories.S b/libc/nt/kernel32/SetVDMCurrentDirectories.S deleted file mode 100644 index 5d4b5034b..000000000 --- a/libc/nt/kernel32/SetVDMCurrentDirectories.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetVDMCurrentDirectories,SetVDMCurrentDirectories,1399 diff --git a/libc/nt/kernel32/SetVolumeLabelW.S b/libc/nt/kernel32/SetVolumeLabelW.S deleted file mode 100644 index 633bc0fa5..000000000 --- a/libc/nt/kernel32/SetVolumeLabelW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetVolumeLabelW,SetVolumeLabelW,1401 diff --git a/libc/nt/kernel32/SetVolumeMountPointW.S b/libc/nt/kernel32/SetVolumeMountPointW.S deleted file mode 100644 index ed7b77ed7..000000000 --- a/libc/nt/kernel32/SetVolumeMountPointW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetVolumeMountPointW,SetVolumeMountPointW,1403 diff --git a/libc/nt/kernel32/SetVolumeMountPointWStub.S b/libc/nt/kernel32/SetVolumeMountPointWStub.S deleted file mode 100644 index 119b48ea2..000000000 --- a/libc/nt/kernel32/SetVolumeMountPointWStub.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetVolumeMountPointWStub,SetVolumeMountPointWStub,1404 diff --git a/libc/nt/kernel32/SetWaitableTimer.S b/libc/nt/kernel32/SetWaitableTimer.S index 0aa51b5de..d9aec1545 100644 --- a/libc/nt/kernel32/SetWaitableTimer.S +++ b/libc/nt/kernel32/SetWaitableTimer.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SetWaitableTimer,SetWaitableTimer,0 +.imp kernel32,__imp_SetWaitableTimer,SetWaitableTimer .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SetWaitableTimerEx.S b/libc/nt/kernel32/SetWaitableTimerEx.S deleted file mode 100644 index 8f3cc65dc..000000000 --- a/libc/nt/kernel32/SetWaitableTimerEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetWaitableTimerEx,SetWaitableTimerEx,0 diff --git a/libc/nt/kernel32/SetXStateFeaturesMask.S b/libc/nt/kernel32/SetXStateFeaturesMask.S deleted file mode 100644 index 85e042c83..000000000 --- a/libc/nt/kernel32/SetXStateFeaturesMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetXStateFeaturesMask,SetXStateFeaturesMask,0 diff --git a/libc/nt/kernel32/SetupComm.S b/libc/nt/kernel32/SetupComm.S deleted file mode 100644 index 9cf97aea4..000000000 --- a/libc/nt/kernel32/SetupComm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SetupComm,SetupComm,0 diff --git a/libc/nt/kernel32/ShowConsoleCursor.S b/libc/nt/kernel32/ShowConsoleCursor.S deleted file mode 100644 index a31740d5b..000000000 --- a/libc/nt/kernel32/ShowConsoleCursor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ShowConsoleCursor,ShowConsoleCursor,1409 diff --git a/libc/nt/kernel32/SignalObjectAndWait.S b/libc/nt/kernel32/SignalObjectAndWait.S deleted file mode 100644 index 3d5fc0b73..000000000 --- a/libc/nt/kernel32/SignalObjectAndWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SignalObjectAndWait,SignalObjectAndWait,0 diff --git a/libc/nt/kernel32/SizeofResource.S b/libc/nt/kernel32/SizeofResource.S deleted file mode 100644 index dd16d1e20..000000000 --- a/libc/nt/kernel32/SizeofResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SizeofResource,SizeofResource,0 diff --git a/libc/nt/kernel32/Sleep.S b/libc/nt/kernel32/Sleep.S index 42dc69bd4..834758f76 100644 --- a/libc/nt/kernel32/Sleep.S +++ b/libc/nt/kernel32/Sleep.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_Sleep,Sleep,0 +.imp kernel32,__imp_Sleep,Sleep .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SleepConditionVariableCS.S b/libc/nt/kernel32/SleepConditionVariableCS.S deleted file mode 100644 index 92682e45b..000000000 --- a/libc/nt/kernel32/SleepConditionVariableCS.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SleepConditionVariableCS,SleepConditionVariableCS,0 diff --git a/libc/nt/kernel32/SleepConditionVariableSRW.S b/libc/nt/kernel32/SleepConditionVariableSRW.S deleted file mode 100644 index 330503f0c..000000000 --- a/libc/nt/kernel32/SleepConditionVariableSRW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SleepConditionVariableSRW,SleepConditionVariableSRW,0 diff --git a/libc/nt/kernel32/SleepEx.S b/libc/nt/kernel32/SleepEx.S index 0a936a103..95c8e88ae 100644 --- a/libc/nt/kernel32/SleepEx.S +++ b/libc/nt/kernel32/SleepEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SleepEx,SleepEx,0 +.imp kernel32,__imp_SleepEx,SleepEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SortCloseHandle.S b/libc/nt/kernel32/SortCloseHandle.S deleted file mode 100644 index a81908a52..000000000 --- a/libc/nt/kernel32/SortCloseHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SortCloseHandle,SortCloseHandle,1416 diff --git a/libc/nt/kernel32/SortGetHandle.S b/libc/nt/kernel32/SortGetHandle.S deleted file mode 100644 index 5d50bd649..000000000 --- a/libc/nt/kernel32/SortGetHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SortGetHandle,SortGetHandle,1417 diff --git a/libc/nt/kernel32/SuspendThread.S b/libc/nt/kernel32/SuspendThread.S index 0e3036e42..9d1a16392 100644 --- a/libc/nt/kernel32/SuspendThread.S +++ b/libc/nt/kernel32/SuspendThread.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SuspendThread,SuspendThread,0 +.imp kernel32,__imp_SuspendThread,SuspendThread .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SwitchToFiber.S b/libc/nt/kernel32/SwitchToFiber.S deleted file mode 100644 index 650f50e10..000000000 --- a/libc/nt/kernel32/SwitchToFiber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SwitchToFiber,SwitchToFiber,0 diff --git a/libc/nt/kernel32/SwitchToThread.S b/libc/nt/kernel32/SwitchToThread.S deleted file mode 100644 index 0083dd072..000000000 --- a/libc/nt/kernel32/SwitchToThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SwitchToThread,SwitchToThread,0 diff --git a/libc/nt/kernel32/SystemTimeToFileTime.S b/libc/nt/kernel32/SystemTimeToFileTime.S index 3d0e291d7..8c2d563e9 100644 --- a/libc/nt/kernel32/SystemTimeToFileTime.S +++ b/libc/nt/kernel32/SystemTimeToFileTime.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_SystemTimeToFileTime,SystemTimeToFileTime,0 +.imp kernel32,__imp_SystemTimeToFileTime,SystemTimeToFileTime .text.windows .ftrace1 diff --git a/libc/nt/kernel32/SystemTimeToTzSpecificLocalTime.S b/libc/nt/kernel32/SystemTimeToTzSpecificLocalTime.S deleted file mode 100644 index 54daa4e8e..000000000 --- a/libc/nt/kernel32/SystemTimeToTzSpecificLocalTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SystemTimeToTzSpecificLocalTime,SystemTimeToTzSpecificLocalTime,0 diff --git a/libc/nt/kernel32/SystemTimeToTzSpecificLocalTimeEx.S b/libc/nt/kernel32/SystemTimeToTzSpecificLocalTimeEx.S deleted file mode 100644 index 143ef7060..000000000 --- a/libc/nt/kernel32/SystemTimeToTzSpecificLocalTimeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_SystemTimeToTzSpecificLocalTimeEx,SystemTimeToTzSpecificLocalTimeEx,0 diff --git a/libc/nt/kernel32/TerminateJobObject.S b/libc/nt/kernel32/TerminateJobObject.S deleted file mode 100644 index d90db7d8f..000000000 --- a/libc/nt/kernel32/TerminateJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TerminateJobObject,TerminateJobObject,1426 diff --git a/libc/nt/kernel32/TerminateProcess.S b/libc/nt/kernel32/TerminateProcess.S index b6be5ede0..ccc8d3960 100644 --- a/libc/nt/kernel32/TerminateProcess.S +++ b/libc/nt/kernel32/TerminateProcess.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TerminateProcess,TerminateProcess,0 +.imp kernel32,__imp_TerminateProcess,TerminateProcess .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TerminateThread.S b/libc/nt/kernel32/TerminateThread.S index 35e9a61b1..860e51cad 100644 --- a/libc/nt/kernel32/TerminateThread.S +++ b/libc/nt/kernel32/TerminateThread.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TerminateThread,TerminateThread,0 +.imp kernel32,__imp_TerminateThread,TerminateThread .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TermsrvAppInstallMode.S b/libc/nt/kernel32/TermsrvAppInstallMode.S deleted file mode 100644 index 73be49de3..000000000 --- a/libc/nt/kernel32/TermsrvAppInstallMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvAppInstallMode,TermsrvAppInstallMode,1429 diff --git a/libc/nt/kernel32/TermsrvConvertSysRootToUserDir.S b/libc/nt/kernel32/TermsrvConvertSysRootToUserDir.S deleted file mode 100644 index 6e584ab44..000000000 --- a/libc/nt/kernel32/TermsrvConvertSysRootToUserDir.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvConvertSysRootToUserDir,TermsrvConvertSysRootToUserDir,1430 diff --git a/libc/nt/kernel32/TermsrvCreateRegEntry.S b/libc/nt/kernel32/TermsrvCreateRegEntry.S deleted file mode 100644 index 773498b60..000000000 --- a/libc/nt/kernel32/TermsrvCreateRegEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvCreateRegEntry,TermsrvCreateRegEntry,1431 diff --git a/libc/nt/kernel32/TermsrvDeleteKey.S b/libc/nt/kernel32/TermsrvDeleteKey.S deleted file mode 100644 index b3484e997..000000000 --- a/libc/nt/kernel32/TermsrvDeleteKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvDeleteKey,TermsrvDeleteKey,1432 diff --git a/libc/nt/kernel32/TermsrvDeleteValue.S b/libc/nt/kernel32/TermsrvDeleteValue.S deleted file mode 100644 index cfa800eec..000000000 --- a/libc/nt/kernel32/TermsrvDeleteValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvDeleteValue,TermsrvDeleteValue,1433 diff --git a/libc/nt/kernel32/TermsrvGetPreSetValue.S b/libc/nt/kernel32/TermsrvGetPreSetValue.S deleted file mode 100644 index ec710e293..000000000 --- a/libc/nt/kernel32/TermsrvGetPreSetValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvGetPreSetValue,TermsrvGetPreSetValue,1434 diff --git a/libc/nt/kernel32/TermsrvGetWindowsDirectoryW.S b/libc/nt/kernel32/TermsrvGetWindowsDirectoryW.S deleted file mode 100644 index 0f0455314..000000000 --- a/libc/nt/kernel32/TermsrvGetWindowsDirectoryW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvGetWindowsDirectoryW,TermsrvGetWindowsDirectoryW,1436 diff --git a/libc/nt/kernel32/TermsrvOpenRegEntry.S b/libc/nt/kernel32/TermsrvOpenRegEntry.S deleted file mode 100644 index 7e7ff79b5..000000000 --- a/libc/nt/kernel32/TermsrvOpenRegEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvOpenRegEntry,TermsrvOpenRegEntry,1437 diff --git a/libc/nt/kernel32/TermsrvOpenUserClasses.S b/libc/nt/kernel32/TermsrvOpenUserClasses.S deleted file mode 100644 index 90a841de3..000000000 --- a/libc/nt/kernel32/TermsrvOpenUserClasses.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvOpenUserClasses,TermsrvOpenUserClasses,1438 diff --git a/libc/nt/kernel32/TermsrvRestoreKey.S b/libc/nt/kernel32/TermsrvRestoreKey.S deleted file mode 100644 index 02b99bd62..000000000 --- a/libc/nt/kernel32/TermsrvRestoreKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvRestoreKey,TermsrvRestoreKey,1439 diff --git a/libc/nt/kernel32/TermsrvSetKeySecurity.S b/libc/nt/kernel32/TermsrvSetKeySecurity.S deleted file mode 100644 index 9f5845a0d..000000000 --- a/libc/nt/kernel32/TermsrvSetKeySecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvSetKeySecurity,TermsrvSetKeySecurity,1440 diff --git a/libc/nt/kernel32/TermsrvSetValueKey.S b/libc/nt/kernel32/TermsrvSetValueKey.S deleted file mode 100644 index 8bf31f4f1..000000000 --- a/libc/nt/kernel32/TermsrvSetValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvSetValueKey,TermsrvSetValueKey,1441 diff --git a/libc/nt/kernel32/TermsrvSyncUserIniFileExt.S b/libc/nt/kernel32/TermsrvSyncUserIniFileExt.S deleted file mode 100644 index 2e8eeefe1..000000000 --- a/libc/nt/kernel32/TermsrvSyncUserIniFileExt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TermsrvSyncUserIniFileExt,TermsrvSyncUserIniFileExt,1442 diff --git a/libc/nt/kernel32/Thread32First.S b/libc/nt/kernel32/Thread32First.S deleted file mode 100644 index 301e41ad6..000000000 --- a/libc/nt/kernel32/Thread32First.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Thread32First,Thread32First,1443 diff --git a/libc/nt/kernel32/Thread32Next.S b/libc/nt/kernel32/Thread32Next.S deleted file mode 100644 index 879fb8f8f..000000000 --- a/libc/nt/kernel32/Thread32Next.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Thread32Next,Thread32Next,1444 diff --git a/libc/nt/kernel32/TlsAlloc.S b/libc/nt/kernel32/TlsAlloc.S index 2049e409b..6a102b0e1 100644 --- a/libc/nt/kernel32/TlsAlloc.S +++ b/libc/nt/kernel32/TlsAlloc.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TlsAlloc,TlsAlloc,0 +.imp kernel32,__imp_TlsAlloc,TlsAlloc .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TlsFree.S b/libc/nt/kernel32/TlsFree.S index 3db8ae1ec..0bd15a28b 100644 --- a/libc/nt/kernel32/TlsFree.S +++ b/libc/nt/kernel32/TlsFree.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TlsFree,TlsFree,0 +.imp kernel32,__imp_TlsFree,TlsFree .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TlsGetValue.S b/libc/nt/kernel32/TlsGetValue.S index e5d6d1995..bc7ed14e0 100644 --- a/libc/nt/kernel32/TlsGetValue.S +++ b/libc/nt/kernel32/TlsGetValue.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TlsGetValue,TlsGetValue,0 +.imp kernel32,__imp_TlsGetValue,TlsGetValue .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TlsSetValue.S b/libc/nt/kernel32/TlsSetValue.S index be6366a83..f2a8dfc9b 100644 --- a/libc/nt/kernel32/TlsSetValue.S +++ b/libc/nt/kernel32/TlsSetValue.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TlsSetValue,TlsSetValue,0 +.imp kernel32,__imp_TlsSetValue,TlsSetValue .text.windows .ftrace1 diff --git a/libc/nt/kernel32/Toolhelp32ReadProcessMemory.S b/libc/nt/kernel32/Toolhelp32ReadProcessMemory.S deleted file mode 100644 index da537edac..000000000 --- a/libc/nt/kernel32/Toolhelp32ReadProcessMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_Toolhelp32ReadProcessMemory,Toolhelp32ReadProcessMemory,1449 diff --git a/libc/nt/kernel32/TransactNamedPipe.S b/libc/nt/kernel32/TransactNamedPipe.S index 2ac8ebc75..4ec2f8d77 100644 --- a/libc/nt/kernel32/TransactNamedPipe.S +++ b/libc/nt/kernel32/TransactNamedPipe.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TransactNamedPipe,TransactNamedPipe,0 +.imp kernel32,__imp_TransactNamedPipe,TransactNamedPipe .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TransmitCommChar.S b/libc/nt/kernel32/TransmitCommChar.S index 940335f2d..29d611362 100644 --- a/libc/nt/kernel32/TransmitCommChar.S +++ b/libc/nt/kernel32/TransmitCommChar.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TransmitCommChar,TransmitCommChar,0 +.imp kernel32,__imp_TransmitCommChar,TransmitCommChar .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TryAcquireSRWLockExclusive.S b/libc/nt/kernel32/TryAcquireSRWLockExclusive.S index 2db531863..954526f87 100644 --- a/libc/nt/kernel32/TryAcquireSRWLockExclusive.S +++ b/libc/nt/kernel32/TryAcquireSRWLockExclusive.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TryAcquireSRWLockExclusive,TryAcquireSRWLockExclusive,0 +.imp kernel32,__imp_TryAcquireSRWLockExclusive,TryAcquireSRWLockExclusive .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TryAcquireSRWLockShared.S b/libc/nt/kernel32/TryAcquireSRWLockShared.S index bff4def63..88996c799 100644 --- a/libc/nt/kernel32/TryAcquireSRWLockShared.S +++ b/libc/nt/kernel32/TryAcquireSRWLockShared.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TryAcquireSRWLockShared,TryAcquireSRWLockShared,0 +.imp kernel32,__imp_TryAcquireSRWLockShared,TryAcquireSRWLockShared .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TryEnterCriticalSection.S b/libc/nt/kernel32/TryEnterCriticalSection.S index b72bebb39..beb6c91c6 100644 --- a/libc/nt/kernel32/TryEnterCriticalSection.S +++ b/libc/nt/kernel32/TryEnterCriticalSection.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_TryEnterCriticalSection,TryEnterCriticalSection,0 +.imp kernel32,__imp_TryEnterCriticalSection,TryEnterCriticalSection .text.windows .ftrace1 diff --git a/libc/nt/kernel32/TrySubmitThreadpoolCallback.S b/libc/nt/kernel32/TrySubmitThreadpoolCallback.S deleted file mode 100644 index 2ee83aba0..000000000 --- a/libc/nt/kernel32/TrySubmitThreadpoolCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TrySubmitThreadpoolCallback,TrySubmitThreadpoolCallback,0 diff --git a/libc/nt/kernel32/TzSpecificLocalTimeToSystemTime.S b/libc/nt/kernel32/TzSpecificLocalTimeToSystemTime.S deleted file mode 100644 index 5c4fb5228..000000000 --- a/libc/nt/kernel32/TzSpecificLocalTimeToSystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TzSpecificLocalTimeToSystemTime,TzSpecificLocalTimeToSystemTime,0 diff --git a/libc/nt/kernel32/TzSpecificLocalTimeToSystemTimeEx.S b/libc/nt/kernel32/TzSpecificLocalTimeToSystemTimeEx.S deleted file mode 100644 index aabf37168..000000000 --- a/libc/nt/kernel32/TzSpecificLocalTimeToSystemTimeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_TzSpecificLocalTimeToSystemTimeEx,TzSpecificLocalTimeToSystemTimeEx,0 diff --git a/libc/nt/kernel32/UTRegister.S b/libc/nt/kernel32/UTRegister.S deleted file mode 100644 index 461559bba..000000000 --- a/libc/nt/kernel32/UTRegister.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UTRegister,UTRegister,1458 diff --git a/libc/nt/kernel32/UTUnRegister.S b/libc/nt/kernel32/UTUnRegister.S deleted file mode 100644 index 697d18c13..000000000 --- a/libc/nt/kernel32/UTUnRegister.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UTUnRegister,UTUnRegister,1459 diff --git a/libc/nt/kernel32/UmsThreadYield.S b/libc/nt/kernel32/UmsThreadYield.S deleted file mode 100644 index ce2212ffa..000000000 --- a/libc/nt/kernel32/UmsThreadYield.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UmsThreadYield,UmsThreadYield,1460 diff --git a/libc/nt/kernel32/UnhandledExceptionFilter.S b/libc/nt/kernel32/UnhandledExceptionFilter.S deleted file mode 100644 index eae2cc841..000000000 --- a/libc/nt/kernel32/UnhandledExceptionFilter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UnhandledExceptionFilter,UnhandledExceptionFilter,0 diff --git a/libc/nt/kernel32/UnlockFile.S b/libc/nt/kernel32/UnlockFile.S index 42e7b7a59..fdad93773 100644 --- a/libc/nt/kernel32/UnlockFile.S +++ b/libc/nt/kernel32/UnlockFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_UnlockFile,UnlockFile,0 +.imp kernel32,__imp_UnlockFile,UnlockFile .text.windows .ftrace1 diff --git a/libc/nt/kernel32/UnlockFileEx.S b/libc/nt/kernel32/UnlockFileEx.S index d53616880..bb82191ea 100644 --- a/libc/nt/kernel32/UnlockFileEx.S +++ b/libc/nt/kernel32/UnlockFileEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_UnlockFileEx,UnlockFileEx,0 +.imp kernel32,__imp_UnlockFileEx,UnlockFileEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/UnmapViewOfFile.S b/libc/nt/kernel32/UnmapViewOfFile.S index 3f37915ef..58156dab3 100644 --- a/libc/nt/kernel32/UnmapViewOfFile.S +++ b/libc/nt/kernel32/UnmapViewOfFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_UnmapViewOfFile,UnmapViewOfFile,0 +.imp kernel32,__imp_UnmapViewOfFile,UnmapViewOfFile .text.windows .ftrace1 diff --git a/libc/nt/kernel32/UnmapViewOfFile2.S b/libc/nt/kernel32/UnmapViewOfFile2.S index b66606d74..975c07ac4 100644 --- a/libc/nt/kernel32/UnmapViewOfFile2.S +++ b/libc/nt/kernel32/UnmapViewOfFile2.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_UnmapViewOfFile2,UnmapViewOfFile2,0 +.imp kernel32,__imp_UnmapViewOfFile2,UnmapViewOfFile2 .text.windows .ftrace1 diff --git a/libc/nt/kernel32/UnmapViewOfFileEx.S b/libc/nt/kernel32/UnmapViewOfFileEx.S index d24b78573..e4b331eea 100644 --- a/libc/nt/kernel32/UnmapViewOfFileEx.S +++ b/libc/nt/kernel32/UnmapViewOfFileEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_UnmapViewOfFileEx,UnmapViewOfFileEx,0 +.imp kernel32,__imp_UnmapViewOfFileEx,UnmapViewOfFileEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/UnregisterApplicationRecoveryCallback.S b/libc/nt/kernel32/UnregisterApplicationRecoveryCallback.S deleted file mode 100644 index 9534fe033..000000000 --- a/libc/nt/kernel32/UnregisterApplicationRecoveryCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UnregisterApplicationRecoveryCallback,UnregisterApplicationRecoveryCallback,1466 diff --git a/libc/nt/kernel32/UnregisterApplicationRestart.S b/libc/nt/kernel32/UnregisterApplicationRestart.S deleted file mode 100644 index a788439f2..000000000 --- a/libc/nt/kernel32/UnregisterApplicationRestart.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UnregisterApplicationRestart,UnregisterApplicationRestart,1467 diff --git a/libc/nt/kernel32/UnregisterBadMemoryNotification.S b/libc/nt/kernel32/UnregisterBadMemoryNotification.S deleted file mode 100644 index 98f3d4dce..000000000 --- a/libc/nt/kernel32/UnregisterBadMemoryNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UnregisterBadMemoryNotification,UnregisterBadMemoryNotification,0 diff --git a/libc/nt/kernel32/UnregisterConsoleIME.S b/libc/nt/kernel32/UnregisterConsoleIME.S deleted file mode 100644 index 9fb99d5d4..000000000 --- a/libc/nt/kernel32/UnregisterConsoleIME.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UnregisterConsoleIME,UnregisterConsoleIME,1469 diff --git a/libc/nt/kernel32/UnregisterWait.S b/libc/nt/kernel32/UnregisterWait.S deleted file mode 100644 index c581928f1..000000000 --- a/libc/nt/kernel32/UnregisterWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UnregisterWait,UnregisterWait,1470 diff --git a/libc/nt/kernel32/UnregisterWaitEx.S b/libc/nt/kernel32/UnregisterWaitEx.S deleted file mode 100644 index 4f3e51d85..000000000 --- a/libc/nt/kernel32/UnregisterWaitEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UnregisterWaitEx,UnregisterWaitEx,0 diff --git a/libc/nt/kernel32/UnregisterWaitUntilOOBECompleted.S b/libc/nt/kernel32/UnregisterWaitUntilOOBECompleted.S deleted file mode 100644 index a4111fac2..000000000 --- a/libc/nt/kernel32/UnregisterWaitUntilOOBECompleted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UnregisterWaitUntilOOBECompleted,UnregisterWaitUntilOOBECompleted,1472 diff --git a/libc/nt/kernel32/UpdateCalendarDayOfWeek.S b/libc/nt/kernel32/UpdateCalendarDayOfWeek.S deleted file mode 100644 index ef3266baf..000000000 --- a/libc/nt/kernel32/UpdateCalendarDayOfWeek.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UpdateCalendarDayOfWeek,UpdateCalendarDayOfWeek,1473 diff --git a/libc/nt/kernel32/UpdateProcThreadAttribute.S b/libc/nt/kernel32/UpdateProcThreadAttribute.S index 7954595e5..3dc818403 100644 --- a/libc/nt/kernel32/UpdateProcThreadAttribute.S +++ b/libc/nt/kernel32/UpdateProcThreadAttribute.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_UpdateProcThreadAttribute,UpdateProcThreadAttribute,0 +.imp kernel32,__imp_UpdateProcThreadAttribute,UpdateProcThreadAttribute .text.windows .ftrace1 diff --git a/libc/nt/kernel32/UpdateResourceW.S b/libc/nt/kernel32/UpdateResourceW.S deleted file mode 100644 index d6a8e1eef..000000000 --- a/libc/nt/kernel32/UpdateResourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_UpdateResourceW,UpdateResourceW,1476 diff --git a/libc/nt/kernel32/VDMConsoleOperation.S b/libc/nt/kernel32/VDMConsoleOperation.S deleted file mode 100644 index c89b3134b..000000000 --- a/libc/nt/kernel32/VDMConsoleOperation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VDMConsoleOperation,VDMConsoleOperation,1477 diff --git a/libc/nt/kernel32/VDMOperationStarted.S b/libc/nt/kernel32/VDMOperationStarted.S deleted file mode 100644 index b18c820e8..000000000 --- a/libc/nt/kernel32/VDMOperationStarted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VDMOperationStarted,VDMOperationStarted,1478 diff --git a/libc/nt/kernel32/VerLanguageNameW.S b/libc/nt/kernel32/VerLanguageNameW.S deleted file mode 100644 index 6e092bd74..000000000 --- a/libc/nt/kernel32/VerLanguageNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VerLanguageNameW,VerLanguageNameW,0 diff --git a/libc/nt/kernel32/VerifyConsoleIoHandle.S b/libc/nt/kernel32/VerifyConsoleIoHandle.S deleted file mode 100644 index 93574e1d4..000000000 --- a/libc/nt/kernel32/VerifyConsoleIoHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VerifyConsoleIoHandle,VerifyConsoleIoHandle,1482 diff --git a/libc/nt/kernel32/VerifyScripts.S b/libc/nt/kernel32/VerifyScripts.S deleted file mode 100644 index 781cbe4a2..000000000 --- a/libc/nt/kernel32/VerifyScripts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VerifyScripts,VerifyScripts,0 diff --git a/libc/nt/kernel32/VerifyVersionInfoW.S b/libc/nt/kernel32/VerifyVersionInfoW.S deleted file mode 100644 index 6e14392b1..000000000 --- a/libc/nt/kernel32/VerifyVersionInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VerifyVersionInfoW,VerifyVersionInfoW,1485 diff --git a/libc/nt/kernel32/VirtualAlloc.S b/libc/nt/kernel32/VirtualAlloc.S index b80255e87..5804c218c 100644 --- a/libc/nt/kernel32/VirtualAlloc.S +++ b/libc/nt/kernel32/VirtualAlloc.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualAlloc,VirtualAlloc,0 +.imp kernel32,__imp_VirtualAlloc,VirtualAlloc .text.windows .ftrace1 diff --git a/libc/nt/kernel32/VirtualAllocEx.S b/libc/nt/kernel32/VirtualAllocEx.S index 4e40cb4c1..7facb7203 100644 --- a/libc/nt/kernel32/VirtualAllocEx.S +++ b/libc/nt/kernel32/VirtualAllocEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualAllocEx,VirtualAllocEx,0 +.imp kernel32,__imp_VirtualAllocEx,VirtualAllocEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/VirtualAllocExNuma.S b/libc/nt/kernel32/VirtualAllocExNuma.S deleted file mode 100644 index a5bb029d1..000000000 --- a/libc/nt/kernel32/VirtualAllocExNuma.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualAllocExNuma,VirtualAllocExNuma,0 diff --git a/libc/nt/kernel32/VirtualFree.S b/libc/nt/kernel32/VirtualFree.S index 0cdeb9a44..3fa3e6b40 100644 --- a/libc/nt/kernel32/VirtualFree.S +++ b/libc/nt/kernel32/VirtualFree.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualFree,VirtualFree,0 +.imp kernel32,__imp_VirtualFree,VirtualFree .text.windows .ftrace1 diff --git a/libc/nt/kernel32/VirtualFreeEx.S b/libc/nt/kernel32/VirtualFreeEx.S deleted file mode 100644 index 769e07296..000000000 --- a/libc/nt/kernel32/VirtualFreeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualFreeEx,VirtualFreeEx,0 diff --git a/libc/nt/kernel32/VirtualLock.S b/libc/nt/kernel32/VirtualLock.S index c0600059f..c364a7e7b 100644 --- a/libc/nt/kernel32/VirtualLock.S +++ b/libc/nt/kernel32/VirtualLock.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualLock,VirtualLock,0 +.imp kernel32,__imp_VirtualLock,VirtualLock .text.windows .ftrace1 diff --git a/libc/nt/kernel32/VirtualProtect.S b/libc/nt/kernel32/VirtualProtect.S index 7da219946..3d2b0cc7c 100644 --- a/libc/nt/kernel32/VirtualProtect.S +++ b/libc/nt/kernel32/VirtualProtect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualProtect,VirtualProtect,0 +.imp kernel32,__imp_VirtualProtect,VirtualProtect .text.windows .ftrace1 diff --git a/libc/nt/kernel32/VirtualProtectEx.S b/libc/nt/kernel32/VirtualProtectEx.S deleted file mode 100644 index ddc931caf..000000000 --- a/libc/nt/kernel32/VirtualProtectEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualProtectEx,VirtualProtectEx,0 diff --git a/libc/nt/kernel32/VirtualQuery.S b/libc/nt/kernel32/VirtualQuery.S index 8cf174fb2..1c2afee63 100644 --- a/libc/nt/kernel32/VirtualQuery.S +++ b/libc/nt/kernel32/VirtualQuery.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualQuery,VirtualQuery,0 +.imp kernel32,__imp_VirtualQuery,VirtualQuery .text.windows .ftrace1 diff --git a/libc/nt/kernel32/VirtualQueryEx.S b/libc/nt/kernel32/VirtualQueryEx.S deleted file mode 100644 index b276df4a5..000000000 --- a/libc/nt/kernel32/VirtualQueryEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualQueryEx,VirtualQueryEx,0 diff --git a/libc/nt/kernel32/VirtualUnlock.S b/libc/nt/kernel32/VirtualUnlock.S index fcf5d5880..7b1d0eb5d 100644 --- a/libc/nt/kernel32/VirtualUnlock.S +++ b/libc/nt/kernel32/VirtualUnlock.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_VirtualUnlock,VirtualUnlock,0 +.imp kernel32,__imp_VirtualUnlock,VirtualUnlock .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WTSGetActiveConsoleSessionId.S b/libc/nt/kernel32/WTSGetActiveConsoleSessionId.S deleted file mode 100644 index 377d7ef73..000000000 --- a/libc/nt/kernel32/WTSGetActiveConsoleSessionId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WTSGetActiveConsoleSessionId,WTSGetActiveConsoleSessionId,1497 diff --git a/libc/nt/kernel32/WaitCommEvent.S b/libc/nt/kernel32/WaitCommEvent.S deleted file mode 100644 index fcd9d8fe9..000000000 --- a/libc/nt/kernel32/WaitCommEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WaitCommEvent,WaitCommEvent,0 diff --git a/libc/nt/kernel32/WaitForDebugEvent.S b/libc/nt/kernel32/WaitForDebugEvent.S deleted file mode 100644 index 4bf7deb27..000000000 --- a/libc/nt/kernel32/WaitForDebugEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WaitForDebugEvent,WaitForDebugEvent,0 diff --git a/libc/nt/kernel32/WaitForMultipleObjects.S b/libc/nt/kernel32/WaitForMultipleObjects.S index c7d2bcd03..eedcfbbc3 100644 --- a/libc/nt/kernel32/WaitForMultipleObjects.S +++ b/libc/nt/kernel32/WaitForMultipleObjects.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WaitForMultipleObjects,WaitForMultipleObjects,0 +.imp kernel32,__imp_WaitForMultipleObjects,WaitForMultipleObjects .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WaitForMultipleObjectsEx.S b/libc/nt/kernel32/WaitForMultipleObjectsEx.S index e34e86421..57b8440d4 100644 --- a/libc/nt/kernel32/WaitForMultipleObjectsEx.S +++ b/libc/nt/kernel32/WaitForMultipleObjectsEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WaitForMultipleObjectsEx,WaitForMultipleObjectsEx,0 +.imp kernel32,__imp_WaitForMultipleObjectsEx,WaitForMultipleObjectsEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WaitForSingleObject.S b/libc/nt/kernel32/WaitForSingleObject.S index 0ed8e52c7..6ce37ca12 100644 --- a/libc/nt/kernel32/WaitForSingleObject.S +++ b/libc/nt/kernel32/WaitForSingleObject.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WaitForSingleObject,WaitForSingleObject,0 +.imp kernel32,__imp_WaitForSingleObject,WaitForSingleObject .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WaitForSingleObjectEx.S b/libc/nt/kernel32/WaitForSingleObjectEx.S index fac77cbeb..fed788b60 100644 --- a/libc/nt/kernel32/WaitForSingleObjectEx.S +++ b/libc/nt/kernel32/WaitForSingleObjectEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WaitForSingleObjectEx,WaitForSingleObjectEx,0 +.imp kernel32,__imp_WaitForSingleObjectEx,WaitForSingleObjectEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WaitNamedPipeW.S b/libc/nt/kernel32/WaitNamedPipeW.S deleted file mode 100644 index 8ed6ba958..000000000 --- a/libc/nt/kernel32/WaitNamedPipeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WaitNamedPipeW,WaitNamedPipeW,0 diff --git a/libc/nt/kernel32/WerGetFlags.S b/libc/nt/kernel32/WerGetFlags.S deleted file mode 100644 index 16f5d36be..000000000 --- a/libc/nt/kernel32/WerGetFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerGetFlags,WerGetFlags,0 diff --git a/libc/nt/kernel32/WerGetFlagsWorker.S b/libc/nt/kernel32/WerGetFlagsWorker.S deleted file mode 100644 index 30cc97dc3..000000000 --- a/libc/nt/kernel32/WerGetFlagsWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerGetFlagsWorker,WerGetFlagsWorker,1514 diff --git a/libc/nt/kernel32/WerRegisterFile.S b/libc/nt/kernel32/WerRegisterFile.S deleted file mode 100644 index 15ae11a73..000000000 --- a/libc/nt/kernel32/WerRegisterFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerRegisterFile,WerRegisterFile,0 diff --git a/libc/nt/kernel32/WerRegisterFileWorker.S b/libc/nt/kernel32/WerRegisterFileWorker.S deleted file mode 100644 index aaa30fd5e..000000000 --- a/libc/nt/kernel32/WerRegisterFileWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerRegisterFileWorker,WerRegisterFileWorker,1520 diff --git a/libc/nt/kernel32/WerRegisterMemoryBlock.S b/libc/nt/kernel32/WerRegisterMemoryBlock.S deleted file mode 100644 index 51cf72e37..000000000 --- a/libc/nt/kernel32/WerRegisterMemoryBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerRegisterMemoryBlock,WerRegisterMemoryBlock,0 diff --git a/libc/nt/kernel32/WerRegisterMemoryBlockWorker.S b/libc/nt/kernel32/WerRegisterMemoryBlockWorker.S deleted file mode 100644 index 1b93a955a..000000000 --- a/libc/nt/kernel32/WerRegisterMemoryBlockWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerRegisterMemoryBlockWorker,WerRegisterMemoryBlockWorker,1522 diff --git a/libc/nt/kernel32/WerRegisterRuntimeExceptionModule.S b/libc/nt/kernel32/WerRegisterRuntimeExceptionModule.S deleted file mode 100644 index b6a615c53..000000000 --- a/libc/nt/kernel32/WerRegisterRuntimeExceptionModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerRegisterRuntimeExceptionModule,WerRegisterRuntimeExceptionModule,0 diff --git a/libc/nt/kernel32/WerRegisterRuntimeExceptionModuleWorker.S b/libc/nt/kernel32/WerRegisterRuntimeExceptionModuleWorker.S deleted file mode 100644 index 0d2eef30d..000000000 --- a/libc/nt/kernel32/WerRegisterRuntimeExceptionModuleWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerRegisterRuntimeExceptionModuleWorker,WerRegisterRuntimeExceptionModuleWorker,1524 diff --git a/libc/nt/kernel32/WerSetFlags.S b/libc/nt/kernel32/WerSetFlags.S deleted file mode 100644 index 4ec0746c8..000000000 --- a/libc/nt/kernel32/WerSetFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerSetFlags,WerSetFlags,0 diff --git a/libc/nt/kernel32/WerSetFlagsWorker.S b/libc/nt/kernel32/WerSetFlagsWorker.S deleted file mode 100644 index 1d7147b88..000000000 --- a/libc/nt/kernel32/WerSetFlagsWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerSetFlagsWorker,WerSetFlagsWorker,1526 diff --git a/libc/nt/kernel32/WerUnregisterFile.S b/libc/nt/kernel32/WerUnregisterFile.S deleted file mode 100644 index 06894213e..000000000 --- a/libc/nt/kernel32/WerUnregisterFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerUnregisterFile,WerUnregisterFile,0 diff --git a/libc/nt/kernel32/WerUnregisterFileWorker.S b/libc/nt/kernel32/WerUnregisterFileWorker.S deleted file mode 100644 index 2d16469bc..000000000 --- a/libc/nt/kernel32/WerUnregisterFileWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerUnregisterFileWorker,WerUnregisterFileWorker,1532 diff --git a/libc/nt/kernel32/WerUnregisterMemoryBlock.S b/libc/nt/kernel32/WerUnregisterMemoryBlock.S deleted file mode 100644 index 925acdb0c..000000000 --- a/libc/nt/kernel32/WerUnregisterMemoryBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerUnregisterMemoryBlock,WerUnregisterMemoryBlock,0 diff --git a/libc/nt/kernel32/WerUnregisterMemoryBlockWorker.S b/libc/nt/kernel32/WerUnregisterMemoryBlockWorker.S deleted file mode 100644 index db9adb772..000000000 --- a/libc/nt/kernel32/WerUnregisterMemoryBlockWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerUnregisterMemoryBlockWorker,WerUnregisterMemoryBlockWorker,1534 diff --git a/libc/nt/kernel32/WerUnregisterRuntimeExceptionModule.S b/libc/nt/kernel32/WerUnregisterRuntimeExceptionModule.S deleted file mode 100644 index fd0311173..000000000 --- a/libc/nt/kernel32/WerUnregisterRuntimeExceptionModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerUnregisterRuntimeExceptionModule,WerUnregisterRuntimeExceptionModule,0 diff --git a/libc/nt/kernel32/WerUnregisterRuntimeExceptionModuleWorker.S b/libc/nt/kernel32/WerUnregisterRuntimeExceptionModuleWorker.S deleted file mode 100644 index e38dd31cd..000000000 --- a/libc/nt/kernel32/WerUnregisterRuntimeExceptionModuleWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerUnregisterRuntimeExceptionModuleWorker,WerUnregisterRuntimeExceptionModuleWorker,1536 diff --git a/libc/nt/kernel32/WerpGetDebugger.S b/libc/nt/kernel32/WerpGetDebugger.S deleted file mode 100644 index e5d4ad89e..000000000 --- a/libc/nt/kernel32/WerpGetDebugger.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerpGetDebugger,WerpGetDebugger,1537 diff --git a/libc/nt/kernel32/WerpInitiateRemoteRecovery.S b/libc/nt/kernel32/WerpInitiateRemoteRecovery.S deleted file mode 100644 index f40bd78b7..000000000 --- a/libc/nt/kernel32/WerpInitiateRemoteRecovery.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerpInitiateRemoteRecovery,WerpInitiateRemoteRecovery,1538 diff --git a/libc/nt/kernel32/WerpLaunchAeDebug.S b/libc/nt/kernel32/WerpLaunchAeDebug.S deleted file mode 100644 index 57456ccc8..000000000 --- a/libc/nt/kernel32/WerpLaunchAeDebug.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerpLaunchAeDebug,WerpLaunchAeDebug,1539 diff --git a/libc/nt/kernel32/WerpNotifyLoadStringResourceWorker.S b/libc/nt/kernel32/WerpNotifyLoadStringResourceWorker.S deleted file mode 100644 index c2b7e85f6..000000000 --- a/libc/nt/kernel32/WerpNotifyLoadStringResourceWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerpNotifyLoadStringResourceWorker,WerpNotifyLoadStringResourceWorker,1540 diff --git a/libc/nt/kernel32/WerpNotifyUseStringResourceWorker.S b/libc/nt/kernel32/WerpNotifyUseStringResourceWorker.S deleted file mode 100644 index c448ddd23..000000000 --- a/libc/nt/kernel32/WerpNotifyUseStringResourceWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WerpNotifyUseStringResourceWorker,WerpNotifyUseStringResourceWorker,1541 diff --git a/libc/nt/kernel32/WideCharToMultiByte.S b/libc/nt/kernel32/WideCharToMultiByte.S index f08d2f8b3..0584d99fd 100644 --- a/libc/nt/kernel32/WideCharToMultiByte.S +++ b/libc/nt/kernel32/WideCharToMultiByte.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WideCharToMultiByte,WideCharToMultiByte,1553 +.imp kernel32,__imp_WideCharToMultiByte,WideCharToMultiByte .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WinExec.S b/libc/nt/kernel32/WinExec.S deleted file mode 100644 index db07582ba..000000000 --- a/libc/nt/kernel32/WinExec.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WinExec,WinExec,1543 diff --git a/libc/nt/kernel32/WriteConsoleInputVDMW.S b/libc/nt/kernel32/WriteConsoleInputVDMW.S deleted file mode 100644 index 83d6b201b..000000000 --- a/libc/nt/kernel32/WriteConsoleInputVDMW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteConsoleInputVDMW,WriteConsoleInputVDMW,1554 diff --git a/libc/nt/kernel32/WriteConsoleInputW.S b/libc/nt/kernel32/WriteConsoleInputW.S index 35f66f599..0ebeea059 100644 --- a/libc/nt/kernel32/WriteConsoleInputW.S +++ b/libc/nt/kernel32/WriteConsoleInputW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteConsoleInputW,WriteConsoleInputW,0 +.imp kernel32,__imp_WriteConsoleInputW,WriteConsoleInputW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WriteConsoleOutputAttribute.S b/libc/nt/kernel32/WriteConsoleOutputAttribute.S index b30665e88..1c0708bcb 100644 --- a/libc/nt/kernel32/WriteConsoleOutputAttribute.S +++ b/libc/nt/kernel32/WriteConsoleOutputAttribute.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteConsoleOutputAttribute,WriteConsoleOutputAttribute,0 +.imp kernel32,__imp_WriteConsoleOutputAttribute,WriteConsoleOutputAttribute .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WriteConsoleOutputCharacterW.S b/libc/nt/kernel32/WriteConsoleOutputCharacterW.S index 21d5884b2..5d902b977 100644 --- a/libc/nt/kernel32/WriteConsoleOutputCharacterW.S +++ b/libc/nt/kernel32/WriteConsoleOutputCharacterW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteConsoleOutputCharacterW,WriteConsoleOutputCharacterW,0 +.imp kernel32,__imp_WriteConsoleOutputCharacterW,WriteConsoleOutputCharacterW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WriteConsoleOutputW.S b/libc/nt/kernel32/WriteConsoleOutputW.S deleted file mode 100644 index 2ca4b5869..000000000 --- a/libc/nt/kernel32/WriteConsoleOutputW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteConsoleOutputW,WriteConsoleOutputW,0 diff --git a/libc/nt/kernel32/WriteConsoleW.S b/libc/nt/kernel32/WriteConsoleW.S index 6d665cb6c..2733d8b51 100644 --- a/libc/nt/kernel32/WriteConsoleW.S +++ b/libc/nt/kernel32/WriteConsoleW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteConsoleW,WriteConsoleW,0 +.imp kernel32,__imp_WriteConsoleW,WriteConsoleW .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WriteFile.S b/libc/nt/kernel32/WriteFile.S index a5be36f82..424cf1e93 100644 --- a/libc/nt/kernel32/WriteFile.S +++ b/libc/nt/kernel32/WriteFile.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteFile,WriteFile,0 +.imp kernel32,__imp_WriteFile,WriteFile .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WriteFileEx.S b/libc/nt/kernel32/WriteFileEx.S index 4a37fc8f3..9e04c9efa 100644 --- a/libc/nt/kernel32/WriteFileEx.S +++ b/libc/nt/kernel32/WriteFileEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteFileEx,WriteFileEx,0 +.imp kernel32,__imp_WriteFileEx,WriteFileEx .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WriteFileGather.S b/libc/nt/kernel32/WriteFileGather.S index be57ad5b4..5cdab48aa 100644 --- a/libc/nt/kernel32/WriteFileGather.S +++ b/libc/nt/kernel32/WriteFileGather.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteFileGather,WriteFileGather,0 +.imp kernel32,__imp_WriteFileGather,WriteFileGather .text.windows .ftrace1 diff --git a/libc/nt/kernel32/WritePrivateProfileSectionW.S b/libc/nt/kernel32/WritePrivateProfileSectionW.S deleted file mode 100644 index 3aca468fe..000000000 --- a/libc/nt/kernel32/WritePrivateProfileSectionW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WritePrivateProfileSectionW,WritePrivateProfileSectionW,1566 diff --git a/libc/nt/kernel32/WritePrivateProfileStringW.S b/libc/nt/kernel32/WritePrivateProfileStringW.S deleted file mode 100644 index 8291703f6..000000000 --- a/libc/nt/kernel32/WritePrivateProfileStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WritePrivateProfileStringW,WritePrivateProfileStringW,1568 diff --git a/libc/nt/kernel32/WritePrivateProfileStructW.S b/libc/nt/kernel32/WritePrivateProfileStructW.S deleted file mode 100644 index b8f897a09..000000000 --- a/libc/nt/kernel32/WritePrivateProfileStructW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WritePrivateProfileStructW,WritePrivateProfileStructW,1570 diff --git a/libc/nt/kernel32/WriteProcessMemory.S b/libc/nt/kernel32/WriteProcessMemory.S deleted file mode 100644 index 0680b46c6..000000000 --- a/libc/nt/kernel32/WriteProcessMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteProcessMemory,WriteProcessMemory,0 diff --git a/libc/nt/kernel32/WriteProfileSectionW.S b/libc/nt/kernel32/WriteProfileSectionW.S deleted file mode 100644 index 778cece59..000000000 --- a/libc/nt/kernel32/WriteProfileSectionW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteProfileSectionW,WriteProfileSectionW,1573 diff --git a/libc/nt/kernel32/WriteProfileStringW.S b/libc/nt/kernel32/WriteProfileStringW.S deleted file mode 100644 index 77ffd1e2f..000000000 --- a/libc/nt/kernel32/WriteProfileStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteProfileStringW,WriteProfileStringW,1575 diff --git a/libc/nt/kernel32/WriteTapemark.S b/libc/nt/kernel32/WriteTapemark.S deleted file mode 100644 index 0506ced9e..000000000 --- a/libc/nt/kernel32/WriteTapemark.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_WriteTapemark,WriteTapemark,1576 diff --git a/libc/nt/kernel32/ZombifyActCtx.S b/libc/nt/kernel32/ZombifyActCtx.S deleted file mode 100644 index bd081c2cf..000000000 --- a/libc/nt/kernel32/ZombifyActCtx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ZombifyActCtx,ZombifyActCtx,0 diff --git a/libc/nt/kernel32/ZombifyActCtxWorker.S b/libc/nt/kernel32/ZombifyActCtxWorker.S deleted file mode 100644 index b01063519..000000000 --- a/libc/nt/kernel32/ZombifyActCtxWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp kernel32,__imp_ZombifyActCtxWorker,ZombifyActCtxWorker,1578 diff --git a/libc/nt/master.sh b/libc/nt/master.sh index d3d1cbce7..a0e16c319 100755 --- a/libc/nt/master.sh +++ b/libc/nt/master.sh @@ -8,3557 +8,607 @@ # KERNEL32.DLL # -# Name Actual DLL Hint Arity -imp 'AcquireSRWLockExclusive' AcquireSRWLockExclusive kernel32 0 1 -imp 'AcquireSRWLockShared' AcquireSRWLockShared kernel32 0 1 -imp 'ActivateActCtx' ActivateActCtx kernel32 0 -imp 'ActivateActCtxWorker' ActivateActCtxWorker kernel32 4 -imp 'AddAtom' AddAtomW kernel32 6 -imp 'AddConsoleAlias' AddConsoleAliasW kernel32 0 -imp 'AddDllDirectory' AddDllDirectory kernel32 0 -imp 'AddIntegrityLabelToBoundaryDescriptor' AddIntegrityLabelToBoundaryDescriptor kernel32 10 -imp 'AddLocalAlternateComputerName' AddLocalAlternateComputerNameW kernel32 12 -imp 'AddRefActCtx' AddRefActCtx kernel32 0 -imp 'AddRefActCtxWorker' AddRefActCtxWorker kernel32 14 -imp 'AddResourceAttributeAce' AddResourceAttributeAce kernel32 0 -imp 'AddSIDToBoundaryDescriptor' AddSIDToBoundaryDescriptor kernel32 0 -imp 'AddScopedPolicyIDAce' AddScopedPolicyIDAce kernel32 0 -imp 'AddSecureMemoryCacheCallback' AddSecureMemoryCacheCallback kernel32 18 -imp 'AddVectoredContinueHandler' AddVectoredContinueHandler kernel32 0 2 -imp 'AddVectoredExceptionHandler' AddVectoredExceptionHandler kernel32 0 2 -imp 'AdjustCalendarDate' AdjustCalendarDate kernel32 21 -imp 'AllocConsole' AllocConsole kernel32 0 0 -imp 'AllocateUserPhysicalPages' AllocateUserPhysicalPages kernel32 0 -imp 'AllocateUserPhysicalPagesNuma' AllocateUserPhysicalPagesNuma kernel32 0 -imp 'ApplicationRecoveryFinished' ApplicationRecoveryFinished kernel32 34 -imp 'ApplicationRecoveryInProgress' ApplicationRecoveryInProgress kernel32 35 -imp 'AreFileApisANSI' AreFileApisANSI kernel32 0 -imp 'AssignProcessToJobObject' AssignProcessToJobObject kernel32 37 -imp 'AttachConsole' AttachConsole kernel32 0 1 -imp 'BackupRead' BackupRead kernel32 39 -imp 'BackupSeek' BackupSeek kernel32 40 -imp 'BackupWrite' BackupWrite kernel32 41 -imp 'BaseCheckAppcompatCacheExWorker' BaseCheckAppcompatCacheExWorker kernel32 44 -imp 'BaseCheckAppcompatCacheWorker' BaseCheckAppcompatCacheWorker kernel32 45 -imp 'BaseCheckElevation' BaseCheckElevation kernel32 46 -imp 'BaseCleanupAppcompatCacheSupportWorker' BaseCleanupAppcompatCacheSupportWorker kernel32 48 -imp 'BaseDestroyVDMEnvironment' BaseDestroyVDMEnvironment kernel32 49 -imp 'BaseDllReadWriteIniFile' BaseDllReadWriteIniFile kernel32 50 -imp 'BaseDumpAppcompatCacheWorker' BaseDumpAppcompatCacheWorker kernel32 52 -imp 'BaseElevationPostProcessing' BaseElevationPostProcessing kernel32 53 -imp 'BaseFlushAppcompatCacheWorker' BaseFlushAppcompatCacheWorker kernel32 55 -imp 'BaseFormatTimeOut' BaseFormatTimeOut kernel32 57 -imp 'BaseFreeAppCompatDataForProcessWorker' BaseFreeAppCompatDataForProcessWorker kernel32 58 -imp 'BaseGenerateAppCompatData' BaseGenerateAppCompatData kernel32 59 -imp 'BaseInitAppcompatCacheSupportWorker' BaseInitAppcompatCacheSupportWorker kernel32 62 -imp 'BaseIsAppcompatInfrastructureDisabledWorker' BaseIsAppcompatInfrastructureDisabledWorker kernel32 64 -imp 'BaseIsDosApplication' BaseIsDosApplication kernel32 65 -imp 'BaseQueryModuleData' BaseQueryModuleData kernel32 66 -imp 'BaseReadAppCompatDataForProcessWorker' BaseReadAppCompatDataForProcessWorker kernel32 67 -imp 'BaseSetLastNTError' BaseSetLastNTError kernel32 68 -imp 'BaseThreadInitThunk' BaseThreadInitThunk kernel32 69 -imp 'BaseUpdateAppcompatCacheWorker' BaseUpdateAppcompatCacheWorker kernel32 71 -imp 'BaseUpdateVDMEntry' BaseUpdateVDMEntry kernel32 72 -imp 'BaseVerifyUnicodeString' BaseVerifyUnicodeString kernel32 73 -imp 'BaseWriteErrorElevationRequiredEvent' BaseWriteErrorElevationRequiredEvent kernel32 74 -imp 'Basep8BitStringToDynamicUnicodeString' Basep8BitStringToDynamicUnicodeString kernel32 75 -imp 'BasepAllocateActivationContextActivationBlock' BasepAllocateActivationContextActivationBlock kernel32 76 -imp 'BasepAnsiStringToDynamicUnicodeString' BasepAnsiStringToDynamicUnicodeString kernel32 77 -imp 'BasepAppContainerEnvironmentExtension' BasepAppContainerEnvironmentExtension kernel32 78 -imp 'BasepAppXExtension' BasepAppXExtension kernel32 79 -imp 'BasepCheckAppCompat' BasepCheckAppCompat kernel32 80 -imp 'BasepCheckWebBladeHashes' BasepCheckWebBladeHashes kernel32 81 -imp 'BasepCheckWinSaferRestrictions' BasepCheckWinSaferRestrictions kernel32 82 -imp 'BasepConstructSxsCreateProcessMessage' BasepConstructSxsCreateProcessMessage kernel32 83 -imp 'BasepCopyEncryption' BasepCopyEncryption kernel32 84 -imp 'BasepFreeActivationContextActivationBlock' BasepFreeActivationContextActivationBlock kernel32 85 -imp 'BasepFreeAppCompatData' BasepFreeAppCompatData kernel32 86 -imp 'BasepGetAppCompatData' BasepGetAppCompatData kernel32 87 -imp 'BasepGetComputerNameFromNtPath' BasepGetComputerNameFromNtPath kernel32 88 -imp 'BasepGetExeArchType' BasepGetExeArchType kernel32 89 -imp 'BasepInitAppCompatData' BasepInitAppCompatData kernel32 90 -imp 'BasepIsProcessAllowed' BasepIsProcessAllowed kernel32 91 -imp 'BasepMapModuleHandle' BasepMapModuleHandle kernel32 92 -imp 'BasepNotifyLoadStringResource' BasepNotifyLoadStringResource kernel32 93 -imp 'BasepPostSuccessAppXExtension' BasepPostSuccessAppXExtension kernel32 94 -imp 'BasepProcessInvalidImage' BasepProcessInvalidImage kernel32 95 -imp 'BasepQueryAppCompat' BasepQueryAppCompat kernel32 96 -imp 'BasepQueryModuleChpeSettings' BasepQueryModuleChpeSettings kernel32 97 -imp 'BasepReleaseAppXContext' BasepReleaseAppXContext kernel32 98 -imp 'BasepReleaseSxsCreateProcessUtilityStruct' BasepReleaseSxsCreateProcessUtilityStruct kernel32 99 -imp 'BasepReportFault' BasepReportFault kernel32 100 -imp 'BasepSetFileEncryptionCompression' BasepSetFileEncryptionCompression kernel32 101 -imp 'Beep' Beep kernel32 0 -imp 'BeginUpdateResource' BeginUpdateResourceW kernel32 104 -imp 'BindIoCompletionCallback' BindIoCompletionCallback kernel32 105 -imp 'BuildCommDCBAndTimeouts' BuildCommDCBAndTimeoutsW kernel32 108 -imp 'BuildCommDCBW' BuildCommDCBW kernel32 109 -imp 'CallNamedPipe' CallNamedPipeW kernel32 0 7 -imp 'CallNamedPipeA' CallNamedPipeA kernel32 110 7 -imp 'CallbackMayRunLong' CallbackMayRunLong kernel32 0 -imp 'CancelDeviceWakeupRequest' CancelDeviceWakeupRequest kernel32 113 -imp 'CancelIo' CancelIo kernel32 0 1 -imp 'CancelSynchronousIo' CancelSynchronousIo kernel32 0 1 -imp 'CancelTimerQueueTimer' CancelTimerQueueTimer kernel32 118 -imp 'CancelWaitableTimer' CancelWaitableTimer kernel32 0 -imp 'CeipIsOptedIn' CeipIsOptedIn kernel32 0 -imp 'ChangeTimerQueueTimer' ChangeTimerQueueTimer kernel32 0 -imp 'CheckElevation' CheckElevation kernel32 123 -imp 'CheckElevationEnabled' CheckElevationEnabled kernel32 124 -imp 'CheckForReadOnlyResource' CheckForReadOnlyResource kernel32 125 -imp 'CheckForReadOnlyResourceFilter' CheckForReadOnlyResourceFilter kernel32 126 -imp 'CheckNameLegalDOS8Dot3' CheckNameLegalDOS8Dot3W kernel32 128 -imp 'CheckRemoteDebuggerPresent' CheckRemoteDebuggerPresent kernel32 0 2 -imp 'CheckTokenCapability' CheckTokenCapability kernel32 0 -imp 'CheckTokenMembershipEx' CheckTokenMembershipEx kernel32 0 -imp 'ClearCommBreak' ClearCommBreak kernel32 0 1 -imp 'ClearCommError' ClearCommError kernel32 0 -imp 'CloseConsoleHandle' CloseConsoleHandle kernel32 134 -imp 'ClosePackageInfo' ClosePackageInfo kernel32 0 -imp 'ClosePrivateNamespace' ClosePrivateNamespace kernel32 0 -imp 'CloseProfileUserMapping' CloseProfileUserMapping kernel32 138 -imp 'CmdBatNotification' CmdBatNotification kernel32 147 -imp 'CommConfigDialog' CommConfigDialogW kernel32 149 -imp 'CompareCalendarDates' CompareCalendarDates kernel32 150 -imp 'CompareFileTime' CompareFileTime kernel32 0 -imp 'CompareString' CompareStringW kernel32 0 -imp 'CompareStringEx' CompareStringEx kernel32 0 -imp 'CompareStringOrdinal' CompareStringOrdinal kernel32 0 -imp 'ConnectNamedPipe' ConnectNamedPipe kernel32 0 2 -imp 'ConsoleMenuControl' ConsoleMenuControl kernel32 157 -imp 'ContinueDebugEvent' ContinueDebugEvent kernel32 0 3 -imp 'ConvertCalDateTimeToSystemTime' ConvertCalDateTimeToSystemTime kernel32 159 -imp 'ConvertDefaultLocale' ConvertDefaultLocale kernel32 0 -imp 'ConvertFiberToThread' ConvertFiberToThread kernel32 0 -imp 'ConvertNLSDayOfWeekToWin32DayOfWeek' ConvertNLSDayOfWeekToWin32DayOfWeek kernel32 162 -imp 'ConvertSystemTimeToCalDateTime' ConvertSystemTimeToCalDateTime kernel32 163 -imp 'ConvertThreadToFiber' ConvertThreadToFiber kernel32 0 -imp 'ConvertThreadToFiberEx' ConvertThreadToFiberEx kernel32 0 -imp 'CopyContext' CopyContext kernel32 0 -imp 'CopyFile' CopyFileW kernel32 0 3 -imp 'CopyFile2' CopyFile2 kernel32 0 -imp 'CopyFileEx' CopyFileExW kernel32 0 -imp 'CopyFileTransacted' CopyFileTransactedW kernel32 172 -imp 'CopyLZFile' CopyLZFile kernel32 174 -imp 'CreateActCtx' CreateActCtxW kernel32 0 -imp 'CreateActCtxWWorker' CreateActCtxWWorker kernel32 177 -imp 'CreateBoundaryDescriptor' CreateBoundaryDescriptorW kernel32 0 -imp 'CreateConsoleScreenBuffer' CreateConsoleScreenBuffer kernel32 0 -imp 'CreateDirectoryEx' CreateDirectoryExW kernel32 0 -imp 'CreateDirectoryTransacted' CreateDirectoryTransactedW kernel32 185 -imp 'CreateEvent' CreateEventW kernel32 0 4 -imp 'CreateEventEx' CreateEventExW kernel32 0 4 -imp 'CreateFiber' CreateFiber kernel32 0 -imp 'CreateFiberEx' CreateFiberEx kernel32 0 -imp 'CreateFile2' CreateFile2 kernel32 0 -imp 'CreateFileMappingFromApp' CreateFileMappingFromApp kernel32 0 -imp 'CreateFileTransacted' CreateFileTransactedW kernel32 202 -imp 'CreateHardLink' CreateHardLinkW kernel32 0 3 -imp 'CreateHardLinkTransacted' CreateHardLinkTransactedW kernel32 206 -imp 'CreateIoCompletionPort' CreateIoCompletionPort kernel32 0 4 -imp 'CreateJobObject' CreateJobObjectW kernel32 210 -imp 'CreateJobSet' CreateJobSet kernel32 211 -imp 'CreateMailslot' CreateMailslotW kernel32 213 -imp 'CreateMemoryResourceNotification' CreateMemoryResourceNotification kernel32 0 -imp 'CreateMutex' CreateMutexW kernel32 0 -imp 'CreateMutexEx' CreateMutexExW kernel32 0 -imp 'CreatePrivateNamespace' CreatePrivateNamespaceW kernel32 0 -imp 'CreateRemoteThread' CreateRemoteThread kernel32 0 -imp 'CreateRemoteThreadEx' CreateRemoteThreadEx kernel32 0 -imp 'CreateSemaphore' CreateSemaphoreW kernel32 0 4 -imp 'CreateSemaphoreEx' CreateSemaphoreExW kernel32 0 -imp 'CreateSymbolicLinkTransacted' CreateSymbolicLinkTransactedW kernel32 238 -imp 'CreateTapePartition' CreateTapePartition kernel32 240 -imp 'CreateThreadpool' CreateThreadpool kernel32 0 -imp 'CreateThreadpoolCleanupGroup' CreateThreadpoolCleanupGroup kernel32 0 -imp 'CreateThreadpoolIo' CreateThreadpoolIo kernel32 0 -imp 'CreateThreadpoolTimer' CreateThreadpoolTimer kernel32 0 -imp 'CreateThreadpoolWait' CreateThreadpoolWait kernel32 0 -imp 'CreateThreadpoolWork' CreateThreadpoolWork kernel32 0 -imp 'CreateTimerQueue' CreateTimerQueue kernel32 0 -imp 'CreateTimerQueueTimer' CreateTimerQueueTimer kernel32 0 -imp 'CreateToolhelp32Snapshot' CreateToolhelp32Snapshot kernel32 0 2 -imp 'CreateUmsCompletionList' CreateUmsCompletionList kernel32 251 -imp 'CreateUmsThreadContext' CreateUmsThreadContext kernel32 252 -imp 'CreateWaitableTimer' CreateWaitableTimerW kernel32 0 3 -imp 'CreateWaitableTimerEx' CreateWaitableTimerExW kernel32 0 4 -imp 'DeactivateActCtx' DeactivateActCtx kernel32 0 -imp 'DeactivateActCtxWorker' DeactivateActCtxWorker kernel32 259 -imp 'DebugActiveProcess' DebugActiveProcess kernel32 0 1 -imp 'DebugActiveProcessStop' DebugActiveProcessStop kernel32 0 1 -imp 'DebugBreakProcess' DebugBreakProcess kernel32 263 1 -imp 'DebugSetProcessKillOnExit' DebugSetProcessKillOnExit kernel32 264 -imp 'DefineDosDevice' DefineDosDeviceW kernel32 0 -imp 'DeleteAtom' DeleteAtom kernel32 270 -imp 'DeleteBoundaryDescriptor' DeleteBoundaryDescriptor kernel32 0 -imp 'DeleteCriticalSection' DeleteCriticalSection kernel32 0 1 -imp 'DeleteFiber' DeleteFiber kernel32 0 -imp 'DeleteFileTransacted' DeleteFileTransactedW kernel32 276 -imp 'DeleteProcThreadAttributeList' DeleteProcThreadAttributeList kernel32 0 1 -imp 'DeleteSynchronizationBarrier' DeleteSynchronizationBarrier kernel32 279 -imp 'DeleteTimerQueue' DeleteTimerQueue kernel32 280 -imp 'DeleteTimerQueueEx' DeleteTimerQueueEx kernel32 0 -imp 'DeleteTimerQueueTimer' DeleteTimerQueueTimer kernel32 0 -imp 'DeleteUmsCompletionList' DeleteUmsCompletionList kernel32 283 -imp 'DeleteUmsThreadContext' DeleteUmsThreadContext kernel32 284 -imp 'DeleteVolumeMountPoint' DeleteVolumeMountPointW kernel32 0 -imp 'DequeueUmsCompletionListItems' DequeueUmsCompletionListItems kernel32 287 -imp 'DisableThreadLibraryCalls' DisableThreadLibraryCalls kernel32 0 -imp 'DisableThreadProfiling' DisableThreadProfiling kernel32 290 -imp 'DiscardVirtualMemory' DiscardVirtualMemory kernel32 0 -imp 'DisconnectNamedPipe' DisconnectNamedPipe kernel32 0 1 -imp 'DnsHostnameToComputerName' DnsHostnameToComputerNameW kernel32 296 -imp 'DosDateTimeToFileTime' DosDateTimeToFileTime kernel32 297 -imp 'DosPathToSessionPath' DosPathToSessionPathW kernel32 299 -imp 'DuplicateConsoleHandle' DuplicateConsoleHandle kernel32 300 -imp 'DuplicateEncryptionInfoFileExt' DuplicateEncryptionInfoFileExt kernel32 301 -imp 'DuplicateHandle' DuplicateHandle kernel32 0 7 -imp 'EnableThreadProfiling' EnableThreadProfiling kernel32 303 -imp 'EndUpdateResource' EndUpdateResourceW kernel32 307 -imp 'EnterCriticalSection' EnterCriticalSection kernel32 0 1 -imp 'EnterSynchronizationBarrier' EnterSynchronizationBarrier kernel32 0 -imp 'EnterUmsSchedulingMode' EnterUmsSchedulingMode kernel32 310 -imp 'EnumCalendarInfo' EnumCalendarInfoW kernel32 0 -imp 'EnumCalendarInfoEx' EnumCalendarInfoExW kernel32 0 -imp 'EnumCalendarInfoExEx' EnumCalendarInfoExEx kernel32 0 -imp 'EnumDateFormats' EnumDateFormatsW kernel32 0 -imp 'EnumDateFormatsEx' EnumDateFormatsExW kernel32 0 -imp 'EnumDateFormatsExEx' EnumDateFormatsExEx kernel32 0 -imp 'EnumLanguageGroupLocales' EnumLanguageGroupLocalesW kernel32 0 -imp 'EnumResourceLanguages' EnumResourceLanguagesW kernel32 326 -imp 'EnumResourceLanguagesEx' EnumResourceLanguagesExW kernel32 0 -imp 'EnumResourceNames' EnumResourceNamesW kernel32 0 -imp 'EnumResourceNamesEx' EnumResourceNamesExW kernel32 0 -imp 'EnumResourceTypes' EnumResourceTypesW kernel32 334 -imp 'EnumResourceTypesEx' EnumResourceTypesExW kernel32 0 -imp 'EnumSystemCodePages' EnumSystemCodePagesW kernel32 0 -imp 'EnumSystemFirmwareTables' EnumSystemFirmwareTables kernel32 0 -imp 'EnumSystemGeoID' EnumSystemGeoID kernel32 0 -imp 'EnumSystemGeoNames' EnumSystemGeoNames kernel32 318 -imp 'EnumSystemLanguageGroups' EnumSystemLanguageGroupsW kernel32 0 -imp 'EnumSystemLocales' EnumSystemLocalesW kernel32 0 -imp 'EnumSystemLocalesEx' EnumSystemLocalesEx kernel32 0 -imp 'EnumTimeFormats' EnumTimeFormatsW kernel32 0 -imp 'EnumTimeFormatsEx' EnumTimeFormatsEx kernel32 0 -imp 'EnumUILanguages' EnumUILanguagesW kernel32 0 -imp 'EnumerateLocalComputerNames' EnumerateLocalComputerNamesW kernel32 351 -imp 'EraseTape' EraseTape kernel32 352 -imp 'EscapeCommFunction' EscapeCommFunction kernel32 0 -imp 'ExecuteUmsThread' ExecuteUmsThread kernel32 354 -imp 'ExitProcess' ExitProcess kernel32 0 1 # a.k.a. RtlExitUserProcess -imp 'ExitThread' ExitThread kernel32 0 1 -imp 'ExitVDM' ExitVDM kernel32 357 -imp 'ExpandEnvironmentStrings' ExpandEnvironmentStringsW kernel32 0 -imp 'FatalAppExit' FatalAppExitW kernel32 0 -imp 'FatalExit' FatalExit kernel32 364 1 -imp 'FileTimeToDosDateTime' FileTimeToDosDateTime kernel32 365 -imp 'FileTimeToLocalFileTime' FileTimeToLocalFileTime kernel32 0 -imp 'FileTimeToSystemTime' FileTimeToSystemTime kernel32 0 -imp 'FillConsoleOutputAttribute' FillConsoleOutputAttribute kernel32 0 5 -imp 'FillConsoleOutputCharacter' FillConsoleOutputCharacterW kernel32 0 5 -imp 'FindActCtxSectionGuid' FindActCtxSectionGuid kernel32 0 -imp 'FindActCtxSectionGuidWorker' FindActCtxSectionGuidWorker kernel32 372 -imp 'FindActCtxSectionString' FindActCtxSectionStringW kernel32 0 -imp 'FindActCtxSectionStringWWorker' FindActCtxSectionStringWWorker kernel32 375 -imp 'FindAtom' FindAtomW kernel32 377 -imp 'FindCloseChangeNotification' FindCloseChangeNotification kernel32 0 -imp 'FindFirstChangeNotification' FindFirstChangeNotificationW kernel32 0 -imp 'FindFirstFileEx' FindFirstFileExW kernel32 0 6 -imp 'FindFirstFileName' FindFirstFileNameW kernel32 0 -imp 'FindFirstFileNameTransacted' FindFirstFileNameTransactedW kernel32 385 -imp 'FindFirstFileTransacted' FindFirstFileTransactedW kernel32 388 -imp 'FindFirstStream' FindFirstStreamW kernel32 0 -imp 'FindFirstStreamTransacted' FindFirstStreamTransactedW kernel32 390 -imp 'FindFirstVolume' FindFirstVolumeW kernel32 0 2 -imp 'FindFirstVolumeMountPoint' FindFirstVolumeMountPointW kernel32 394 -imp 'FindNLSString' FindNLSString kernel32 0 -imp 'FindNLSStringEx' FindNLSStringEx kernel32 0 -imp 'FindNextChangeNotification' FindNextChangeNotification kernel32 0 -imp 'FindNextFileName' FindNextFileNameW kernel32 0 -imp 'FindNextStream' FindNextStreamW kernel32 0 -imp 'FindNextVolume' FindNextVolumeW kernel32 0 3 -imp 'FindNextVolumeMountPoint' FindNextVolumeMountPointW kernel32 405 -imp 'FindPackagesByPackageFamily' FindPackagesByPackageFamily kernel32 0 -imp 'FindResource' FindResourceW kernel32 0 -imp 'FindResourceEx' FindResourceExW kernel32 0 -imp 'FindStringOrdinal' FindStringOrdinal kernel32 0 -imp 'FindVolumeClose' FindVolumeClose kernel32 0 1 -imp 'FindVolumeMountPointClose' FindVolumeMountPointClose kernel32 414 -imp 'FlsAlloc' FlsAlloc kernel32 0 -imp 'FlsFree' FlsFree kernel32 0 -imp 'FlsGetValue' FlsGetValue kernel32 0 -imp 'FlsSetValue' FlsSetValue kernel32 0 -imp 'FlushConsoleInputBuffer' FlushConsoleInputBuffer kernel32 0 1 -imp 'FlushInstructionCache' FlushInstructionCache kernel32 0 -imp 'FoldString' FoldStringW kernel32 0 -imp 'FormatApplicationUserModelId' FormatApplicationUserModelId kernel32 0 -imp 'FormatMessage' FormatMessageW kernel32 0 7 -imp 'FreeConsole' FreeConsole kernel32 0 0 -imp 'FreeEnvironmentStrings' FreeEnvironmentStringsW kernel32 0 1 -imp 'FreeLibrary' FreeLibrary kernel32 0 1 -imp 'FreeLibraryAndExitThread' FreeLibraryAndExitThread kernel32 0 -imp 'FreeMemoryJobObject' FreeMemoryJobObject kernel32 435 -imp 'FreeResource' FreeResource kernel32 0 1 -imp 'FreeUserPhysicalPages' FreeUserPhysicalPages kernel32 0 -imp 'GetACP' GetACP kernel32 0 -imp 'GetActiveProcessorCount' GetActiveProcessorCount kernel32 440 -imp 'GetActiveProcessorGroupCount' GetActiveProcessorGroupCount kernel32 441 -imp 'GetAppContainerNamedObjectPath' GetAppContainerNamedObjectPath kernel32 0 -imp 'GetApplicationRecoveryCallback' GetApplicationRecoveryCallback kernel32 0 -imp 'GetApplicationRecoveryCallbackWorker' GetApplicationRecoveryCallbackWorker kernel32 445 -imp 'GetApplicationRestartSettings' GetApplicationRestartSettings kernel32 0 -imp 'GetApplicationRestartSettingsWorker' GetApplicationRestartSettingsWorker kernel32 447 -imp 'GetApplicationUserModelId' GetApplicationUserModelId kernel32 0 -imp 'GetAtomName' GetAtomNameW kernel32 450 -imp 'GetBinaryType' GetBinaryTypeW kernel32 453 -imp 'GetCPInfo' GetCPInfo kernel32 0 -imp 'GetCPInfoEx' GetCPInfoExW kernel32 0 -imp 'GetCalendarDateFormat' GetCalendarDateFormat kernel32 458 -imp 'GetCalendarDateFormatEx' GetCalendarDateFormatEx kernel32 459 -imp 'GetCalendarDaysInMonth' GetCalendarDaysInMonth kernel32 460 -imp 'GetCalendarDifferenceInDays' GetCalendarDifferenceInDays kernel32 461 -imp 'GetCalendarInfo' GetCalendarInfoW kernel32 0 -imp 'GetCalendarInfoEx' GetCalendarInfoEx kernel32 0 -imp 'GetCalendarMonthsInYear' GetCalendarMonthsInYear kernel32 465 -imp 'GetCalendarSupportedDateRange' GetCalendarSupportedDateRange kernel32 466 -imp 'GetCalendarWeekNumber' GetCalendarWeekNumber kernel32 467 -imp 'GetComPlusPackageInstallStatus' GetComPlusPackageInstallStatus kernel32 468 -imp 'GetCommConfig' GetCommConfig kernel32 0 -imp 'GetCommMask' GetCommMask kernel32 0 -imp 'GetCommModemStatus' GetCommModemStatus kernel32 0 -imp 'GetCommProperties' GetCommProperties kernel32 0 -imp 'GetCommState' GetCommState kernel32 0 -imp 'GetCommTimeouts' GetCommTimeouts kernel32 0 -imp 'GetCommandLine' GetCommandLineW kernel32 0 0 -imp 'GetCompressedFileSize' GetCompressedFileSizeW kernel32 0 2 -imp 'GetCompressedFileSizeTransacted' GetCompressedFileSizeTransactedW kernel32 479 -imp 'GetComputerName' GetComputerNameW kernel32 484 -imp 'GetComputerNameEx' GetComputerNameExW kernel32 0 3 -imp 'GetConsoleAlias' GetConsoleAliasW kernel32 0 -imp 'GetConsoleAliasExes' GetConsoleAliasExesW kernel32 0 -imp 'GetConsoleAliasExesLength' GetConsoleAliasExesLengthW kernel32 0 -imp 'GetConsoleAliases' GetConsoleAliasesW kernel32 0 -imp 'GetConsoleAliasesLength' GetConsoleAliasesLengthW kernel32 0 -imp 'GetConsoleCP' GetConsoleCP kernel32 0 0 -imp 'GetConsoleCharType' GetConsoleCharType kernel32 496 -imp 'GetConsoleCursorInfo' GetConsoleCursorInfo kernel32 0 2 -imp 'GetConsoleCursorMode' GetConsoleCursorMode kernel32 502 -imp 'GetConsoleDisplayMode' GetConsoleDisplayMode kernel32 0 -imp 'GetConsoleFontInfo' GetConsoleFontInfo kernel32 504 -imp 'GetConsoleFontSize' GetConsoleFontSize kernel32 0 -imp 'GetConsoleHardwareState' GetConsoleHardwareState kernel32 506 -imp 'GetConsoleHistoryInfo' GetConsoleHistoryInfo kernel32 0 -imp 'GetConsoleInputWaitHandle' GetConsoleInputWaitHandle kernel32 510 -imp 'GetConsoleKeyboardLayoutName' GetConsoleKeyboardLayoutNameW kernel32 512 -imp 'GetConsoleMode' GetConsoleMode kernel32 0 2 -imp 'GetConsoleNlsMode' GetConsoleNlsMode kernel32 514 -imp 'GetConsoleOriginalTitle' GetConsoleOriginalTitleW kernel32 0 -imp 'GetConsoleOutputCP' GetConsoleOutputCP kernel32 0 0 -imp 'GetConsoleProcessList' GetConsoleProcessList kernel32 0 -imp 'GetConsoleScreenBufferInfo' GetConsoleScreenBufferInfo kernel32 0 2 -imp 'GetConsoleScreenBufferInfoEx' GetConsoleScreenBufferInfoEx kernel32 0 2 -imp 'GetConsoleSelectionInfo' GetConsoleSelectionInfo kernel32 0 1 -imp 'GetConsoleTitle' GetConsoleTitleW kernel32 0 2 -imp 'GetConsoleWindow' GetConsoleWindow kernel32 0 0 -imp 'GetCurrencyFormat' GetCurrencyFormatW kernel32 0 -imp 'GetCurrencyFormatEx' GetCurrencyFormatEx kernel32 0 -imp 'GetCurrentActCtx' GetCurrentActCtx kernel32 0 -imp 'GetCurrentActCtxWorker' GetCurrentActCtxWorker kernel32 529 -imp 'GetCurrentApplicationUserModelId' GetCurrentApplicationUserModelId kernel32 0 -imp 'GetCurrentConsoleFont' GetCurrentConsoleFont kernel32 0 -imp 'GetCurrentConsoleFontEx' GetCurrentConsoleFontEx kernel32 0 -imp 'GetCurrentDirectory' GetCurrentDirectoryW kernel32 0 2 -imp 'GetCurrentPackageFamilyName' GetCurrentPackageFamilyName kernel32 0 -imp 'GetCurrentPackageFullName' GetCurrentPackageFullName kernel32 0 -imp 'GetCurrentPackageId' GetCurrentPackageId kernel32 0 -imp 'GetCurrentPackageInfo' GetCurrentPackageInfo kernel32 0 -imp 'GetCurrentPackagePath' GetCurrentPackagePath kernel32 0 -imp 'GetCurrentProcess' GetCurrentProcess kernel32 0 0 -imp 'GetCurrentProcessId' GetCurrentProcessId kernel32 0 0 -imp 'GetCurrentThread' GetCurrentThread kernel32 0 0 -imp 'GetCurrentThreadId' GetCurrentThreadId kernel32 0 0 -imp 'GetCurrentThreadStackLimits' GetCurrentThreadStackLimits kernel32 0 -imp 'GetCurrentUmsThread' GetCurrentUmsThread kernel32 547 -imp 'GetDateFormat' GetDateFormatW kernel32 0 -imp 'GetDateFormatAWorker' GetDateFormatAWorker kernel32 549 -imp 'GetDateFormatEx' GetDateFormatEx kernel32 0 -imp 'GetDateFormatWWorker' GetDateFormatWWorker kernel32 552 -imp 'GetDefaultCommConfig' GetDefaultCommConfigW kernel32 554 -imp 'GetDevicePowerState' GetDevicePowerState kernel32 555 -imp 'GetDiskFreeSpace' GetDiskFreeSpaceW kernel32 0 -imp 'GetDiskFreeSpaceEx' GetDiskFreeSpaceExW kernel32 0 -imp 'GetDllDirectory' GetDllDirectoryW kernel32 561 -imp 'GetDriveType' GetDriveTypeW kernel32 0 -imp 'GetDurationFormat' GetDurationFormat kernel32 564 -imp 'GetDurationFormatEx' GetDurationFormatEx kernel32 0 -imp 'GetDynamicTimeZoneInformation' GetDynamicTimeZoneInformation kernel32 0 -imp 'GetEnabledXStateFeatures' GetEnabledXStateFeatures kernel32 0 -imp 'GetEncryptedFileVersionExt' GetEncryptedFileVersionExt kernel32 568 -imp 'GetEnvironmentStrings' GetEnvironmentStringsW kernel32 0 1 -imp 'GetEnvironmentVariable' GetEnvironmentVariableW kernel32 0 3 -imp 'GetErrorMode' GetErrorMode kernel32 0 -imp 'GetExitCodeThread' GetExitCodeThread kernel32 0 2 -imp 'GetExpandedName' GetExpandedNameW kernel32 579 -imp 'GetFileAttributesEx' GetFileAttributesExW kernel32 0 3 -imp 'GetFileAttributesTransacted' GetFileAttributesTransactedW kernel32 584 -imp 'GetFileBandwidthReservation' GetFileBandwidthReservation kernel32 586 -imp 'GetFileInformationByHandle' GetFileInformationByHandle kernel32 0 2 -imp 'GetFileInformationByHandleEx' GetFileInformationByHandleEx kernel32 0 4 -imp 'GetFileMUIInfo' GetFileMUIInfo kernel32 0 -imp 'GetFileMUIPath' GetFileMUIPath kernel32 0 -imp 'GetFileSize' GetFileSize kernel32 0 2 -imp 'GetFileSizeEx' GetFileSizeEx kernel32 0 2 -imp 'GetFileTime' GetFileTime kernel32 0 4 -imp 'GetFileType' GetFileType kernel32 0 1 -imp 'GetFinalPathNameByHandle' GetFinalPathNameByHandleW kernel32 0 4 -imp 'GetFirmwareEnvironmentVariable' GetFirmwareEnvironmentVariableW kernel32 600 -imp 'GetFirmwareEnvironmentVariableEx' GetFirmwareEnvironmentVariableExW kernel32 599 -imp 'GetFirmwareType' GetFirmwareType kernel32 601 -imp 'GetFullPathName' GetFullPathNameW kernel32 0 4 -imp 'GetFullPathNameTransacted' GetFullPathNameTransactedW kernel32 604 -imp 'GetGeoInfo' GetGeoInfoW kernel32 0 -imp 'GetHandleInformation' GetHandleInformation kernel32 0 2 -imp 'GetLargePageMinimum' GetLargePageMinimum kernel32 0 -imp 'GetLargestConsoleWindowSize' GetLargestConsoleWindowSize kernel32 0 1 -imp 'GetLastError' GetLastError kernel32 0 0 -imp 'GetLocalTime' GetLocalTime kernel32 0 -imp 'GetLocaleInfo' GetLocaleInfoW kernel32 0 -imp 'GetLocaleInfoEx' GetLocaleInfoEx kernel32 0 -imp 'GetLogicalDriveStrings' GetLogicalDriveStringsW kernel32 0 -imp 'GetLogicalDrives' GetLogicalDrives kernel32 0 0 -imp 'GetLogicalProcessorInformation' GetLogicalProcessorInformation kernel32 0 -imp 'GetLogicalProcessorInformationEx' GetLogicalProcessorInformationEx kernel32 0 -imp 'GetLongPathName' GetLongPathNameW kernel32 0 -imp 'GetLongPathNameTransacted' GetLongPathNameTransactedW kernel32 624 -imp 'GetMailslotInfo' GetMailslotInfo kernel32 626 -imp 'GetMaximumProcessorCount' GetMaximumProcessorCount kernel32 627 1 # Windows 7+ -imp 'GetMaximumProcessorGroupCount' GetMaximumProcessorGroupCount kernel32 628 -imp 'GetMemoryErrorHandlingCapabilities' GetMemoryErrorHandlingCapabilities kernel32 0 -imp 'GetModuleFileName' GetModuleFileNameW kernel32 0 3 -imp 'GetModuleHandle' GetModuleHandleA kernel32 0 1 -imp 'GetModuleHandleEx' GetModuleHandleExW kernel32 0 3 -imp 'GetModuleHandleW' GetModuleHandleW kernel32 0 1 -imp 'GetNLSVersion' GetNLSVersion kernel32 0 -imp 'GetNLSVersionEx' GetNLSVersionEx kernel32 0 -imp 'GetNamedPipeClientComputerName' GetNamedPipeClientComputerNameW kernel32 0 -imp 'GetNamedPipeClientProcessId' GetNamedPipeClientProcessId kernel32 641 -imp 'GetNamedPipeClientSessionId' GetNamedPipeClientSessionId kernel32 642 -imp 'GetNamedPipeHandleState' GetNamedPipeHandleStateW kernel32 0 -imp 'GetNamedPipeInfo' GetNamedPipeInfo kernel32 0 -imp 'GetNamedPipeServerProcessId' GetNamedPipeServerProcessId kernel32 646 -imp 'GetNamedPipeServerSessionId' GetNamedPipeServerSessionId kernel32 647 -imp 'GetNativeSystemInfo' GetNativeSystemInfo kernel32 0 -imp 'GetNextUmsListItem' GetNextUmsListItem kernel32 649 -imp 'GetNextVDMCommand' GetNextVDMCommand kernel32 650 -imp 'GetNumaAvailableMemoryNode' GetNumaAvailableMemoryNode kernel32 651 -imp 'GetNumaAvailableMemoryNodeEx' GetNumaAvailableMemoryNodeEx kernel32 652 -imp 'GetNumaHighestNodeNumber' GetNumaHighestNodeNumber kernel32 0 -imp 'GetNumaNodeNumberFromHandle' GetNumaNodeNumberFromHandle kernel32 654 -imp 'GetNumaNodeProcessorMask' GetNumaNodeProcessorMask kernel32 655 -imp 'GetNumaNodeProcessorMaskEx' GetNumaNodeProcessorMaskEx kernel32 0 -imp 'GetNumaProcessorNode' GetNumaProcessorNode kernel32 657 -imp 'GetNumaProcessorNodeEx' GetNumaProcessorNodeEx kernel32 658 -imp 'GetNumaProximityNode' GetNumaProximityNode kernel32 659 -imp 'GetNumaProximityNodeEx' GetNumaProximityNodeEx kernel32 0 -imp 'GetNumberFormat' GetNumberFormatW kernel32 0 -imp 'GetNumberFormatEx' GetNumberFormatEx kernel32 0 -imp 'GetNumberOfConsoleFonts' GetNumberOfConsoleFonts kernel32 664 -imp 'GetNumberOfConsoleInputEvents' GetNumberOfConsoleInputEvents kernel32 0 2 -imp 'GetNumberOfConsoleMouseButtons' GetNumberOfConsoleMouseButtons kernel32 0 1 -imp 'GetOEMCP' GetOEMCP kernel32 0 -imp 'GetOverlappedResult' GetOverlappedResult kernel32 0 4 -imp 'GetOverlappedResultEx' GetOverlappedResultEx kernel32 0 5 -imp 'GetPackageApplicationIds' GetPackageApplicationIds kernel32 0 -imp 'GetPackageFamilyName' GetPackageFamilyName kernel32 0 -imp 'GetPackageFullName' GetPackageFullName kernel32 0 -imp 'GetPackageId' GetPackageId kernel32 0 -imp 'GetPackageInfo' GetPackageInfo kernel32 0 -imp 'GetPackagePath' GetPackagePath kernel32 0 -imp 'GetPackagePathByFullName' GetPackagePathByFullName kernel32 0 -imp 'GetPackagesByPackageFamily' GetPackagesByPackageFamily kernel32 0 -imp 'GetPhysicallyInstalledSystemMemory' GetPhysicallyInstalledSystemMemory kernel32 0 -imp 'GetPriorityClass' GetPriorityClass kernel32 0 1 -imp 'GetPrivateProfileInt' GetPrivateProfileIntW kernel32 681 -imp 'GetPrivateProfileSection' GetPrivateProfileSectionW kernel32 685 -imp 'GetPrivateProfileSectionNames' GetPrivateProfileSectionNamesW kernel32 684 -imp 'GetPrivateProfileString' GetPrivateProfileStringW kernel32 687 -imp 'GetPrivateProfileStruct' GetPrivateProfileStructW kernel32 689 -imp 'GetProcAddress' GetProcAddress kernel32 0 2 -imp 'GetProcessAffinityMask' GetProcessAffinityMask kernel32 0 3 -imp 'GetProcessDEPPolicy' GetProcessDEPPolicy kernel32 692 -imp 'GetProcessDefaultCpuSets' GetProcessDefaultCpuSets kernel32 0 -imp 'GetProcessGroupAffinity' GetProcessGroupAffinity kernel32 0 -imp 'GetProcessHandleCount' GetProcessHandleCount kernel32 0 2 -imp 'GetProcessHeap' GetProcessHeap kernel32 0 0 -imp 'GetProcessHeaps' GetProcessHeaps kernel32 0 2 -imp 'GetProcessId' GetProcessId kernel32 0 1 -imp 'GetProcessIdOfThread' GetProcessIdOfThread kernel32 0 1 -imp 'GetProcessInformation' GetProcessInformation kernel32 0 4 -imp 'GetProcessIoCounters' GetProcessIoCounters kernel32 701 2 -imp 'GetProcessMitigationPolicy' GetProcessMitigationPolicy kernel32 0 -imp 'GetProcessPreferredUILanguages' GetProcessPreferredUILanguages kernel32 0 -imp 'GetProcessPriorityBoost' GetProcessPriorityBoost kernel32 0 2 -imp 'GetProcessShutdownParameters' GetProcessShutdownParameters kernel32 0 -imp 'GetProcessTimes' GetProcessTimes kernel32 0 5 -imp 'GetProcessVersion' GetProcessVersion kernel32 0 -imp 'GetProcessWorkingSetSize' GetProcessWorkingSetSize kernel32 708 3 -imp 'GetProcessWorkingSetSizeEx' GetProcessWorkingSetSizeEx kernel32 0 4 -imp 'GetProcessorSystemCycleTime' GetProcessorSystemCycleTime kernel32 0 -imp 'GetProductInfo' GetProductInfo kernel32 0 -imp 'GetProfileInt' GetProfileIntW kernel32 713 -imp 'GetProfileSection' GetProfileSectionW kernel32 715 -imp 'GetProfileString' GetProfileStringW kernel32 717 -imp 'GetQueuedCompletionStatus' GetQueuedCompletionStatus kernel32 0 5 -imp 'GetQueuedCompletionStatusEx' GetQueuedCompletionStatusEx kernel32 0 6 -imp 'GetShortPathName' GetShortPathNameW kernel32 0 -imp 'GetStagedPackagePathByFullName' GetStagedPackagePathByFullName kernel32 0 -imp 'GetStartupInfo' GetStartupInfoW kernel32 0 1 -imp 'GetStdHandle' GetStdHandle kernel32 0 1 -imp 'GetStringScripts' GetStringScripts kernel32 0 -imp 'GetStringType' GetStringTypeW kernel32 0 -imp 'GetStringTypeEx' GetStringTypeExW kernel32 0 -imp 'GetSystemCpuSetInformation' GetSystemCpuSetInformation kernel32 0 -imp 'GetSystemDEPPolicy' GetSystemDEPPolicy kernel32 734 -imp 'GetSystemDefaultLCID' GetSystemDefaultLCID kernel32 0 -imp 'GetSystemDefaultLangID' GetSystemDefaultLangID kernel32 0 -imp 'GetSystemDefaultLocaleName' GetSystemDefaultLocaleName kernel32 0 -imp 'GetSystemDefaultUILanguage' GetSystemDefaultUILanguage kernel32 0 -imp 'GetSystemDirectory' GetSystemDirectoryW kernel32 0 2 -imp 'GetSystemDirectoryA' GetSystemDirectoryA kernel32 0 2 -imp 'GetSystemFileCacheSize' GetSystemFileCacheSize kernel32 0 -imp 'GetSystemFirmwareTable' GetSystemFirmwareTable kernel32 0 -imp 'GetSystemInfo' GetSystemInfo kernel32 0 1 -imp 'GetSystemPowerStatus' GetSystemPowerStatus kernel32 744 -imp 'GetSystemPreferredUILanguages' GetSystemPreferredUILanguages kernel32 0 -imp 'GetSystemRegistryQuota' GetSystemRegistryQuota kernel32 746 -imp 'GetSystemTime' GetSystemTime kernel32 0 1 -imp 'GetSystemTimeAdjustment' GetSystemTimeAdjustment kernel32 0 3 -imp 'GetSystemTimeAsFileTime' GetSystemTimeAsFileTime kernel32 0 1 -imp 'GetSystemTimePreciseAsFileTime' GetSystemTimePreciseAsFileTime kernel32 0 1 -imp 'GetSystemTimes' GetSystemTimes kernel32 0 3 -imp 'GetSystemWindowsDirectory' GetSystemWindowsDirectoryW kernel32 0 -imp 'GetTapeParameters' GetTapeParameters kernel32 756 -imp 'GetTapePosition' GetTapePosition kernel32 757 -imp 'GetTapeStatus' GetTapeStatus kernel32 758 -imp 'GetTempFileName' GetTempFileNameW kernel32 0 -imp 'GetTempPath' GetTempPathW kernel32 0 2 -imp 'GetTempPathA' GetTempPathA kernel32 0 2 -imp 'GetThreadContext' GetThreadContext kernel32 0 -imp 'GetThreadErrorMode' GetThreadErrorMode kernel32 0 -imp 'GetThreadGroupAffinity' GetThreadGroupAffinity kernel32 0 -imp 'GetThreadIOPendingFlag' GetThreadIOPendingFlag kernel32 0 2 -imp 'GetThreadId' GetThreadId kernel32 0 1 -imp 'GetThreadIdealProcessorEx' GetThreadIdealProcessorEx kernel32 0 -imp 'GetThreadInformation' GetThreadInformation kernel32 0 -imp 'GetThreadLocale' GetThreadLocale kernel32 0 -imp 'GetThreadPreferredUILanguages' GetThreadPreferredUILanguages kernel32 0 -imp 'GetThreadPriority' GetThreadPriority kernel32 0 1 -imp 'GetThreadPriorityBoost' GetThreadPriorityBoost kernel32 0 2 -imp 'GetThreadSelectedCpuSets' GetThreadSelectedCpuSets kernel32 0 -imp 'GetThreadSelectorEntry' GetThreadSelectorEntry kernel32 776 -imp 'GetThreadTimes' GetThreadTimes kernel32 0 5 -imp 'GetThreadUILanguage' GetThreadUILanguage kernel32 0 -imp 'GetTickCount' GetTickCount kernel32 0 -imp 'GetTickCount64' GetTickCount64 kernel32 0 0 -imp 'GetTimeFormat' GetTimeFormatW kernel32 0 -imp 'GetTimeFormatAWorker' GetTimeFormatAWorker kernel32 782 -imp 'GetTimeFormatEx' GetTimeFormatEx kernel32 0 -imp 'GetTimeFormatWWorker' GetTimeFormatWWorker kernel32 785 -imp 'GetTimeZoneInformation' GetTimeZoneInformation kernel32 0 -imp 'GetTimeZoneInformationForYear' GetTimeZoneInformationForYear kernel32 0 -imp 'GetUILanguageInfo' GetUILanguageInfo kernel32 0 -imp 'GetUmsCompletionListEvent' GetUmsCompletionListEvent kernel32 789 -imp 'GetUmsSystemThreadInformation' GetUmsSystemThreadInformation kernel32 790 -imp 'GetUserDefaultLCID' GetUserDefaultLCID kernel32 0 -imp 'GetUserDefaultLangID' GetUserDefaultLangID kernel32 0 -imp 'GetUserDefaultLocaleName' GetUserDefaultLocaleName kernel32 0 -imp 'GetUserDefaultUILanguage' GetUserDefaultUILanguage kernel32 0 -imp 'GetUserGeoID' GetUserGeoID kernel32 0 -imp 'GetUserPreferredUILanguages' GetUserPreferredUILanguages kernel32 0 -imp 'GetVDMCurrentDirectories' GetVDMCurrentDirectories kernel32 798 -imp 'GetVersion' GetVersion kernel32 0 -imp 'GetVersionEx' GetVersionExW kernel32 0 1 -imp 'GetVolumeInformation' GetVolumeInformationW kernel32 0 -imp 'GetVolumeInformationByHandle' GetVolumeInformationByHandleW kernel32 0 8 -imp 'GetVolumeNameForVolumeMountPoint' GetVolumeNameForVolumeMountPointW kernel32 0 -imp 'GetVolumePathName' GetVolumePathNameW kernel32 0 3 -imp 'GetVolumePathNamesForVolumeName' GetVolumePathNamesForVolumeNameW kernel32 0 -imp 'GetWindowsDirectory' GetWindowsDirectoryW kernel32 0 2 -imp 'GetWindowsDirectoryA' GetWindowsDirectoryA kernel32 0 2 -imp 'GetWriteWatch' GetWriteWatch kernel32 0 -imp 'GetXStateFeaturesMask' GetXStateFeaturesMask kernel32 0 -imp 'GlobalAddAtom' GlobalAddAtomW kernel32 818 -imp 'GlobalAddAtomEx' GlobalAddAtomExW kernel32 817 -imp 'GlobalAlloc' GlobalAlloc kernel32 0 2 -imp 'GlobalCompact' GlobalCompact kernel32 820 -imp 'GlobalDeleteAtom' GlobalDeleteAtom kernel32 821 -imp 'GlobalFindAtom' GlobalFindAtomW kernel32 823 -imp 'GlobalFix' GlobalFix kernel32 824 -imp 'GlobalFlags' GlobalFlags kernel32 825 -imp 'GlobalFree' GlobalFree kernel32 0 1 -imp 'GlobalGetAtomName' GlobalGetAtomNameW kernel32 828 -imp 'GlobalHandle' GlobalHandle kernel32 829 -imp 'GlobalLock' GlobalLock kernel32 830 -imp 'GlobalMemoryStatus' GlobalMemoryStatus kernel32 831 -imp 'GlobalMemoryStatusEx' GlobalMemoryStatusEx kernel32 0 1 -imp 'GlobalReAlloc' GlobalReAlloc kernel32 833 -imp 'GlobalSize' GlobalSize kernel32 834 -imp 'GlobalUnWire' GlobalUnWire kernel32 835 -imp 'GlobalUnfix' GlobalUnfix kernel32 836 -imp 'GlobalUnlock' GlobalUnlock kernel32 837 -imp 'GlobalWire' GlobalWire kernel32 838 -imp 'Heap32First' Heap32First kernel32 839 -imp 'Heap32ListFirst' Heap32ListFirst kernel32 840 -imp 'Heap32ListNext' Heap32ListNext kernel32 841 -imp 'Heap32Next' Heap32Next kernel32 842 -imp 'HeapAlloc' HeapAlloc kernel32 0 3 -imp 'HeapCompact' HeapCompact kernel32 0 2 -imp 'HeapCreate' HeapCreate kernel32 0 3 -imp 'HeapDestroy' HeapDestroy kernel32 0 1 -imp 'HeapFree' HeapFree kernel32 847 3 -imp 'HeapLock' HeapLock kernel32 0 -imp 'HeapQueryInformation' HeapQueryInformation kernel32 0 -imp 'HeapReAlloc' HeapReAlloc kernel32 0 4 -imp 'HeapSetInformation' HeapSetInformation kernel32 0 -imp 'HeapUnlock' HeapUnlock kernel32 0 -imp 'HeapValidate' HeapValidate kernel32 0 -imp 'HeapWalk' HeapWalk kernel32 0 -imp 'IdnToAscii' IdnToAscii kernel32 0 -imp 'IdnToNameprepUnicode' IdnToNameprepUnicode kernel32 0 -imp 'IdnToUnicode' IdnToUnicode kernel32 0 -imp 'InitAtomTable' InitAtomTable kernel32 860 -imp 'InitOnceBeginInitialize' InitOnceBeginInitialize kernel32 0 -imp 'InitOnceComplete' InitOnceComplete kernel32 0 -imp 'InitOnceExecuteOnce' InitOnceExecuteOnce kernel32 0 -imp 'InitializeContext' InitializeContext kernel32 0 -imp 'InitializeCriticalSection' InitializeCriticalSection kernel32 0 1 -imp 'InitializeCriticalSectionAndSpinCount' InitializeCriticalSectionAndSpinCount kernel32 0 2 -imp 'InitializeCriticalSectionEx' InitializeCriticalSectionEx kernel32 0 -imp 'InitializeProcThreadAttributeList' InitializeProcThreadAttributeList kernel32 0 4 -imp 'InitializeSRWLock' InitializeSRWLock kernel32 0 1 -imp 'InitializeSynchronizationBarrier' InitializeSynchronizationBarrier kernel32 0 -imp 'InstallELAMCertificateInfo' InstallELAMCertificateInfo kernel32 0 -imp 'InvalidateConsoleDIBits' InvalidateConsoleDIBits kernel32 881 -imp 'IsBadCodePtr' IsBadCodePtr kernel32 882 -imp 'IsBadHugeReadPtr' IsBadHugeReadPtr kernel32 883 -imp 'IsBadHugeWritePtr' IsBadHugeWritePtr kernel32 884 -imp 'IsBadReadPtr' IsBadReadPtr kernel32 885 -imp 'IsBadStringPtr' IsBadStringPtrW kernel32 887 -imp 'IsBadWritePtr' IsBadWritePtr kernel32 888 -imp 'IsCalendarLeapDay' IsCalendarLeapDay kernel32 889 -imp 'IsCalendarLeapMonth' IsCalendarLeapMonth kernel32 890 -imp 'IsCalendarLeapYear' IsCalendarLeapYear kernel32 891 -imp 'IsDBCSLeadByte' IsDBCSLeadByte kernel32 0 -imp 'IsDBCSLeadByteEx' IsDBCSLeadByteEx kernel32 0 -imp 'IsNLSDefinedString' IsNLSDefinedString kernel32 0 -imp 'IsNativeVhdBoot' IsNativeVhdBoot kernel32 897 -imp 'IsNormalizedString' IsNormalizedString kernel32 0 -imp 'IsProcessCritical' IsProcessCritical kernel32 0 -imp 'IsProcessInJob' IsProcessInJob kernel32 0 -imp 'IsProcessorFeaturePresent' IsProcessorFeaturePresent kernel32 0 -imp 'IsSystemResumeAutomatic' IsSystemResumeAutomatic kernel32 902 -imp 'IsThreadAFiber' IsThreadAFiber kernel32 0 -imp 'IsValidCalDateTime' IsValidCalDateTime kernel32 905 -imp 'IsValidCodePage' IsValidCodePage kernel32 0 -imp 'IsValidLanguageGroup' IsValidLanguageGroup kernel32 0 -imp 'IsValidLocale' IsValidLocale kernel32 0 -imp 'IsValidLocaleName' IsValidLocaleName kernel32 0 -imp 'IsValidNLSVersion' IsValidNLSVersion kernel32 0 -imp 'LCIDToLocaleName' LCIDToLocaleName kernel32 0 -imp 'LCMapString' LCMapStringW kernel32 0 -imp 'LCMapStringEx' LCMapStringEx kernel32 0 -imp 'LZClose' LZClose kernel32 945 -imp 'LZCloseFile' LZCloseFile kernel32 946 -imp 'LZCopy' LZCopy kernel32 947 -imp 'LZCreateFile' LZCreateFileW kernel32 948 -imp 'LZDone' LZDone kernel32 949 -imp 'LZInit' LZInit kernel32 950 -imp 'LZOpenFile' LZOpenFileW kernel32 952 -imp 'LZRead' LZRead kernel32 953 -imp 'LZSeek' LZSeek kernel32 954 -imp 'LZStart' LZStart kernel32 955 -imp 'LeaveCriticalSection' LeaveCriticalSection kernel32 0 1 -imp 'LoadLibrary' LoadLibraryW kernel32 0 1 -imp 'LoadLibraryEx' LoadLibraryExW kernel32 0 3 -imp 'LoadModule' LoadModule kernel32 964 -imp 'LoadPackagedLibrary' LoadPackagedLibrary kernel32 0 -imp 'LoadResource' LoadResource kernel32 0 2 -imp 'LoadStringBase' LoadStringBaseW kernel32 968 -imp 'LocalAlloc' LocalAlloc kernel32 0 -imp 'LocalCompact' LocalCompact kernel32 970 -imp 'LocalFileTimeToFileTime' LocalFileTimeToFileTime kernel32 0 -imp 'LocalFlags' LocalFlags kernel32 972 -imp 'LocalFree' LocalFree kernel32 0 1 -imp 'LocalHandle' LocalHandle kernel32 974 -imp 'LocalLock' LocalLock kernel32 0 -imp 'LocalReAlloc' LocalReAlloc kernel32 0 -imp 'LocalShrink' LocalShrink kernel32 977 -imp 'LocalSize' LocalSize kernel32 978 -imp 'LocalUnlock' LocalUnlock kernel32 0 -imp 'LocaleNameToLCID' LocaleNameToLCID kernel32 0 -imp 'LocateXStateFeature' LocateXStateFeature kernel32 0 -imp 'LockFile' LockFile kernel32 0 5 -imp 'LockResource' LockResource kernel32 0 1 -imp 'MapUserPhysicalPages' MapUserPhysicalPages kernel32 0 -imp 'MapUserPhysicalPagesScatter' MapUserPhysicalPagesScatter kernel32 986 -imp 'MapViewOfFile' MapViewOfFile kernel32 0 -imp 'MapViewOfFileFromApp' MapViewOfFileFromApp kernel32 0 -imp 'Module32First' Module32FirstW kernel32 992 -imp 'Module32Next' Module32NextW kernel32 994 -imp 'MoveFile' MoveFileW kernel32 1000 2 -imp 'MoveFileTransacted' MoveFileTransactedW kernel32 999 -imp 'MoveFileWithProgress' MoveFileWithProgressW kernel32 0 -imp 'MulDiv' MulDiv kernel32 0 -imp 'MultiByteToWideChar' MultiByteToWideChar kernel32 0 6 -imp 'NeedCurrentDirectoryForExePath' NeedCurrentDirectoryForExePathW kernel32 0 -imp 'NormalizeString' NormalizeString kernel32 0 -imp 'NotifyUILanguageChange' NotifyUILanguageChange kernel32 1015 -imp 'OOBEComplete' OOBEComplete kernel32 1017 -imp 'OfferVirtualMemory' OfferVirtualMemory kernel32 0 3 -imp 'OpenConsole' OpenConsoleW kernel32 1019 -imp 'OpenConsoleWStub' OpenConsoleWStub kernel32 1020 -imp 'OpenEvent' OpenEventW kernel32 0 -imp 'OpenFile' OpenFile kernel32 1023 -imp 'OpenFileById' OpenFileById kernel32 0 -imp 'OpenFileMapping' OpenFileMappingW kernel32 0 -imp 'OpenJobObject' OpenJobObjectW kernel32 1028 -imp 'OpenMutex' OpenMutexW kernel32 0 -imp 'OpenPackageInfoByFullName' OpenPackageInfoByFullName kernel32 0 -imp 'OpenPrivateNamespace' OpenPrivateNamespaceW kernel32 0 -imp 'OpenProfileUserMapping' OpenProfileUserMapping kernel32 1036 -imp 'OpenSemaphore' OpenSemaphoreW kernel32 0 -imp 'OpenThread' OpenThread kernel32 0 3 -imp 'OpenWaitableTimer' OpenWaitableTimerW kernel32 0 -imp 'OutputDebugString' OutputDebugStringW kernel32 0 -imp 'PackageFamilyNameFromFullName' PackageFamilyNameFromFullName kernel32 0 -imp 'PackageFamilyNameFromId' PackageFamilyNameFromId kernel32 0 -imp 'PackageFullNameFromId' PackageFullNameFromId kernel32 0 -imp 'PackageIdFromFullName' PackageIdFromFullName kernel32 0 -imp 'PackageNameAndPublisherIdFromFamilyName' PackageNameAndPublisherIdFromFamilyName kernel32 0 -imp 'ParseApplicationUserModelId' ParseApplicationUserModelId kernel32 0 -imp 'PeekConsoleInput' PeekConsoleInputW kernel32 0 4 -imp 'PeekNamedPipe' PeekNamedPipe kernel32 0 6 -imp 'PostQueuedCompletionStatus' PostQueuedCompletionStatus kernel32 0 4 -imp 'PowerClearRequest' PowerClearRequest kernel32 1057 -imp 'PowerCreateRequest' PowerCreateRequest kernel32 1058 -imp 'PowerSetRequest' PowerSetRequest kernel32 1059 -imp 'PrefetchVirtualMemory' PrefetchVirtualMemory kernel32 0 4 -imp 'PrepareTape' PrepareTape kernel32 1061 -imp 'PrivMoveFileIdentity' PrivMoveFileIdentityW kernel32 1063 -imp 'Process32First' Process32FirstW kernel32 0 2 -imp 'Process32Next' Process32NextW kernel32 0 2 -imp 'ProcessIdToSessionId' ProcessIdToSessionId kernel32 0 -imp 'PssCaptureSnapshot' PssCaptureSnapshot kernel32 0 -imp 'PssDuplicateSnapshot' PssDuplicateSnapshot kernel32 0 -imp 'PssFreeSnapshot' PssFreeSnapshot kernel32 0 -imp 'PssQuerySnapshot' PssQuerySnapshot kernel32 0 -imp 'PssWalkMarkerCreate' PssWalkMarkerCreate kernel32 0 -imp 'PssWalkMarkerFree' PssWalkMarkerFree kernel32 0 -imp 'PssWalkMarkerGetPosition' PssWalkMarkerGetPosition kernel32 0 -imp 'PssWalkMarkerRewind' PssWalkMarkerRewind kernel32 1076 -imp 'PssWalkMarkerSeek' PssWalkMarkerSeek kernel32 1077 -imp 'PssWalkMarkerSeekToBeginning' PssWalkMarkerSeekToBeginning kernel32 0 -imp 'PssWalkMarkerSetPosition' PssWalkMarkerSetPosition kernel32 0 -imp 'PssWalkMarkerTell' PssWalkMarkerTell kernel32 1080 -imp 'PssWalkSnapshot' PssWalkSnapshot kernel32 0 -imp 'PulseEvent' PulseEvent kernel32 0 1 -imp 'PurgeComm' PurgeComm kernel32 0 2 -imp 'QueryActCtx' QueryActCtxW kernel32 0 -imp 'QueryActCtxSettings' QueryActCtxSettingsW kernel32 0 -imp 'QueryActCtxSettingsWWorker' QueryActCtxSettingsWWorker kernel32 1085 -imp 'QueryActCtxWWorker' QueryActCtxWWorker kernel32 1087 -imp 'QueryDosDevice' QueryDosDeviceW kernel32 0 -imp 'QueryFullProcessImageName' QueryFullProcessImageNameW kernel32 0 -imp 'QueryIdleProcessorCycleTime' QueryIdleProcessorCycleTime kernel32 0 -imp 'QueryIdleProcessorCycleTimeEx' QueryIdleProcessorCycleTimeEx kernel32 0 -imp 'QueryInformationJobObject' QueryInformationJobObject kernel32 1095 -imp 'QueryIoRateControlInformationJobObject' QueryIoRateControlInformationJobObject kernel32 1096 -imp 'QueryMemoryResourceNotification' QueryMemoryResourceNotification kernel32 0 -imp 'QueryPerformanceCounter' QueryPerformanceCounter kernel32 1098 1 -imp 'QueryPerformanceFrequency' QueryPerformanceFrequency kernel32 1099 1 -imp 'QueryProcessAffinityUpdateMode' QueryProcessAffinityUpdateMode kernel32 0 -imp 'QueryProcessCycleTime' QueryProcessCycleTime kernel32 0 -imp 'QueryProtectedPolicy' QueryProtectedPolicy kernel32 0 -imp 'QueryThreadCycleTime' QueryThreadCycleTime kernel32 0 -imp 'QueryThreadProfiling' QueryThreadProfiling kernel32 1104 -imp 'QueryThreadpoolStackInformation' QueryThreadpoolStackInformation kernel32 0 -imp 'QueryUmsThreadInformation' QueryUmsThreadInformation kernel32 1106 -imp 'QueryUnbiasedInterruptTime' QueryUnbiasedInterruptTime kernel32 1107 -imp 'QueueUserAPC' QueueUserAPC kernel32 0 -imp 'QueueUserWorkItem' QueueUserWorkItem kernel32 0 -imp 'QuirkGetData2Worker' QuirkGetData2Worker kernel32 1110 -imp 'QuirkGetDataWorker' QuirkGetDataWorker kernel32 1111 -imp 'QuirkIsEnabled2Worker' QuirkIsEnabled2Worker kernel32 1112 -imp 'QuirkIsEnabled3Worker' QuirkIsEnabled3Worker kernel32 1113 -imp 'QuirkIsEnabledForPackage2Worker' QuirkIsEnabledForPackage2Worker kernel32 1114 -imp 'QuirkIsEnabledForPackage3Worker' QuirkIsEnabledForPackage3Worker kernel32 1115 -imp 'QuirkIsEnabledForPackage4Worker' QuirkIsEnabledForPackage4Worker kernel32 1116 -imp 'QuirkIsEnabledForPackageWorker' QuirkIsEnabledForPackageWorker kernel32 1117 -imp 'QuirkIsEnabledForProcessWorker' QuirkIsEnabledForProcessWorker kernel32 1118 -imp 'QuirkIsEnabledWorker' QuirkIsEnabledWorker kernel32 1119 -imp 'RaiseException' RaiseException kernel32 0 -imp 'RaiseFailFastException' RaiseFailFastException kernel32 0 -imp 'RaiseInvalid16BitExeError' RaiseInvalid16BitExeError kernel32 1122 -imp 'ReadConsole' ReadConsoleW kernel32 0 5 -imp 'ReadConsoleInput' ReadConsoleInputW kernel32 0 4 -imp 'ReadConsoleOutput' ReadConsoleOutputW kernel32 0 5 -imp 'ReadConsoleOutputAttribute' ReadConsoleOutputAttribute kernel32 0 5 -imp 'ReadConsoleOutputCharacter' ReadConsoleOutputCharacterW kernel32 0 5 -imp 'ReadDirectoryChanges' ReadDirectoryChangesW kernel32 0 -imp 'ReadFile' ReadFile kernel32 0 5 -imp 'ReadFileEx' ReadFileEx kernel32 0 5 -imp 'ReadFileScatter' ReadFileScatter kernel32 0 5 -imp 'ReadProcessMemory' ReadProcessMemory kernel32 0 -imp 'ReadThreadProfilingData' ReadThreadProfilingData kernel32 1141 -imp 'ReclaimVirtualMemory' ReclaimVirtualMemory kernel32 0 -imp 'RegDisablePredefinedCacheEx' RegDisablePredefinedCacheEx kernel32 0 -imp 'RegisterApplicationRecoveryCallback' RegisterApplicationRecoveryCallback kernel32 1184 -imp 'RegisterApplicationRestart' RegisterApplicationRestart kernel32 1185 -imp 'RegisterBadMemoryNotification' RegisterBadMemoryNotification kernel32 0 -imp 'RegisterConsoleIME' RegisterConsoleIME kernel32 1187 -imp 'RegisterConsoleOS2' RegisterConsoleOS2 kernel32 1188 -imp 'RegisterConsoleVDM' RegisterConsoleVDM kernel32 1189 -imp 'RegisterWaitForInputIdle' RegisterWaitForInputIdle kernel32 1190 -imp 'RegisterWaitForSingleObject' RegisterWaitForSingleObject kernel32 1191 6 -imp 'RegisterWaitUntilOOBECompleted' RegisterWaitUntilOOBECompleted kernel32 1193 -imp 'RegisterWowBaseHandlers' RegisterWowBaseHandlers kernel32 1194 -imp 'RegisterWowExec' RegisterWowExec kernel32 1195 -imp 'ReleaseActCtx' ReleaseActCtx kernel32 0 -imp 'ReleaseActCtxWorker' ReleaseActCtxWorker kernel32 1197 -imp 'ReleaseMutex' ReleaseMutex kernel32 0 1 -imp 'ReleaseSRWLockExclusive' ReleaseSRWLockExclusive kernel32 0 1 -imp 'ReleaseSRWLockShared' ReleaseSRWLockShared kernel32 0 1 -imp 'ReleaseSemaphore' ReleaseSemaphore kernel32 0 3 -imp 'RemoveDirectoryTransacted' RemoveDirectoryTransactedW kernel32 1206 -imp 'RemoveDllDirectory' RemoveDllDirectory kernel32 0 -imp 'RemoveLocalAlternateComputerName' RemoveLocalAlternateComputerNameW kernel32 1210 -imp 'RemoveSecureMemoryCacheCallback' RemoveSecureMemoryCacheCallback kernel32 1211 -imp 'RemoveVectoredContinueHandler' RemoveVectoredContinueHandler kernel32 0 1 -imp 'RemoveVectoredExceptionHandler' RemoveVectoredExceptionHandler kernel32 0 1 -imp 'ReplaceFile' ReplaceFileW kernel32 0 -imp 'ReplacePartitionUnit' ReplacePartitionUnit kernel32 1217 -imp 'RequestDeviceWakeup' RequestDeviceWakeup kernel32 1218 -imp 'RequestWakeupLatency' RequestWakeupLatency kernel32 1219 -imp 'ResetEvent' ResetEvent kernel32 0 1 -imp 'ResetWriteWatch' ResetWriteWatch kernel32 0 -imp 'ResolveDelayLoadedAPI' ResolveDelayLoadedAPI kernel32 0 -imp 'ResolveDelayLoadsFromDll' ResolveDelayLoadsFromDll kernel32 0 -imp 'ResolveLocaleName' ResolveLocaleName kernel32 0 -imp 'ResumeThread' ResumeThread kernel32 0 -imp 'ScrollConsoleScreenBuffer' ScrollConsoleScreenBufferW kernel32 0 -imp 'SearchPath' SearchPathW kernel32 0 -imp 'SetCalendarInfo' SetCalendarInfoW kernel32 0 -imp 'SetComPlusPackageInstallStatus' SetComPlusPackageInstallStatus kernel32 1251 -imp 'SetCommBreak' SetCommBreak kernel32 0 -imp 'SetCommConfig' SetCommConfig kernel32 0 -imp 'SetCommMask' SetCommMask kernel32 0 -imp 'SetCommState' SetCommState kernel32 0 -imp 'SetCommTimeouts' SetCommTimeouts kernel32 0 -imp 'SetComputerName' SetComputerNameW kernel32 0 -imp 'SetComputerNameEx' SetComputerNameExW kernel32 0 -imp 'SetConsoleActiveScreenBuffer' SetConsoleActiveScreenBuffer kernel32 0 1 # TODO(jart): 6.2 and higher -imp 'SetConsoleCP' SetConsoleCP kernel32 0 1 # TODO(jart): 6.2 and higher -imp 'SetConsoleCtrlHandler' SetConsoleCtrlHandler kernel32 0 2 -imp 'SetConsoleCursor' SetConsoleCursor kernel32 1265 -imp 'SetConsoleCursorInfo' SetConsoleCursorInfo kernel32 0 2 -imp 'SetConsoleCursorMode' SetConsoleCursorMode kernel32 1267 -imp 'SetConsoleCursorPosition' SetConsoleCursorPosition kernel32 0 2 -imp 'SetConsoleDisplayMode' SetConsoleDisplayMode kernel32 0 -imp 'SetConsoleFont' SetConsoleFont kernel32 1270 -imp 'SetConsoleHardwareState' SetConsoleHardwareState kernel32 1271 -imp 'SetConsoleHistoryInfo' SetConsoleHistoryInfo kernel32 0 -imp 'SetConsoleIcon' SetConsoleIcon kernel32 1273 -imp 'SetConsoleKeyShortcuts' SetConsoleKeyShortcuts kernel32 1276 -imp 'SetConsoleLocalEUDC' SetConsoleLocalEUDC kernel32 1277 -imp 'SetConsoleMaximumWindowSize' SetConsoleMaximumWindowSize kernel32 1278 -imp 'SetConsoleMenuClose' SetConsoleMenuClose kernel32 1279 -imp 'SetConsoleMode' SetConsoleMode kernel32 0 2 -imp 'SetConsoleNlsMode' SetConsoleNlsMode kernel32 1281 -imp 'SetConsoleOS2OemFormat' SetConsoleOS2OemFormat kernel32 1284 -imp 'SetConsoleOutputCP' SetConsoleOutputCP kernel32 0 1 -imp 'SetConsolePalette' SetConsolePalette kernel32 1286 -imp 'SetConsoleScreenBufferInfoEx' SetConsoleScreenBufferInfoEx kernel32 0 2 -imp 'SetConsoleScreenBufferSize' SetConsoleScreenBufferSize kernel32 0 2 -imp 'SetConsoleTextAttribute' SetConsoleTextAttribute kernel32 0 -imp 'SetConsoleTitle' SetConsoleTitleW kernel32 0 1 -imp 'SetConsoleWindowInfo' SetConsoleWindowInfo kernel32 0 3 -imp 'SetCriticalSectionSpinCount' SetCriticalSectionSpinCount kernel32 0 2 -imp 'SetCurrentConsoleFontEx' SetCurrentConsoleFontEx kernel32 0 -imp 'SetDefaultCommConfig' SetDefaultCommConfigW kernel32 1298 -imp 'SetDefaultDllDirectories' SetDefaultDllDirectories kernel32 0 1 # Windows 8+, KB2533623 on Windows 7 -imp 'SetDllDirectory' SetDllDirectoryW kernel32 1301 -imp 'SetDynamicTimeZoneInformation' SetDynamicTimeZoneInformation kernel32 0 -imp 'SetEndOfFile' SetEndOfFile kernel32 0 1 -imp 'SetEnvironmentVariable' SetEnvironmentVariableW kernel32 0 2 -imp 'SetErrorMode' SetErrorMode kernel32 0 1 -imp 'SetEvent' SetEvent kernel32 0 1 -imp 'SetFileApisToANSI' SetFileApisToANSI kernel32 0 -imp 'SetFileApisToOEM' SetFileApisToOEM kernel32 0 -imp 'SetFileAttributes' SetFileAttributesW kernel32 0 2 -imp 'SetFileAttributesTransacted' SetFileAttributesTransactedW kernel32 1315 -imp 'SetFileBandwidthReservation' SetFileBandwidthReservation kernel32 1317 -imp 'SetFileCompletionNotificationModes' SetFileCompletionNotificationModes kernel32 1318 2 -imp 'SetFileInformationByHandle' SetFileInformationByHandle kernel32 0 -imp 'SetFileIoOverlappedRange' SetFileIoOverlappedRange kernel32 0 -imp 'SetFilePointer' SetFilePointer kernel32 0 4 -imp 'SetFilePointerEx' SetFilePointerEx kernel32 0 4 -imp 'SetFileShortName' SetFileShortNameW kernel32 1324 -imp 'SetFileTime' SetFileTime kernel32 0 4 -imp 'SetFileValidData' SetFileValidData kernel32 0 2 -imp 'SetFirmwareEnvironmentVariable' SetFirmwareEnvironmentVariableW kernel32 1330 -imp 'SetFirmwareEnvironmentVariableEx' SetFirmwareEnvironmentVariableExW kernel32 1329 -imp 'SetHandleCount' SetHandleCount kernel32 0 1 -imp 'SetHandleInformation' SetHandleInformation kernel32 0 3 -imp 'SetInformationJobObject' SetInformationJobObject kernel32 1333 -imp 'SetIoRateControlInformationJobObject' SetIoRateControlInformationJobObject kernel32 1334 -imp 'SetLastError' SetLastError kernel32 0 1 -imp 'SetLocalPrimaryComputerName' SetLocalPrimaryComputerNameW kernel32 1338 -imp 'SetLocalTime' SetLocalTime kernel32 0 -imp 'SetLocaleInfo' SetLocaleInfoW kernel32 0 -imp 'SetMailslotInfo' SetMailslotInfo kernel32 1342 -imp 'SetMessageWaitingIndicator' SetMessageWaitingIndicator kernel32 1343 -imp 'SetNamedPipeAttribute' SetNamedPipeAttribute kernel32 1344 -imp 'SetNamedPipeHandleState' SetNamedPipeHandleState kernel32 0 4 -imp 'SetPriorityClass' SetPriorityClass kernel32 0 2 -imp 'SetProcessAffinityMask' SetProcessAffinityMask kernel32 1347 2 -imp 'SetProcessAffinityUpdateMode' SetProcessAffinityUpdateMode kernel32 0 -imp 'SetProcessDEPPolicy' SetProcessDEPPolicy kernel32 1349 -imp 'SetProcessDefaultCpuSets' SetProcessDefaultCpuSets kernel32 0 -imp 'SetProcessInformation' SetProcessInformation kernel32 0 -imp 'SetProcessMitigationPolicy' SetProcessMitigationPolicy kernel32 0 -imp 'SetProcessPreferredUILanguages' SetProcessPreferredUILanguages kernel32 0 -imp 'SetProcessPriorityBoost' SetProcessPriorityBoost kernel32 0 2 -imp 'SetProcessShutdownParameters' SetProcessShutdownParameters kernel32 0 -imp 'SetProcessWorkingSetSize' SetProcessWorkingSetSize kernel32 1356 3 -imp 'SetProcessWorkingSetSizeEx' SetProcessWorkingSetSizeEx kernel32 0 4 -imp 'SetProtectedPolicy' SetProtectedPolicy kernel32 0 -imp 'SetSearchPathMode' SetSearchPathMode kernel32 1359 -imp 'SetStdHandle' SetStdHandle kernel32 0 2 -imp 'SetSystemFileCacheSize' SetSystemFileCacheSize kernel32 0 -imp 'SetSystemPowerState' SetSystemPowerState kernel32 1363 -imp 'SetSystemTime' SetSystemTime kernel32 0 -imp 'SetSystemTimeAdjustment' SetSystemTimeAdjustment kernel32 0 -imp 'SetTapeParameters' SetTapeParameters kernel32 1366 -imp 'SetTapePosition' SetTapePosition kernel32 1367 -imp 'SetTermsrvAppInstallMode' SetTermsrvAppInstallMode kernel32 1368 -imp 'SetThreadAffinityMask' SetThreadAffinityMask kernel32 1369 2 -imp 'SetThreadContext' SetThreadContext kernel32 0 -imp 'SetThreadErrorMode' SetThreadErrorMode kernel32 0 -imp 'SetThreadExecutionState' SetThreadExecutionState kernel32 1373 -imp 'SetThreadGroupAffinity' SetThreadGroupAffinity kernel32 0 -imp 'SetThreadIdealProcessor' SetThreadIdealProcessor kernel32 0 -imp 'SetThreadIdealProcessorEx' SetThreadIdealProcessorEx kernel32 0 -imp 'SetThreadInformation' SetThreadInformation kernel32 0 -imp 'SetThreadLocale' SetThreadLocale kernel32 0 -imp 'SetThreadPreferredUILanguages' SetThreadPreferredUILanguages kernel32 0 -imp 'SetThreadPriority' SetThreadPriority kernel32 0 2 -imp 'SetThreadPriorityBoost' SetThreadPriorityBoost kernel32 0 2 -imp 'SetThreadSelectedCpuSets' SetThreadSelectedCpuSets kernel32 0 -imp 'SetThreadStackGuarantee' SetThreadStackGuarantee kernel32 0 -imp 'SetThreadUILanguage' SetThreadUILanguage kernel32 0 -imp 'SetThreadpoolStackInformation' SetThreadpoolStackInformation kernel32 0 -imp 'SetThreadpoolThreadMinimum' SetThreadpoolThreadMinimum kernel32 0 -imp 'SetTimeZoneInformation' SetTimeZoneInformation kernel32 0 -imp 'SetTimerQueueTimer' SetTimerQueueTimer kernel32 1394 -imp 'SetUmsThreadInformation' SetUmsThreadInformation kernel32 1395 -imp 'SetUnhandledExceptionFilter' SetUnhandledExceptionFilter kernel32 0 1 -imp 'SetUserGeoID' SetUserGeoID kernel32 0 -imp 'SetVDMCurrentDirectories' SetVDMCurrentDirectories kernel32 1399 -imp 'SetVolumeLabel' SetVolumeLabelW kernel32 1401 -imp 'SetVolumeMountPoint' SetVolumeMountPointW kernel32 1403 -imp 'SetVolumeMountPointWStub' SetVolumeMountPointWStub kernel32 1404 -imp 'SetWaitableTimer' SetWaitableTimer kernel32 0 6 -imp 'SetWaitableTimerEx' SetWaitableTimerEx kernel32 0 -imp 'SetXStateFeaturesMask' SetXStateFeaturesMask kernel32 0 -imp 'SetupComm' SetupComm kernel32 0 -imp 'ShowConsoleCursor' ShowConsoleCursor kernel32 1409 -imp 'SignalObjectAndWait' SignalObjectAndWait kernel32 0 -imp 'SizeofResource' SizeofResource kernel32 0 -imp 'Sleep' Sleep kernel32 0 1 -imp 'SleepConditionVariableCS' SleepConditionVariableCS kernel32 0 -imp 'SleepConditionVariableSRW' SleepConditionVariableSRW kernel32 0 -imp 'SleepEx' SleepEx kernel32 0 2 -imp 'SortCloseHandle' SortCloseHandle kernel32 1416 -imp 'SortGetHandle' SortGetHandle kernel32 1417 -imp 'SuspendThread' SuspendThread kernel32 0 1 -imp 'SwitchToFiber' SwitchToFiber kernel32 0 -imp 'SwitchToThread' SwitchToThread kernel32 0 -imp 'SystemTimeToFileTime' SystemTimeToFileTime kernel32 0 2 -imp 'SystemTimeToTzSpecificLocalTime' SystemTimeToTzSpecificLocalTime kernel32 0 -imp 'SystemTimeToTzSpecificLocalTimeEx' SystemTimeToTzSpecificLocalTimeEx kernel32 0 -imp 'TerminateJobObject' TerminateJobObject kernel32 1426 -imp 'TerminateThread' TerminateThread kernel32 0 2 -imp 'TermsrvAppInstallMode' TermsrvAppInstallMode kernel32 1429 -imp 'TermsrvConvertSysRootToUserDir' TermsrvConvertSysRootToUserDir kernel32 1430 -imp 'TermsrvCreateRegEntry' TermsrvCreateRegEntry kernel32 1431 -imp 'TermsrvDeleteKey' TermsrvDeleteKey kernel32 1432 -imp 'TermsrvDeleteValue' TermsrvDeleteValue kernel32 1433 -imp 'TermsrvGetPreSetValue' TermsrvGetPreSetValue kernel32 1434 -imp 'TermsrvGetWindowsDirectory' TermsrvGetWindowsDirectoryW kernel32 1436 -imp 'TermsrvOpenRegEntry' TermsrvOpenRegEntry kernel32 1437 -imp 'TermsrvOpenUserClasses' TermsrvOpenUserClasses kernel32 1438 -imp 'TermsrvRestoreKey' TermsrvRestoreKey kernel32 1439 -imp 'TermsrvSetKeySecurity' TermsrvSetKeySecurity kernel32 1440 -imp 'TermsrvSetValueKey' TermsrvSetValueKey kernel32 1441 -imp 'TermsrvSyncUserIniFileExt' TermsrvSyncUserIniFileExt kernel32 1442 -imp 'Thread32First' Thread32First kernel32 1443 -imp 'Thread32Next' Thread32Next kernel32 1444 -imp 'TlsAlloc' TlsAlloc kernel32 0 0 -imp 'TlsFree' TlsFree kernel32 0 1 -imp 'TlsGetValue' TlsGetValue kernel32 0 1 -imp 'TlsSetValue' TlsSetValue kernel32 0 2 -imp 'Toolhelp32ReadProcessMemory' Toolhelp32ReadProcessMemory kernel32 1449 -imp 'TransactNamedPipe' TransactNamedPipe kernel32 0 7 -imp 'TransmitCommChar' TransmitCommChar kernel32 0 2 -imp 'TryAcquireSRWLockExclusive' TryAcquireSRWLockExclusive kernel32 0 1 -imp 'TryAcquireSRWLockShared' TryAcquireSRWLockShared kernel32 0 1 -imp 'TryEnterCriticalSection' TryEnterCriticalSection kernel32 0 1 -imp 'TrySubmitThreadpoolCallback' TrySubmitThreadpoolCallback kernel32 0 -imp 'TzSpecificLocalTimeToSystemTime' TzSpecificLocalTimeToSystemTime kernel32 0 -imp 'TzSpecificLocalTimeToSystemTimeEx' TzSpecificLocalTimeToSystemTimeEx kernel32 0 -imp 'UTRegister' UTRegister kernel32 1458 -imp 'UTUnRegister' UTUnRegister kernel32 1459 -imp 'UmsThreadYield' UmsThreadYield kernel32 1460 -imp 'UnhandledExceptionFilter' UnhandledExceptionFilter kernel32 0 -imp 'UnlockFile' UnlockFile kernel32 0 5 -imp 'UnmapViewOfFile2' UnmapViewOfFile2 kernel32 0 2 -imp 'UnmapViewOfFileEx' UnmapViewOfFileEx kernel32 0 3 -imp 'UnregisterApplicationRecoveryCallback' UnregisterApplicationRecoveryCallback kernel32 1466 -imp 'UnregisterApplicationRestart' UnregisterApplicationRestart kernel32 1467 -imp 'UnregisterBadMemoryNotification' UnregisterBadMemoryNotification kernel32 0 -imp 'UnregisterConsoleIME' UnregisterConsoleIME kernel32 1469 -imp 'UnregisterWait' UnregisterWait kernel32 1470 -imp 'UnregisterWaitEx' UnregisterWaitEx kernel32 0 -imp 'UnregisterWaitUntilOOBECompleted' UnregisterWaitUntilOOBECompleted kernel32 1472 -imp 'UpdateCalendarDayOfWeek' UpdateCalendarDayOfWeek kernel32 1473 -imp 'UpdateProcThreadAttribute' UpdateProcThreadAttribute kernel32 0 7 -imp 'UpdateResource' UpdateResourceW kernel32 1476 -imp 'VDMConsoleOperation' VDMConsoleOperation kernel32 1477 -imp 'VDMOperationStarted' VDMOperationStarted kernel32 1478 -imp 'VerLanguageName' VerLanguageNameW kernel32 0 -imp 'VerifyConsoleIoHandle' VerifyConsoleIoHandle kernel32 1482 -imp 'VerifyScripts' VerifyScripts kernel32 0 -imp 'VerifyVersionInfo' VerifyVersionInfoW kernel32 1485 -imp 'VirtualAlloc' VirtualAlloc kernel32 0 4 -imp 'VirtualAllocEx' VirtualAllocEx kernel32 0 5 -imp 'VirtualAllocExNuma' VirtualAllocExNuma kernel32 0 -imp 'VirtualFree' VirtualFree kernel32 0 3 -imp 'VirtualFreeEx' VirtualFreeEx kernel32 0 -imp 'VirtualLock' VirtualLock kernel32 0 2 -imp 'VirtualUnlock' VirtualUnlock kernel32 0 2 -imp 'VirtualProtectEx' VirtualProtectEx kernel32 0 -imp 'VirtualQuery' VirtualQuery kernel32 0 3 -imp 'VirtualQueryEx' VirtualQueryEx kernel32 0 -imp 'WTSGetActiveConsoleSessionId' WTSGetActiveConsoleSessionId kernel32 1497 -imp 'WaitCommEvent' WaitCommEvent kernel32 0 -imp 'WaitForDebugEvent' WaitForDebugEvent kernel32 0 -imp 'WaitForMultipleObjectsEx' WaitForMultipleObjectsEx kernel32 0 5 -imp 'WaitForSingleObjectEx' WaitForSingleObjectEx kernel32 0 3 -imp 'WaitNamedPipe' WaitNamedPipeW kernel32 0 -imp 'WerGetFlags' WerGetFlags kernel32 0 -imp 'WerGetFlagsWorker' WerGetFlagsWorker kernel32 1514 -imp 'WerRegisterFile' WerRegisterFile kernel32 0 -imp 'WerRegisterFileWorker' WerRegisterFileWorker kernel32 1520 -imp 'WerRegisterMemoryBlock' WerRegisterMemoryBlock kernel32 0 -imp 'WerRegisterMemoryBlockWorker' WerRegisterMemoryBlockWorker kernel32 1522 -imp 'WerRegisterRuntimeExceptionModule' WerRegisterRuntimeExceptionModule kernel32 0 -imp 'WerRegisterRuntimeExceptionModuleWorker' WerRegisterRuntimeExceptionModuleWorker kernel32 1524 -imp 'WerSetFlags' WerSetFlags kernel32 0 -imp 'WerSetFlagsWorker' WerSetFlagsWorker kernel32 1526 -imp 'WerUnregisterFile' WerUnregisterFile kernel32 0 -imp 'WerUnregisterFileWorker' WerUnregisterFileWorker kernel32 1532 -imp 'WerUnregisterMemoryBlock' WerUnregisterMemoryBlock kernel32 0 -imp 'WerUnregisterMemoryBlockWorker' WerUnregisterMemoryBlockWorker kernel32 1534 -imp 'WerUnregisterRuntimeExceptionModule' WerUnregisterRuntimeExceptionModule kernel32 0 -imp 'WerUnregisterRuntimeExceptionModuleWorker' WerUnregisterRuntimeExceptionModuleWorker kernel32 1536 -imp 'WerpGetDebugger' WerpGetDebugger kernel32 1537 -imp 'WerpInitiateRemoteRecovery' WerpInitiateRemoteRecovery kernel32 1538 -imp 'WerpLaunchAeDebug' WerpLaunchAeDebug kernel32 1539 -imp 'WerpNotifyLoadStringResourceWorker' WerpNotifyLoadStringResourceWorker kernel32 1540 -imp 'WerpNotifyUseStringResourceWorker' WerpNotifyUseStringResourceWorker kernel32 1541 -imp 'WideCharToMultiByte' WideCharToMultiByte kernel32 1553 8 -imp 'WinExec' WinExec kernel32 1543 -imp 'WriteConsole' WriteConsoleW kernel32 0 5 -imp 'WriteConsoleInput' WriteConsoleInputW kernel32 0 4 -imp 'WriteConsoleInputVDMW' WriteConsoleInputVDMW kernel32 1554 -imp 'WriteConsoleOutput' WriteConsoleOutputW kernel32 0 -imp 'WriteConsoleOutputAttribute' WriteConsoleOutputAttribute kernel32 0 5 -imp 'WriteConsoleOutputCharacter' WriteConsoleOutputCharacterW kernel32 0 5 -imp 'WriteFile' WriteFile kernel32 0 5 -imp 'WriteFileEx' WriteFileEx kernel32 0 5 -imp 'WriteFileGather' WriteFileGather kernel32 0 5 -imp 'WritePrivateProfileSection' WritePrivateProfileSectionW kernel32 1566 -imp 'WritePrivateProfileString' WritePrivateProfileStringW kernel32 1568 -imp 'WritePrivateProfileStruct' WritePrivateProfileStructW kernel32 1570 -imp 'WriteProcessMemory' WriteProcessMemory kernel32 0 -imp 'WriteProfileSection' WriteProfileSectionW kernel32 1573 -imp 'WriteProfileString' WriteProfileStringW kernel32 1575 -imp 'WriteTapemark' WriteTapemark kernel32 1576 -imp 'ZombifyActCtx' ZombifyActCtx kernel32 0 -imp 'ZombifyActCtxWorker' ZombifyActCtxWorker kernel32 1578 -imp '__CancelIoEx' CancelIoEx kernel32 0 2 -imp '__CloseHandle' CloseHandle kernel32 0 1 -imp '__CreateDirectory' CreateDirectoryW kernel32 0 2 -imp '__CreateFile' CreateFileW kernel32 0 7 -imp '__CreateFileMapping' CreateFileMappingW kernel32 0 6 -imp '__CreateFileMappingNuma' CreateFileMappingNumaW kernel32 0 7 -imp '__CreateNamedPipe' CreateNamedPipeW kernel32 0 8 -imp '__CreatePipe' CreatePipe kernel32 0 4 -imp '__CreateProcess' CreateProcessW kernel32 0 10 -imp '__CreateSymbolicLink' CreateSymbolicLinkW kernel32 0 3 -imp '__CreateThread' CreateThread kernel32 0 6 -imp '__DeleteFile' DeleteFileW kernel32 0 1 -imp '__DeviceIoControl' DeviceIoControl kernel32 0 8 -imp '__FindClose' FindClose kernel32 0 1 -imp '__FindFirstFile' FindFirstFileW kernel32 0 2 -imp '__FindNextFile' FindNextFileW kernel32 0 2 -imp '__FlushFileBuffers' FlushFileBuffers kernel32 0 1 -imp '__FlushViewOfFile' FlushViewOfFile kernel32 0 2 -imp '__GenerateConsoleCtrlEvent' GenerateConsoleCtrlEvent kernel32 0 2 -imp '__GetExitCodeProcess' GetExitCodeProcess kernel32 0 2 -imp '__GetFileAttributes' GetFileAttributesW kernel32 0 1 -imp '__LockFileEx' LockFileEx kernel32 0 6 -imp '__MapViewOfFileEx' MapViewOfFileEx kernel32 0 6 -imp '__MapViewOfFileExNuma' MapViewOfFileExNuma kernel32 0 7 -imp '__MoveFileEx' MoveFileExW kernel32 0 3 -imp '__OpenProcess' OpenProcess kernel32 0 3 -imp '__ReOpenFile' ReOpenFile kernel32 0 4 # TODO(jart): 6.2 and higher -imp '__RemoveDirectory' RemoveDirectoryW kernel32 0 1 -imp '__SetCurrentDirectory' SetCurrentDirectoryW kernel32 0 1 -imp '__TerminateProcess' TerminateProcess kernel32 0 2 -imp '__UnlockFileEx' UnlockFileEx kernel32 0 5 -imp '__UnmapViewOfFile' UnmapViewOfFile kernel32 0 1 -imp '__VirtualProtect' VirtualProtect kernel32 0 4 -imp '__WaitForMultipleObjects' WaitForMultipleObjects kernel32 0 4 -imp '__WaitForSingleObject' WaitForSingleObject kernel32 0 2 +# Name Actual DLL Arity +imp 'AcquireSRWLockExclusive' AcquireSRWLockExclusive kernel32 1 +imp 'AcquireSRWLockShared' AcquireSRWLockShared kernel32 1 +imp 'AddVectoredContinueHandler' AddVectoredContinueHandler kernel32 2 +imp 'AddVectoredExceptionHandler' AddVectoredExceptionHandler kernel32 2 +imp 'AllocConsole' AllocConsole kernel32 0 +imp 'AttachConsole' AttachConsole kernel32 1 +imp 'CallNamedPipe' CallNamedPipeW kernel32 7 +imp 'CallNamedPipeA' CallNamedPipeA kernel32 7 +imp 'CancelIo' CancelIo kernel32 1 +imp 'CancelSynchronousIo' CancelSynchronousIo kernel32 1 +imp 'CheckRemoteDebuggerPresent' CheckRemoteDebuggerPresent kernel32 2 +imp 'ClearCommBreak' ClearCommBreak kernel32 1 +imp 'ConnectNamedPipe' ConnectNamedPipe kernel32 2 +imp 'ContinueDebugEvent' ContinueDebugEvent kernel32 3 +imp 'CopyFile' CopyFileW kernel32 3 +imp 'CreateEvent' CreateEventW kernel32 4 +imp 'CreateEventEx' CreateEventExW kernel32 4 +imp 'CreateHardLink' CreateHardLinkW kernel32 3 +imp 'CreateIoCompletionPort' CreateIoCompletionPort kernel32 4 +imp 'CreateSemaphore' CreateSemaphoreW kernel32 4 +imp 'CreateToolhelp32Snapshot' CreateToolhelp32Snapshot kernel32 2 +imp 'CreateWaitableTimer' CreateWaitableTimerW kernel32 3 +imp 'CreateWaitableTimerEx' CreateWaitableTimerExW kernel32 4 +imp 'DebugActiveProcess' DebugActiveProcess kernel32 1 +imp 'DebugActiveProcessStop' DebugActiveProcessStop kernel32 1 +imp 'DebugBreakProcess' DebugBreakProcess kernel32 1 +imp 'DeleteCriticalSection' DeleteCriticalSection kernel32 1 +imp 'DeleteProcThreadAttributeList' DeleteProcThreadAttributeList kernel32 1 +imp 'DisconnectNamedPipe' DisconnectNamedPipe kernel32 1 +imp 'DuplicateHandle' DuplicateHandle kernel32 7 +imp 'EnterCriticalSection' EnterCriticalSection kernel32 1 +imp 'ExitProcess' ExitProcess kernel32 1 # a.k.a. RtlExitUserProcess +imp 'ExitThread' ExitThread kernel32 1 +imp 'FatalExit' FatalExit kernel32 1 +imp 'FillConsoleOutputAttribute' FillConsoleOutputAttribute kernel32 5 +imp 'FillConsoleOutputCharacter' FillConsoleOutputCharacterW kernel32 5 +imp 'FindFirstFileEx' FindFirstFileExW kernel32 6 +imp 'FindFirstVolume' FindFirstVolumeW kernel32 2 +imp 'FindNextVolume' FindNextVolumeW kernel32 3 +imp 'FindVolumeClose' FindVolumeClose kernel32 1 +imp 'FlushConsoleInputBuffer' FlushConsoleInputBuffer kernel32 1 +imp 'FormatMessage' FormatMessageW kernel32 7 +imp 'FreeConsole' FreeConsole kernel32 0 +imp 'FreeEnvironmentStrings' FreeEnvironmentStringsW kernel32 1 +imp 'FreeLibrary' FreeLibrary kernel32 1 +imp 'FreeResource' FreeResource kernel32 1 +imp 'GetCommandLine' GetCommandLineW kernel32 0 +imp 'GetCompressedFileSize' GetCompressedFileSizeW kernel32 2 +imp 'GetComputerNameEx' GetComputerNameExW kernel32 3 +imp 'GetConsoleCP' GetConsoleCP kernel32 0 +imp 'GetConsoleCursorInfo' GetConsoleCursorInfo kernel32 2 +imp 'GetConsoleMode' GetConsoleMode kernel32 2 +imp 'GetConsoleOutputCP' GetConsoleOutputCP kernel32 0 +imp 'GetConsoleScreenBufferInfo' GetConsoleScreenBufferInfo kernel32 2 +imp 'GetConsoleScreenBufferInfoEx' GetConsoleScreenBufferInfoEx kernel32 2 +imp 'GetConsoleSelectionInfo' GetConsoleSelectionInfo kernel32 1 +imp 'GetConsoleTitle' GetConsoleTitleW kernel32 2 +imp 'GetConsoleWindow' GetConsoleWindow kernel32 0 +imp 'GetCurrentDirectory' GetCurrentDirectoryW kernel32 2 +imp 'GetCurrentProcess' GetCurrentProcess kernel32 0 +imp 'GetCurrentProcessId' GetCurrentProcessId kernel32 0 +imp 'GetCurrentThread' GetCurrentThread kernel32 0 +imp 'GetCurrentThreadId' GetCurrentThreadId kernel32 0 +imp 'GetEnvironmentStrings' GetEnvironmentStringsW kernel32 1 +imp 'GetEnvironmentVariable' GetEnvironmentVariableW kernel32 3 +imp 'GetExitCodeThread' GetExitCodeThread kernel32 2 +imp 'GetFileAttributesEx' GetFileAttributesExW kernel32 3 +imp 'GetFileInformationByHandle' GetFileInformationByHandle kernel32 2 +imp 'GetFileInformationByHandleEx' GetFileInformationByHandleEx kernel32 4 +imp 'GetFileSize' GetFileSize kernel32 2 +imp 'GetFileSizeEx' GetFileSizeEx kernel32 2 +imp 'GetFileTime' GetFileTime kernel32 4 +imp 'GetFileType' GetFileType kernel32 1 +imp 'GetFinalPathNameByHandle' GetFinalPathNameByHandleW kernel32 4 +imp 'GetFullPathName' GetFullPathNameW kernel32 4 +imp 'GetHandleInformation' GetHandleInformation kernel32 2 +imp 'GetLargestConsoleWindowSize' GetLargestConsoleWindowSize kernel32 1 +imp 'GetLastError' GetLastError kernel32 0 +imp 'GetLogicalDrives' GetLogicalDrives kernel32 0 +imp 'GetMaximumProcessorCount' GetMaximumProcessorCount kernel32 1 # Windows 7+ +imp 'GetModuleFileName' GetModuleFileNameW kernel32 3 +imp 'GetModuleHandle' GetModuleHandleA kernel32 1 +imp 'GetModuleHandleEx' GetModuleHandleExW kernel32 3 +imp 'GetModuleHandleW' GetModuleHandleW kernel32 1 +imp 'GetNumberOfConsoleInputEvents' GetNumberOfConsoleInputEvents kernel32 2 +imp 'GetNumberOfConsoleMouseButtons' GetNumberOfConsoleMouseButtons kernel32 1 +imp 'GetOverlappedResult' GetOverlappedResult kernel32 4 +imp 'GetOverlappedResultEx' GetOverlappedResultEx kernel32 5 +imp 'GetPriorityClass' GetPriorityClass kernel32 1 +imp 'GetProcAddress' GetProcAddress kernel32 2 +imp 'GetProcessAffinityMask' GetProcessAffinityMask kernel32 3 +imp 'GetProcessHandleCount' GetProcessHandleCount kernel32 2 +imp 'GetProcessHeap' GetProcessHeap kernel32 0 +imp 'GetProcessHeaps' GetProcessHeaps kernel32 2 +imp 'GetProcessId' GetProcessId kernel32 1 +imp 'GetProcessIdOfThread' GetProcessIdOfThread kernel32 1 +imp 'GetProcessInformation' GetProcessInformation kernel32 4 +imp 'GetProcessIoCounters' GetProcessIoCounters kernel32 2 +imp 'GetProcessPriorityBoost' GetProcessPriorityBoost kernel32 2 +imp 'GetProcessTimes' GetProcessTimes kernel32 5 +imp 'GetProcessWorkingSetSize' GetProcessWorkingSetSize kernel32 3 +imp 'GetProcessWorkingSetSizeEx' GetProcessWorkingSetSizeEx kernel32 4 +imp 'GetQueuedCompletionStatus' GetQueuedCompletionStatus kernel32 5 +imp 'GetQueuedCompletionStatusEx' GetQueuedCompletionStatusEx kernel32 6 +imp 'GetStartupInfo' GetStartupInfoW kernel32 1 +imp 'GetStdHandle' GetStdHandle kernel32 1 +imp 'GetSystemDirectory' GetSystemDirectoryW kernel32 2 +imp 'GetSystemDirectoryA' GetSystemDirectoryA kernel32 2 +imp 'GetSystemInfo' GetSystemInfo kernel32 1 +imp 'GetSystemTime' GetSystemTime kernel32 1 +imp 'GetSystemTimeAdjustment' GetSystemTimeAdjustment kernel32 3 +imp 'GetSystemTimeAsFileTime' GetSystemTimeAsFileTime kernel32 1 +imp 'GetSystemTimePreciseAsFileTime' GetSystemTimePreciseAsFileTime kernel32 1 +imp 'GetSystemTimes' GetSystemTimes kernel32 3 +imp 'GetTempPath' GetTempPathW kernel32 2 +imp 'GetTempPathA' GetTempPathA kernel32 2 +imp 'GetThreadIOPendingFlag' GetThreadIOPendingFlag kernel32 2 +imp 'GetThreadId' GetThreadId kernel32 1 +imp 'GetThreadPriority' GetThreadPriority kernel32 1 +imp 'GetThreadPriorityBoost' GetThreadPriorityBoost kernel32 2 +imp 'GetThreadTimes' GetThreadTimes kernel32 5 +imp 'GetTickCount64' GetTickCount64 kernel32 0 +imp 'GetVersionEx' GetVersionExW kernel32 1 +imp 'GetVolumeInformationByHandle' GetVolumeInformationByHandleW kernel32 8 +imp 'GetVolumePathName' GetVolumePathNameW kernel32 3 +imp 'GetWindowsDirectory' GetWindowsDirectoryW kernel32 2 +imp 'GetWindowsDirectoryA' GetWindowsDirectoryA kernel32 2 +imp 'GlobalAlloc' GlobalAlloc kernel32 2 +imp 'GlobalFree' GlobalFree kernel32 1 +imp 'GlobalMemoryStatusEx' GlobalMemoryStatusEx kernel32 1 +imp 'HeapAlloc' HeapAlloc kernel32 3 +imp 'HeapCompact' HeapCompact kernel32 2 +imp 'HeapCreate' HeapCreate kernel32 3 +imp 'HeapDestroy' HeapDestroy kernel32 1 +imp 'HeapFree' HeapFree kernel32 3 +imp 'HeapReAlloc' HeapReAlloc kernel32 4 +imp 'InitializeCriticalSection' InitializeCriticalSection kernel32 1 +imp 'InitializeCriticalSectionAndSpinCount' InitializeCriticalSectionAndSpinCount kernel32 2 +imp 'InitializeProcThreadAttributeList' InitializeProcThreadAttributeList kernel32 4 +imp 'InitializeSRWLock' InitializeSRWLock kernel32 1 +imp 'LeaveCriticalSection' LeaveCriticalSection kernel32 1 +imp 'LoadLibrary' LoadLibraryW kernel32 1 +imp 'LoadLibraryEx' LoadLibraryExW kernel32 3 +imp 'LoadResource' LoadResource kernel32 2 +imp 'LocalFree' LocalFree kernel32 1 +imp 'LockFile' LockFile kernel32 5 +imp 'LockResource' LockResource kernel32 1 +imp 'MoveFile' MoveFileW kernel32 2 +imp 'MultiByteToWideChar' MultiByteToWideChar kernel32 6 +imp 'OfferVirtualMemory' OfferVirtualMemory kernel32 3 +imp 'OpenThread' OpenThread kernel32 3 +imp 'PeekConsoleInput' PeekConsoleInputW kernel32 4 +imp 'PeekNamedPipe' PeekNamedPipe kernel32 6 +imp 'PostQueuedCompletionStatus' PostQueuedCompletionStatus kernel32 4 +imp 'PrefetchVirtualMemory' PrefetchVirtualMemory kernel32 4 +imp 'Process32First' Process32FirstW kernel32 2 +imp 'Process32Next' Process32NextW kernel32 2 +imp 'PulseEvent' PulseEvent kernel32 1 +imp 'PurgeComm' PurgeComm kernel32 2 +imp 'QueryPerformanceCounter' QueryPerformanceCounter kernel32 1 +imp 'QueryPerformanceFrequency' QueryPerformanceFrequency kernel32 1 +imp 'ReadConsole' ReadConsoleW kernel32 5 +imp 'ReadConsoleInput' ReadConsoleInputW kernel32 4 +imp 'ReadConsoleOutput' ReadConsoleOutputW kernel32 5 +imp 'ReadConsoleOutputAttribute' ReadConsoleOutputAttribute kernel32 5 +imp 'ReadConsoleOutputCharacter' ReadConsoleOutputCharacterW kernel32 5 +imp 'ReadFile' ReadFile kernel32 5 +imp 'ReadFileEx' ReadFileEx kernel32 5 +imp 'ReadFileScatter' ReadFileScatter kernel32 5 +imp 'RegisterWaitForSingleObject' RegisterWaitForSingleObject kernel32 6 +imp 'ReleaseMutex' ReleaseMutex kernel32 1 +imp 'ReleaseSRWLockExclusive' ReleaseSRWLockExclusive kernel32 1 +imp 'ReleaseSRWLockShared' ReleaseSRWLockShared kernel32 1 +imp 'ReleaseSemaphore' ReleaseSemaphore kernel32 3 +imp 'RemoveVectoredContinueHandler' RemoveVectoredContinueHandler kernel32 1 +imp 'RemoveVectoredExceptionHandler' RemoveVectoredExceptionHandler kernel32 1 +imp 'ResetEvent' ResetEvent kernel32 1 +imp 'SetConsoleActiveScreenBuffer' SetConsoleActiveScreenBuffer kernel32 1 # TODO(jart): 6.2 and higher +imp 'SetConsoleCP' SetConsoleCP kernel32 1 # TODO(jart): 6.2 and higher +imp 'SetConsoleCtrlHandler' SetConsoleCtrlHandler kernel32 2 +imp 'SetConsoleCursorInfo' SetConsoleCursorInfo kernel32 2 +imp 'SetConsoleCursorPosition' SetConsoleCursorPosition kernel32 2 +imp 'SetConsoleMode' SetConsoleMode kernel32 2 +imp 'SetConsoleOutputCP' SetConsoleOutputCP kernel32 1 +imp 'SetConsoleScreenBufferInfoEx' SetConsoleScreenBufferInfoEx kernel32 2 +imp 'SetConsoleScreenBufferSize' SetConsoleScreenBufferSize kernel32 2 +imp 'SetConsoleTitle' SetConsoleTitleW kernel32 1 +imp 'SetConsoleWindowInfo' SetConsoleWindowInfo kernel32 3 +imp 'SetCriticalSectionSpinCount' SetCriticalSectionSpinCount kernel32 2 +imp 'SetDefaultDllDirectories' SetDefaultDllDirectories kernel32 1 # Windows 8+, KB2533623 on Windows 7 +imp 'SetEndOfFile' SetEndOfFile kernel32 1 +imp 'SetEnvironmentVariable' SetEnvironmentVariableW kernel32 2 +imp 'SetErrorMode' SetErrorMode kernel32 1 +imp 'SetEvent' SetEvent kernel32 1 +imp 'SetFileAttributes' SetFileAttributesW kernel32 2 +imp 'SetFileCompletionNotificationModes' SetFileCompletionNotificationModes kernel32 2 +imp 'SetFilePointer' SetFilePointer kernel32 4 +imp 'SetFilePointerEx' SetFilePointerEx kernel32 4 +imp 'SetFileTime' SetFileTime kernel32 4 +imp 'SetFileValidData' SetFileValidData kernel32 2 +imp 'SetHandleCount' SetHandleCount kernel32 1 +imp 'SetHandleInformation' SetHandleInformation kernel32 3 +imp 'SetLastError' SetLastError kernel32 1 +imp 'SetNamedPipeHandleState' SetNamedPipeHandleState kernel32 4 +imp 'SetPriorityClass' SetPriorityClass kernel32 2 +imp 'SetProcessAffinityMask' SetProcessAffinityMask kernel32 2 +imp 'SetProcessPriorityBoost' SetProcessPriorityBoost kernel32 2 +imp 'SetProcessWorkingSetSize' SetProcessWorkingSetSize kernel32 3 +imp 'SetProcessWorkingSetSizeEx' SetProcessWorkingSetSizeEx kernel32 4 +imp 'SetStdHandle' SetStdHandle kernel32 2 +imp 'SetThreadAffinityMask' SetThreadAffinityMask kernel32 2 +imp 'SetThreadPriority' SetThreadPriority kernel32 2 +imp 'SetThreadPriorityBoost' SetThreadPriorityBoost kernel32 2 +imp 'SetUnhandledExceptionFilter' SetUnhandledExceptionFilter kernel32 1 +imp 'SetWaitableTimer' SetWaitableTimer kernel32 6 +imp 'Sleep' Sleep kernel32 1 +imp 'SleepEx' SleepEx kernel32 2 +imp 'SuspendThread' SuspendThread kernel32 1 +imp 'SystemTimeToFileTime' SystemTimeToFileTime kernel32 2 +imp 'TerminateThread' TerminateThread kernel32 2 +imp 'TlsAlloc' TlsAlloc kernel32 0 +imp 'TlsFree' TlsFree kernel32 1 +imp 'TlsGetValue' TlsGetValue kernel32 1 +imp 'TlsSetValue' TlsSetValue kernel32 2 +imp 'TransactNamedPipe' TransactNamedPipe kernel32 7 +imp 'TransmitCommChar' TransmitCommChar kernel32 2 +imp 'TryAcquireSRWLockExclusive' TryAcquireSRWLockExclusive kernel32 1 +imp 'TryAcquireSRWLockShared' TryAcquireSRWLockShared kernel32 1 +imp 'TryEnterCriticalSection' TryEnterCriticalSection kernel32 1 +imp 'UnlockFile' UnlockFile kernel32 5 +imp 'UnmapViewOfFile2' UnmapViewOfFile2 kernel32 2 +imp 'UnmapViewOfFileEx' UnmapViewOfFileEx kernel32 3 +imp 'UpdateProcThreadAttribute' UpdateProcThreadAttribute kernel32 7 +imp 'VirtualAlloc' VirtualAlloc kernel32 4 +imp 'VirtualAllocEx' VirtualAllocEx kernel32 5 +imp 'VirtualFree' VirtualFree kernel32 3 +imp 'VirtualLock' VirtualLock kernel32 2 +imp 'VirtualUnlock' VirtualUnlock kernel32 2 +imp 'VirtualQuery' VirtualQuery kernel32 3 +imp 'WaitForMultipleObjectsEx' WaitForMultipleObjectsEx kernel32 5 +imp 'WaitForSingleObjectEx' WaitForSingleObjectEx kernel32 3 +imp 'WideCharToMultiByte' WideCharToMultiByte kernel32 8 +imp 'WriteConsole' WriteConsoleW kernel32 5 +imp 'WriteConsoleInput' WriteConsoleInputW kernel32 4 +imp 'WriteConsoleOutputAttribute' WriteConsoleOutputAttribute kernel32 5 +imp 'WriteConsoleOutputCharacter' WriteConsoleOutputCharacterW kernel32 5 +imp 'WriteFile' WriteFile kernel32 5 +imp 'WriteFileEx' WriteFileEx kernel32 5 +imp 'WriteFileGather' WriteFileGather kernel32 5 +imp '__CancelIoEx' CancelIoEx kernel32 2 +imp '__CloseHandle' CloseHandle kernel32 1 +imp '__CreateDirectory' CreateDirectoryW kernel32 2 +imp '__CreateFile' CreateFileW kernel32 7 +imp '__CreateFileMapping' CreateFileMappingW kernel32 6 +imp '__CreateFileMappingNuma' CreateFileMappingNumaW kernel32 7 +imp '__CreateNamedPipe' CreateNamedPipeW kernel32 8 +imp '__CreatePipe' CreatePipe kernel32 4 +imp '__CreateProcess' CreateProcessW kernel32 10 +imp '__CreateSymbolicLink' CreateSymbolicLinkW kernel32 3 +imp '__CreateThread' CreateThread kernel32 6 +imp '__DeleteFile' DeleteFileW kernel32 1 +imp '__DeviceIoControl' DeviceIoControl kernel32 8 +imp '__FindClose' FindClose kernel32 1 +imp '__FindFirstFile' FindFirstFileW kernel32 2 +imp '__FindNextFile' FindNextFileW kernel32 2 +imp '__FlushFileBuffers' FlushFileBuffers kernel32 1 +imp '__FlushViewOfFile' FlushViewOfFile kernel32 2 +imp '__GenerateConsoleCtrlEvent' GenerateConsoleCtrlEvent kernel32 2 +imp '__GetExitCodeProcess' GetExitCodeProcess kernel32 2 +imp '__GetFileAttributes' GetFileAttributesW kernel32 1 +imp '__LockFileEx' LockFileEx kernel32 6 +imp '__MapViewOfFileEx' MapViewOfFileEx kernel32 6 +imp '__MapViewOfFileExNuma' MapViewOfFileExNuma kernel32 7 +imp '__MoveFileEx' MoveFileExW kernel32 3 +imp '__OpenProcess' OpenProcess kernel32 3 +imp '__ReOpenFile' ReOpenFile kernel32 4 # TODO(jart): 6.2 and higher +imp '__RemoveDirectory' RemoveDirectoryW kernel32 1 +imp '__SetCurrentDirectory' SetCurrentDirectoryW kernel32 1 +imp '__TerminateProcess' TerminateProcess kernel32 2 +imp '__UnlockFileEx' UnlockFileEx kernel32 5 +imp '__UnmapViewOfFile' UnmapViewOfFile kernel32 1 +imp '__VirtualProtect' VirtualProtect kernel32 4 +imp '__WaitForMultipleObjects' WaitForMultipleObjects kernel32 4 +imp '__WaitForSingleObject' WaitForSingleObject kernel32 2 # ADVAPI32.DLL # # Name Actual DLL Hint Arity -imp 'AbortSystemShutdown' AbortSystemShutdownW advapi32 1006 -imp 'AccessCheck' AccessCheck advapi32 0 8 -imp 'AccessCheckAndAuditAlarm' AccessCheckAndAuditAlarmW advapi32 0 -imp 'AccessCheckByType' AccessCheckByType advapi32 0 -imp 'AccessCheckByTypeAndAuditAlarm' AccessCheckByTypeAndAuditAlarmW advapi32 0 -imp 'AccessCheckByTypeResultList' AccessCheckByTypeResultList advapi32 0 -imp 'AccessCheckByTypeResultListAndAuditAlarm' AccessCheckByTypeResultListAndAuditAlarmW advapi32 0 -imp 'AccessCheckByTypeResultListAndAuditAlarmByHandle' AccessCheckByTypeResultListAndAuditAlarmByHandleW advapi32 0 -imp 'AddAccessAllowedAce' AddAccessAllowedAce advapi32 0 -imp 'AddAccessAllowedAceEx' AddAccessAllowedAceEx advapi32 0 -imp 'AddAccessAllowedObjectAce' AddAccessAllowedObjectAce advapi32 0 -imp 'AddAccessDeniedAce' AddAccessDeniedAce advapi32 0 -imp 'AddAccessDeniedAceEx' AddAccessDeniedAceEx advapi32 0 -imp 'AddAccessDeniedObjectAce' AddAccessDeniedObjectAce advapi32 0 -imp 'AddAce' AddAce advapi32 0 -imp 'AddAuditAccessAce' AddAuditAccessAce advapi32 0 -imp 'AddAuditAccessAceEx' AddAuditAccessAceEx advapi32 0 -imp 'AddAuditAccessObjectAce' AddAuditAccessObjectAce advapi32 0 -imp 'AddConditionalAce' AddConditionalAce advapi32 1028 # Windows 7+ -imp 'AddMandatoryAce' AddMandatoryAce advapi32 0 -imp 'AddUsersToEncryptedFile' AddUsersToEncryptedFile advapi32 1030 -imp 'AdjustTokenGroups' AdjustTokenGroups advapi32 0 -imp 'AdjustTokenPrivileges' AdjustTokenPrivileges advapi32 0 6 -imp 'AllocateAndInitializeSid' AllocateAndInitializeSid advapi32 0 -imp 'AllocateLocallyUniqueId' AllocateLocallyUniqueId advapi32 0 -imp 'AreAllAccessesGranted' AreAllAccessesGranted advapi32 0 -imp 'AreAnyAccessesGranted' AreAnyAccessesGranted advapi32 0 -imp 'AuditComputeEffectivePolicyBySid' AuditComputeEffectivePolicyBySid advapi32 1038 -imp 'AuditComputeEffectivePolicyByToken' AuditComputeEffectivePolicyByToken advapi32 1039 -imp 'AuditEnumerateCategories' AuditEnumerateCategories advapi32 1040 -imp 'AuditEnumeratePerUserPolicy' AuditEnumeratePerUserPolicy advapi32 1041 -imp 'AuditEnumerateSubCategories' AuditEnumerateSubCategories advapi32 1042 -imp 'AuditFree' AuditFree advapi32 1043 -imp 'AuditLookupCategoryGuidFromCategoryId' AuditLookupCategoryGuidFromCategoryId advapi32 1044 -imp 'AuditLookupCategoryIdFromCategoryGuid' AuditLookupCategoryIdFromCategoryGuid advapi32 1045 -imp 'AuditLookupCategoryName' AuditLookupCategoryNameW advapi32 1047 -imp 'AuditLookupSubCategoryName' AuditLookupSubCategoryNameW advapi32 1049 -imp 'AuditQueryPerUserPolicy' AuditQueryPerUserPolicy advapi32 1052 -imp 'AuditQuerySecurity' AuditQuerySecurity advapi32 1053 -imp 'AuditQuerySystemPolicy' AuditQuerySystemPolicy advapi32 1054 -imp 'AuditSetPerUserPolicy' AuditSetPerUserPolicy advapi32 1057 -imp 'AuditSetSecurity' AuditSetSecurity advapi32 1058 -imp 'AuditSetSystemPolicy' AuditSetSystemPolicy advapi32 1059 -imp 'BackupEventLog' BackupEventLogW advapi32 1061 -imp 'BuildExplicitAccessWithName' BuildExplicitAccessWithNameW advapi32 1076 -imp 'BuildImpersonateExplicitAccessWithName' BuildImpersonateExplicitAccessWithNameW advapi32 1078 -imp 'BuildImpersonateTrustee' BuildImpersonateTrusteeW advapi32 1080 -imp 'BuildSecurityDescriptor' BuildSecurityDescriptorW advapi32 1082 -imp 'BuildTrusteeWithName' BuildTrusteeWithNameW advapi32 1084 -imp 'BuildTrusteeWithObjectsAndName' BuildTrusteeWithObjectsAndNameW advapi32 1086 -imp 'BuildTrusteeWithObjectsAndSid' BuildTrusteeWithObjectsAndSidW advapi32 1088 -imp 'BuildTrusteeWithSid' BuildTrusteeWithSidW advapi32 1090 -imp 'ChangeServiceConfig' ChangeServiceConfigW advapi32 1095 -imp 'ChangeServiceConfig2W' ChangeServiceConfig2W advapi32 1093 -imp 'CheckTokenMembership' CheckTokenMembership advapi32 0 -imp 'ClearEventLog' ClearEventLogW advapi32 1099 -imp 'CloseEncryptedFileRaw' CloseEncryptedFileRaw advapi32 1101 -imp 'CloseEventLog' CloseEventLog advapi32 1102 -imp 'CloseServiceHandle' CloseServiceHandle advapi32 1103 -imp 'CloseThreadWaitChainSession' CloseThreadWaitChainSession advapi32 1104 -imp 'CloseTrace' CloseTrace advapi32 1105 -imp 'ControlService' ControlService advapi32 1108 -imp 'ControlServiceEx' ControlServiceExW advapi32 1110 -imp 'ControlTrace' ControlTraceW advapi32 1112 -imp 'ConvertSecurityDescriptorToStringSecurityDescriptor' ConvertSecurityDescriptorToStringSecurityDescriptorW advapi32 1123 -imp 'ConvertSidToStringSid' ConvertSidToStringSidW advapi32 1125 -imp 'ConvertStringSDToSDDomain' ConvertStringSDToSDDomainW advapi32 1127 -imp 'ConvertStringSecurityDescriptorToSecurityDescriptor' ConvertStringSecurityDescriptorToSecurityDescriptorW advapi32 1131 -imp 'ConvertStringSidToSid' ConvertStringSidToSidW advapi32 1133 -imp 'ConvertToAutoInheritPrivateObjectSecurity' ConvertToAutoInheritPrivateObjectSecurity advapi32 0 -imp 'CopySid' CopySid advapi32 0 -imp 'CreatePrivateObjectSecurity' CreatePrivateObjectSecurity advapi32 0 -imp 'CreatePrivateObjectSecurityEx' CreatePrivateObjectSecurityEx advapi32 0 -imp 'CreatePrivateObjectSecurityWithMultipleInheritance' CreatePrivateObjectSecurityWithMultipleInheritance advapi32 0 -imp 'CreateProcessAsUser' CreateProcessAsUserW advapi32 0 11 -imp 'CreateProcessWithLogon' CreateProcessWithLogonW advapi32 1142 -imp 'CreateProcessWithToken' CreateProcessWithTokenW advapi32 1143 -imp 'CreateRestrictedToken' CreateRestrictedToken advapi32 0 -imp 'CreateService' CreateServiceW advapi32 1147 -imp 'CreateTraceInstanceId' CreateTraceInstanceId advapi32 0 -imp 'CreateWellKnownSid' CreateWellKnownSid advapi32 0 -imp 'CredDelete' CredDeleteW advapi32 1152 -imp 'CredEnumerate' CredEnumerateW advapi32 1155 -imp 'CredFindBestCredential' CredFindBestCredentialW advapi32 1157 -imp 'CredFree' CredFree advapi32 1158 -imp 'CredGetSessionTypes' CredGetSessionTypes advapi32 1159 -imp 'CredGetTargetInfo' CredGetTargetInfoW advapi32 1161 -imp 'CredIsMarshaledCredential' CredIsMarshaledCredentialW advapi32 1163 -imp 'CredIsProtected' CredIsProtectedW advapi32 1165 -imp 'CredMarshalCredential' CredMarshalCredentialW advapi32 1167 -imp 'CredProtect' CredProtectW advapi32 1172 -imp 'CredRead' CredReadW advapi32 1177 -imp 'CredReadDomainCredentials' CredReadDomainCredentialsW advapi32 1176 -imp 'CredRename' CredRenameW advapi32 1179 -imp 'CredUnmarshalCredential' CredUnmarshalCredentialW advapi32 1182 -imp 'CredUnprotect' CredUnprotectW advapi32 1184 -imp 'CredWrite' CredWriteW advapi32 1188 -imp 'CredWriteDomainCredentials' CredWriteDomainCredentialsW advapi32 1187 -imp 'CryptAcquireContext' CryptAcquireContextW advapi32 1196 -imp 'CryptContextAddRef' CryptContextAddRef advapi32 1197 -imp 'CryptCreateHash' CryptCreateHash advapi32 1198 -imp 'CryptDecrypt' CryptDecrypt advapi32 1199 -imp 'CryptDeriveKey' CryptDeriveKey advapi32 1200 -imp 'CryptDestroyHash' CryptDestroyHash advapi32 1201 -imp 'CryptDestroyKey' CryptDestroyKey advapi32 1202 -imp 'CryptDuplicateHash' CryptDuplicateHash advapi32 1203 -imp 'CryptDuplicateKey' CryptDuplicateKey advapi32 1204 -imp 'CryptEncrypt' CryptEncrypt advapi32 1205 -imp 'CryptEnumProviderTypes' CryptEnumProviderTypesW advapi32 1207 -imp 'CryptEnumProviders' CryptEnumProvidersW advapi32 1209 -imp 'CryptExportKey' CryptExportKey advapi32 1210 -imp 'CryptGenKey' CryptGenKey advapi32 1211 -imp 'CryptGenRandom' CryptGenRandom advapi32 1212 -imp 'CryptGetDefaultProvider' CryptGetDefaultProviderW advapi32 1214 -imp 'CryptGetHashParam' CryptGetHashParam advapi32 1215 -imp 'CryptGetKeyParam' CryptGetKeyParam advapi32 1216 -imp 'CryptGetLocalKeyLimits' CryptGetLocalKeyLimits advapi32 0 -imp 'CryptGetProvParam' CryptGetProvParam advapi32 1217 -imp 'CryptGetUserKey' CryptGetUserKey advapi32 1218 -imp 'CryptHashData' CryptHashData advapi32 1219 -imp 'CryptHashSessionKey' CryptHashSessionKey advapi32 1220 -imp 'CryptImportKey' CryptImportKey advapi32 1221 -imp 'CryptReleaseContext' CryptReleaseContext advapi32 1222 -imp 'CryptSetHashParam' CryptSetHashParam advapi32 1223 -imp 'CryptSetKeyParam' CryptSetKeyParam advapi32 1224 -imp 'CryptSetProvParam' CryptSetProvParam advapi32 1225 -imp 'CryptSetProvider' CryptSetProviderW advapi32 1229 -imp 'CryptSetProviderEx' CryptSetProviderExW advapi32 1228 -imp 'CryptSignHash' CryptSignHashW advapi32 1231 -imp 'CryptVerifySignature' CryptVerifySignatureW advapi32 1233 -imp 'DecryptFile' DecryptFileW advapi32 1236 -imp 'DeleteAce' DeleteAce advapi32 0 -imp 'DeleteService' DeleteService advapi32 1238 -imp 'DeregisterEventSource' DeregisterEventSource advapi32 1239 1 -imp 'DestroyPrivateObjectSecurity' DestroyPrivateObjectSecurity advapi32 0 -imp 'DuplicateEncryptionInfoFile' DuplicateEncryptionInfoFile advapi32 1241 -imp 'DuplicateToken' DuplicateToken advapi32 0 3 -imp 'DuplicateTokenEx' DuplicateTokenEx advapi32 0 6 -imp 'EnableTrace' EnableTrace advapi32 1265 -imp 'EnableTraceEx' EnableTraceEx advapi32 1266 -imp 'EnableTraceEx2' EnableTraceEx2 advapi32 1267 # Windows 7+ -imp 'EncryptFile' EncryptFileW advapi32 1269 -imp 'EncryptionDisable' EncryptionDisable advapi32 1271 -imp 'EnumDependentServices' EnumDependentServicesW advapi32 1273 -imp 'EnumServicesStatus' EnumServicesStatusW advapi32 1279 -imp 'EnumServicesStatusEx' EnumServicesStatusExW advapi32 1278 -imp 'EnumerateTraceGuids' EnumerateTraceGuids advapi32 1280 -imp 'EnumerateTraceGuidsEx' EnumerateTraceGuidsEx advapi32 1281 -imp 'EqualDomainSid' EqualDomainSid advapi32 0 -imp 'EqualPrefixSid' EqualPrefixSid advapi32 0 -imp 'EqualSid' EqualSid advapi32 0 -imp 'EventAccessControl' EventAccessControl advapi32 1285 -imp 'EventAccessQuery' EventAccessQuery advapi32 1286 -imp 'EventAccessRemove' EventAccessRemove advapi32 1287 -imp 'EventActivityIdControl' EventActivityIdControl advapi32 0 -imp 'EventEnabled' EventEnabled advapi32 0 -imp 'EventProviderEnabled' EventProviderEnabled advapi32 0 -imp 'EventRegister' EventRegister advapi32 0 -imp 'EventUnregister' EventUnregister advapi32 0 -imp 'EventWrite' EventWrite advapi32 0 -imp 'EventWriteEx' EventWriteEx advapi32 0 -imp 'EventWriteString' EventWriteString advapi32 0 -imp 'EventWriteTransfer' EventWriteTransfer advapi32 0 -imp 'FileEncryptionStatus' FileEncryptionStatusW advapi32 1301 -imp 'FindFirstFreeAce' FindFirstFreeAce advapi32 0 -imp 'FlushTrace' FlushTraceW advapi32 1305 -imp 'FreeEncryptionCertificateHashList' FreeEncryptionCertificateHashList advapi32 1308 -imp 'FreeInheritedFromArray' FreeInheritedFromArray advapi32 1309 -imp 'FreeSid' FreeSid advapi32 0 -imp 'GetAce' GetAce advapi32 0 -imp 'GetAclInformation' GetAclInformation advapi32 0 -imp 'GetAuditedPermissionsFromAcl' GetAuditedPermissionsFromAclW advapi32 1316 -imp 'GetCurrentHwProfile' GetCurrentHwProfileW advapi32 1318 -imp 'GetEffectiveRightsFromAcl' GetEffectiveRightsFromAclW advapi32 1321 -imp 'GetEventLogInformation' GetEventLogInformation advapi32 1323 -imp 'GetExplicitEntriesFromAcl' GetExplicitEntriesFromAclW advapi32 1325 -imp 'GetFileSecurity' GetFileSecurityW advapi32 0 5 -imp 'GetInheritanceSource' GetInheritanceSourceW advapi32 1331 -imp 'GetKernelObjectSecurity' GetKernelObjectSecurity advapi32 0 -imp 'GetLengthSid' GetLengthSid advapi32 0 -imp 'GetLocalManagedApplications' GetLocalManagedApplications advapi32 1335 -imp 'GetManagedApplicationCategories' GetManagedApplicationCategories advapi32 1336 -imp 'GetManagedApplications' GetManagedApplications advapi32 1337 -imp 'GetMultipleTrustee' GetMultipleTrusteeW advapi32 1341 -imp 'GetMultipleTrusteeOperation' GetMultipleTrusteeOperationW advapi32 1340 -imp 'GetNamedSecurityInfo' GetNamedSecurityInfoW advapi32 1345 -imp 'GetNumberOfEventLogRecords' GetNumberOfEventLogRecords advapi32 1346 -imp 'GetOldestEventLogRecord' GetOldestEventLogRecord advapi32 1347 -imp 'GetPrivateObjectSecurity' GetPrivateObjectSecurity advapi32 0 -imp 'GetSecurityDescriptorControl' GetSecurityDescriptorControl advapi32 0 -imp 'GetSecurityDescriptorDacl' GetSecurityDescriptorDacl advapi32 0 -imp 'GetSecurityDescriptorGroup' GetSecurityDescriptorGroup advapi32 0 -imp 'GetSecurityDescriptorLength' GetSecurityDescriptorLength advapi32 0 -imp 'GetSecurityDescriptorOwner' GetSecurityDescriptorOwner advapi32 0 -imp 'GetSecurityDescriptorRMControl' GetSecurityDescriptorRMControl advapi32 0 -imp 'GetSecurityDescriptorSacl' GetSecurityDescriptorSacl advapi32 0 -imp 'GetSecurityInfo' GetSecurityInfo advapi32 1357 -imp 'GetServiceDisplayName' GetServiceDisplayNameW advapi32 1361 -imp 'GetServiceKeyName' GetServiceKeyNameW advapi32 1363 -imp 'GetSidIdentifierAuthority' GetSidIdentifierAuthority advapi32 0 -imp 'GetSidLengthRequired' GetSidLengthRequired advapi32 0 -imp 'GetSidSubAuthority' GetSidSubAuthority advapi32 0 -imp 'GetSidSubAuthorityCount' GetSidSubAuthorityCount advapi32 0 -imp 'GetThreadWaitChain' GetThreadWaitChain advapi32 1369 -imp 'GetTokenInformation' GetTokenInformation advapi32 0 -imp 'GetTraceEnableFlags' GetTraceEnableFlags advapi32 0 -imp 'GetTraceEnableLevel' GetTraceEnableLevel advapi32 0 -imp 'GetTraceLoggerHandle' GetTraceLoggerHandle advapi32 0 -imp 'GetTrusteeForm' GetTrusteeFormW advapi32 1375 -imp 'GetTrusteeName' GetTrusteeNameW advapi32 1377 -imp 'GetTrusteeType' GetTrusteeTypeW advapi32 1379 -imp 'GetUserName' GetUserNameW advapi32 1381 2 -imp 'GetWindowsAccountDomainSid' GetWindowsAccountDomainSid advapi32 0 -imp 'ImpersonateAnonymousToken' ImpersonateAnonymousToken advapi32 0 -imp 'ImpersonateLoggedOnUser' ImpersonateLoggedOnUser advapi32 0 -imp 'ImpersonateNamedPipeClient' ImpersonateNamedPipeClient advapi32 0 -imp 'ImpersonateSelf' ImpersonateSelf advapi32 0 1 -imp 'InitializeAcl' InitializeAcl advapi32 0 -imp 'InitializeSecurityDescriptor' InitializeSecurityDescriptor advapi32 0 -imp 'InitializeSid' InitializeSid advapi32 0 -imp 'InitiateShutdown' InitiateShutdownW advapi32 1403 5 -imp 'InitiateSystemShutdown' InitiateSystemShutdownW advapi32 1407 -imp 'InitiateSystemShutdownEx' InitiateSystemShutdownExW advapi32 1406 -imp 'InstallApplication' InstallApplication advapi32 1408 -imp 'IsTextUnicode' IsTextUnicode advapi32 1409 -imp 'IsTokenRestricted' IsTokenRestricted advapi32 0 -imp 'IsValidAcl' IsValidAcl advapi32 0 -imp 'IsValidSecurityDescriptor' IsValidSecurityDescriptor advapi32 0 -imp 'IsValidSid' IsValidSid advapi32 0 -imp 'IsWellKnownSid' IsWellKnownSid advapi32 0 -imp 'LockServiceDatabase' LockServiceDatabase advapi32 1417 -imp 'LogonUser' LogonUserW advapi32 1422 -imp 'LogonUserEx' LogonUserExW advapi32 1421 -imp 'LogonUserExEx' LogonUserExExW advapi32 1420 -imp 'LookupAccountName' LookupAccountNameW advapi32 1424 -imp 'LookupAccountSid' LookupAccountSidW advapi32 1426 -imp 'LookupPrivilegeDisplayName' LookupPrivilegeDisplayNameW advapi32 1428 -imp 'LookupPrivilegeName' LookupPrivilegeNameW advapi32 1430 -imp 'LookupPrivilegeValue' LookupPrivilegeValueW advapi32 1432 3 -imp 'LookupSecurityDescriptorParts' LookupSecurityDescriptorPartsW advapi32 1434 -imp 'LsaAddAccountRights' LsaAddAccountRights advapi32 1435 -imp 'LsaClose' LsaClose advapi32 1438 -imp 'LsaCreateTrustedDomain' LsaCreateTrustedDomain advapi32 1441 -imp 'LsaCreateTrustedDomainEx' LsaCreateTrustedDomainEx advapi32 1442 -imp 'LsaDeleteTrustedDomain' LsaDeleteTrustedDomain advapi32 1444 -imp 'LsaEnumerateAccountRights' LsaEnumerateAccountRights advapi32 1445 -imp 'LsaEnumerateAccountsWithUserRight' LsaEnumerateAccountsWithUserRight advapi32 1447 -imp 'LsaEnumerateTrustedDomains' LsaEnumerateTrustedDomains advapi32 1450 -imp 'LsaEnumerateTrustedDomainsEx' LsaEnumerateTrustedDomainsEx advapi32 1451 -imp 'LsaFreeMemory' LsaFreeMemory advapi32 1452 -imp 'LsaLookupNames' LsaLookupNames advapi32 1462 -imp 'LsaLookupNames2' LsaLookupNames2 advapi32 1463 -imp 'LsaLookupSids' LsaLookupSids advapi32 1467 -imp 'LsaNtStatusToWinError' LsaNtStatusToWinError advapi32 1470 -imp 'LsaOpenPolicy' LsaOpenPolicy advapi32 1472 -imp 'LsaOpenTrustedDomainByName' LsaOpenTrustedDomainByName advapi32 1476 -imp 'LsaQueryDomainInformationPolicy' LsaQueryDomainInformationPolicy advapi32 1478 -imp 'LsaQueryForestTrustInformation' LsaQueryForestTrustInformation advapi32 1479 -imp 'LsaQueryInformationPolicy' LsaQueryInformationPolicy advapi32 1481 -imp 'LsaQueryTrustedDomainInfo' LsaQueryTrustedDomainInfo advapi32 1484 -imp 'LsaQueryTrustedDomainInfoByName' LsaQueryTrustedDomainInfoByName advapi32 1485 -imp 'LsaRemoveAccountRights' LsaRemoveAccountRights advapi32 1486 -imp 'LsaRetrievePrivateData' LsaRetrievePrivateData advapi32 1488 -imp 'LsaSetDomainInformationPolicy' LsaSetDomainInformationPolicy advapi32 1490 -imp 'LsaSetForestTrustInformation' LsaSetForestTrustInformation advapi32 1491 -imp 'LsaSetInformationPolicy' LsaSetInformationPolicy advapi32 1492 -imp 'LsaSetTrustedDomainInfoByName' LsaSetTrustedDomainInfoByName advapi32 1498 -imp 'LsaSetTrustedDomainInformation' LsaSetTrustedDomainInformation advapi32 1499 -imp 'LsaStorePrivateData' LsaStorePrivateData advapi32 1500 -imp 'MSChapSrvChangePassword' MSChapSrvChangePassword advapi32 1508 -imp 'MSChapSrvChangePassword2' MSChapSrvChangePassword2 advapi32 1509 -imp 'MakeAbsoluteSD' MakeAbsoluteSD advapi32 0 -imp 'MakeSelfRelativeSD' MakeSelfRelativeSD advapi32 0 -imp 'MapGenericMask' MapGenericMask advapi32 0 2 -imp 'NotifyBootConfigStatus' NotifyBootConfigStatus advapi32 1514 -imp 'NotifyChangeEventLog' NotifyChangeEventLog advapi32 1515 -imp 'NotifyServiceStatusChange' NotifyServiceStatusChangeW advapi32 1518 -imp 'ObjectCloseAuditAlarm' ObjectCloseAuditAlarmW advapi32 0 -imp 'ObjectDeleteAuditAlarm' ObjectDeleteAuditAlarmW advapi32 0 -imp 'ObjectOpenAuditAlarm' ObjectOpenAuditAlarmW advapi32 0 -imp 'ObjectPrivilegeAuditAlarm' ObjectPrivilegeAuditAlarmW advapi32 0 -imp 'OpenBackupEventLog' OpenBackupEventLogW advapi32 1529 -imp 'OpenEncryptedFileRaw' OpenEncryptedFileRawW advapi32 1531 -imp 'OpenEventLog' OpenEventLogW advapi32 1533 -imp 'OpenProcessToken' OpenProcessToken advapi32 0 3 -imp 'OpenSCManager' OpenSCManagerW advapi32 1536 -imp 'OpenService' OpenServiceW advapi32 1538 -imp 'OpenThreadToken' OpenThreadToken advapi32 0 4 -imp 'OpenThreadWaitChainSession' OpenThreadWaitChainSession advapi32 1540 -imp 'OpenTrace' OpenTraceW advapi32 1542 -imp 'PerfCreateInstance' PerfCreateInstance advapi32 0 -imp 'PerfDecrementULongCounterValue' PerfDecrementULongCounterValue advapi32 0 -imp 'PerfDecrementULongLongCounterValue' PerfDecrementULongLongCounterValue advapi32 0 -imp 'PerfDeleteInstance' PerfDeleteInstance advapi32 0 -imp 'PerfIncrementULongCounterValue' PerfIncrementULongCounterValue advapi32 0 -imp 'PerfIncrementULongLongCounterValue' PerfIncrementULongLongCounterValue advapi32 0 -imp 'PerfQueryInstance' PerfQueryInstance advapi32 0 -imp 'PerfSetCounterRefValue' PerfSetCounterRefValue advapi32 0 -imp 'PerfSetCounterSetInfo' PerfSetCounterSetInfo advapi32 0 -imp 'PerfSetULongCounterValue' PerfSetULongCounterValue advapi32 0 -imp 'PerfSetULongLongCounterValue' PerfSetULongLongCounterValue advapi32 0 -imp 'PerfStartProvider' PerfStartProvider advapi32 0 -imp 'PerfStartProviderEx' PerfStartProviderEx advapi32 0 -imp 'PerfStopProvider' PerfStopProvider advapi32 0 -imp 'PrivilegeCheck' PrivilegeCheck advapi32 0 -imp 'PrivilegedServiceAuditAlarm' PrivilegedServiceAuditAlarmW advapi32 0 -imp 'ProcessTrace' ProcessTrace advapi32 1579 -imp 'QueryAllTraces' QueryAllTracesW advapi32 1581 -imp 'QueryRecoveryAgentsOnEncryptedFile' QueryRecoveryAgentsOnEncryptedFile advapi32 1583 -imp 'QuerySecurityAccessMask' QuerySecurityAccessMask advapi32 0 -imp 'QueryServiceConfig' QueryServiceConfigW advapi32 1588 -imp 'QueryServiceConfig2W' QueryServiceConfig2W advapi32 1586 -imp 'QueryServiceLockStatus' QueryServiceLockStatusW advapi32 1591 -imp 'QueryServiceObjectSecurity' QueryServiceObjectSecurity advapi32 1592 -imp 'QueryServiceStatus' QueryServiceStatus advapi32 1593 -imp 'QueryServiceStatusEx' QueryServiceStatusEx advapi32 1594 -imp 'QueryTrace' QueryTraceW advapi32 1597 -imp 'QueryUsersOnEncryptedFile' QueryUsersOnEncryptedFile advapi32 1600 -imp 'ReadEncryptedFileRaw' ReadEncryptedFileRaw advapi32 1601 -imp 'ReadEventLog' ReadEventLogW advapi32 1603 -imp 'RegCloseKey' RegCloseKey advapi32 0 1 -imp 'RegConnectRegistry' RegConnectRegistryW advapi32 1608 3 -imp 'RegCopyTree' RegCopyTreeW advapi32 0 -imp 'RegCreateKey' RegCreateKeyW advapi32 1616 3 -imp 'RegCreateKeyEx' RegCreateKeyExW advapi32 0 9 -imp 'RegCreateKeyTransacted' RegCreateKeyTransactedW advapi32 1615 -imp 'RegDeleteKey' RegDeleteKeyW advapi32 1624 2 -imp 'RegDeleteKeyEx' RegDeleteKeyExW advapi32 0 4 -imp 'RegDeleteKeyTransacted' RegDeleteKeyTransactedW advapi32 1621 -imp 'RegDeleteKeyValue' RegDeleteKeyValueW advapi32 0 -imp 'RegDeleteTree' RegDeleteTreeW advapi32 0 2 -imp 'RegDeleteValue' RegDeleteValueW advapi32 0 2 -imp 'RegDisablePredefinedCache' RegDisablePredefinedCache advapi32 1629 1 -imp 'RegDisablePredefinedCacheEx' RegDisablePredefinedCacheEx advapi32 0 -imp 'RegDisableReflectionKey' RegDisableReflectionKey advapi32 1631 1 -imp 'RegEnableReflectionKey' RegEnableReflectionKey advapi32 1632 1 -imp 'RegEnumKey' RegEnumKeyW advapi32 1636 4 -imp 'RegEnumKeyEx' RegEnumKeyExW advapi32 0 8 -imp 'RegEnumValue' RegEnumValueW advapi32 0 8 -imp 'RegFlushKey' RegFlushKey advapi32 0 1 -imp 'RegGetKeySecurity' RegGetKeySecurity advapi32 0 4 -imp 'RegGetValue' RegGetValueW advapi32 0 7 -imp 'RegLoadAppKey' RegLoadAppKeyW advapi32 0 -imp 'RegLoadKey' RegLoadKeyW advapi32 0 3 -imp 'RegLoadMUIString' RegLoadMUIStringW advapi32 0 -imp 'RegNotifyChangeKeyValue' RegNotifyChangeKeyValue advapi32 0 5 -imp 'RegOpenCurrentUser' RegOpenCurrentUser advapi32 0 2 -imp 'RegOpenKey' RegOpenKeyW advapi32 1656 -imp 'RegOpenKeyEx' RegOpenKeyExW advapi32 0 5 -imp 'RegOpenKeyTransacted' RegOpenKeyTransactedW advapi32 1655 -imp 'RegOpenUserClassesRoot' RegOpenUserClassesRoot advapi32 0 4 -imp 'RegOverridePredefKey' RegOverridePredefKey advapi32 1658 2 -imp 'RegQueryInfoKey' RegQueryInfoKeyW advapi32 0 12 -imp 'RegQueryMultipleValues' RegQueryMultipleValuesW advapi32 0 5 -imp 'RegQueryReflectionKey' RegQueryReflectionKey advapi32 1663 2 -imp 'RegQueryValue' RegQueryValueW advapi32 1667 4 -imp 'RegQueryValueEx' RegQueryValueExW advapi32 0 6 -imp 'RegReplaceKey' RegReplaceKeyW advapi32 1670 4 -imp 'RegRestoreKey' RegRestoreKeyW advapi32 0 3 -imp 'RegSaveKey' RegSaveKeyW advapi32 1676 3 -imp 'RegSaveKeyEx' RegSaveKeyExW advapi32 0 -imp 'RegSetKeySecurity' RegSetKeySecurity advapi32 0 3 -imp 'RegSetKeyValue' RegSetKeyValueW advapi32 0 -imp 'RegSetValue' RegSetValueW advapi32 1683 5 -imp 'RegSetValueEx' RegSetValueExW advapi32 0 6 -imp 'RegUnLoadKey' RegUnLoadKeyW advapi32 0 2 -imp 'RegisterEventSource' RegisterEventSourceW advapi32 1687 2 -imp 'RegisterServiceCtrlHandler' RegisterServiceCtrlHandlerW advapi32 1692 -imp 'RegisterServiceCtrlHandlerEx' RegisterServiceCtrlHandlerExW advapi32 1691 -imp 'RegisterTraceGuids' RegisterTraceGuidsW advapi32 0 -imp 'RegisterWaitChainCOMCallback' RegisterWaitChainCOMCallback advapi32 1695 -imp 'RemoveTraceCallback' RemoveTraceCallback advapi32 0 -imp 'RemoveUsersFromEncryptedFile' RemoveUsersFromEncryptedFile advapi32 1703 -imp 'ReportEvent' ReportEventW advapi32 0 9 -imp 'ReportEventA' ReportEventA advapi32 0 9 -imp 'RevertToSelf' RevertToSelf advapi32 0 0 -imp 'RtlGenRandom' SystemFunction036 advapi32 0 2 -imp 'SaferCloseLevel' SaferCloseLevel advapi32 1708 -imp 'SaferComputeTokenFromLevel' SaferComputeTokenFromLevel advapi32 1709 -imp 'SaferCreateLevel' SaferCreateLevel advapi32 1710 -imp 'SaferGetLevelInformation' SaferGetLevelInformation advapi32 1711 -imp 'SaferGetPolicyInformation' SaferGetPolicyInformation advapi32 1712 -imp 'SaferIdentifyLevel' SaferIdentifyLevel advapi32 1713 -imp 'SaferRecordEventLogEntry' SaferRecordEventLogEntry advapi32 1714 -imp 'SaferiIsExecutableFileType' SaferiIsExecutableFileType advapi32 1720 -imp 'SetAclInformation' SetAclInformation advapi32 0 -imp 'SetEntriesInAcl' SetEntriesInAclW advapi32 1729 -imp 'SetFileSecurity' SetFileSecurityW advapi32 0 -imp 'SetKernelObjectSecurity' SetKernelObjectSecurity advapi32 0 -imp 'SetNamedSecurityInfo' SetNamedSecurityInfoW advapi32 1740 -imp 'SetPrivateObjectSecurity' SetPrivateObjectSecurity advapi32 0 -imp 'SetPrivateObjectSecurityEx' SetPrivateObjectSecurityEx advapi32 0 -imp 'SetSecurityAccessMask' SetSecurityAccessMask advapi32 0 -imp 'SetSecurityDescriptorControl' SetSecurityDescriptorControl advapi32 0 -imp 'SetSecurityDescriptorDacl' SetSecurityDescriptorDacl advapi32 0 -imp 'SetSecurityDescriptorGroup' SetSecurityDescriptorGroup advapi32 0 -imp 'SetSecurityDescriptorOwner' SetSecurityDescriptorOwner advapi32 0 -imp 'SetSecurityDescriptorRMControl' SetSecurityDescriptorRMControl advapi32 0 -imp 'SetSecurityDescriptorSacl' SetSecurityDescriptorSacl advapi32 0 -imp 'SetSecurityInfo' SetSecurityInfo advapi32 1750 -imp 'SetServiceBits' SetServiceBits advapi32 1753 -imp 'SetServiceObjectSecurity' SetServiceObjectSecurity advapi32 1754 -imp 'SetServiceStatus' SetServiceStatus advapi32 1755 -imp 'SetThreadToken' SetThreadToken advapi32 0 -imp 'SetTokenInformation' SetTokenInformation advapi32 0 -imp 'SetTraceCallback' SetTraceCallback advapi32 0 -imp 'SetUserFileEncryptionKey' SetUserFileEncryptionKey advapi32 1759 -imp 'StartService' StartServiceW advapi32 1764 -imp 'StartServiceCtrlDispatcher' StartServiceCtrlDispatcherW advapi32 1763 -imp 'StartTrace' StartTraceW advapi32 1766 -imp 'StopTrace' StopTraceW advapi32 1768 -imp 'SystemFunction040' SystemFunction040 advapi32 0 -imp 'SystemFunction041' SystemFunction041 advapi32 0 -imp 'TraceEvent' TraceEvent advapi32 0 -imp 'TraceEventInstance' TraceEventInstance advapi32 0 -imp 'TraceMessage' TraceMessage advapi32 0 -imp 'TraceMessageVa' TraceMessageVa advapi32 0 -imp 'TraceSetInformation' TraceSetInformation advapi32 1812 # Windows 7+ -imp 'TreeResetNamedSecurityInfo' TreeResetNamedSecurityInfoW advapi32 1814 -imp 'TreeSetNamedSecurityInfo' TreeSetNamedSecurityInfoW advapi32 1816 -imp 'UninstallApplication' UninstallApplication advapi32 1819 -imp 'UnlockServiceDatabase' UnlockServiceDatabase advapi32 1820 -imp 'UnregisterTraceGuids' UnregisterTraceGuids advapi32 0 -imp 'UpdateTrace' UpdateTraceW advapi32 1824 +imp 'AccessCheck' AccessCheck advapi32 8 +imp 'AdjustTokenPrivileges' AdjustTokenPrivileges advapi32 6 +imp 'CreateProcessAsUser' CreateProcessAsUserW advapi32 11 +imp 'DeregisterEventSource' DeregisterEventSource advapi32 1 +imp 'DuplicateToken' DuplicateToken advapi32 3 +imp 'DuplicateTokenEx' DuplicateTokenEx advapi32 6 +imp 'GetFileSecurity' GetFileSecurityW advapi32 5 +imp 'GetUserName' GetUserNameW advapi32 2 +imp 'ImpersonateSelf' ImpersonateSelf advapi32 1 +imp 'InitiateShutdown' InitiateShutdownW advapi32 5 +imp 'LookupPrivilegeValue' LookupPrivilegeValueW advapi32 3 +imp 'MapGenericMask' MapGenericMask advapi32 2 +imp 'OpenProcessToken' OpenProcessToken advapi32 3 +imp 'OpenThreadToken' OpenThreadToken advapi32 4 +imp 'RegCloseKey' RegCloseKey advapi32 1 +imp 'RegConnectRegistry' RegConnectRegistryW advapi32 3 +imp 'RegCreateKey' RegCreateKeyW advapi32 3 +imp 'RegCreateKeyEx' RegCreateKeyExW advapi32 9 +imp 'RegDeleteKey' RegDeleteKeyW advapi32 2 +imp 'RegDeleteKeyEx' RegDeleteKeyExW advapi32 4 +imp 'RegDeleteTree' RegDeleteTreeW advapi32 2 +imp 'RegDeleteValue' RegDeleteValueW advapi32 2 +imp 'RegDisablePredefinedCache' RegDisablePredefinedCache advapi32 1 +imp 'RegDisableReflectionKey' RegDisableReflectionKey advapi32 1 +imp 'RegEnableReflectionKey' RegEnableReflectionKey advapi32 1 +imp 'RegEnumKey' RegEnumKeyW advapi32 4 +imp 'RegEnumKeyEx' RegEnumKeyExW advapi32 8 +imp 'RegEnumValue' RegEnumValueW advapi32 8 +imp 'RegFlushKey' RegFlushKey advapi32 1 +imp 'RegGetKeySecurity' RegGetKeySecurity advapi32 4 +imp 'RegGetValue' RegGetValueW advapi32 7 +imp 'RegLoadKey' RegLoadKeyW advapi32 3 +imp 'RegNotifyChangeKeyValue' RegNotifyChangeKeyValue advapi32 5 +imp 'RegOpenCurrentUser' RegOpenCurrentUser advapi32 2 +imp 'RegOpenKeyEx' RegOpenKeyExW advapi32 5 +imp 'RegOpenUserClassesRoot' RegOpenUserClassesRoot advapi32 4 +imp 'RegOverridePredefKey' RegOverridePredefKey advapi32 2 +imp 'RegQueryInfoKey' RegQueryInfoKeyW advapi32 12 +imp 'RegQueryMultipleValues' RegQueryMultipleValuesW advapi32 5 +imp 'RegQueryReflectionKey' RegQueryReflectionKey advapi32 2 +imp 'RegQueryValue' RegQueryValueW advapi32 4 +imp 'RegQueryValueEx' RegQueryValueExW advapi32 6 +imp 'RegReplaceKey' RegReplaceKeyW advapi32 4 +imp 'RegRestoreKey' RegRestoreKeyW advapi32 3 +imp 'RegSaveKey' RegSaveKeyW advapi32 3 +imp 'RegSetKeySecurity' RegSetKeySecurity advapi32 3 +imp 'RegSetValue' RegSetValueW advapi32 5 +imp 'RegSetValueEx' RegSetValueExW advapi32 6 +imp 'RegUnLoadKey' RegUnLoadKeyW advapi32 2 +imp 'RegisterEventSource' RegisterEventSourceW advapi32 2 +imp 'ReportEvent' ReportEventW advapi32 9 +imp 'ReportEventA' ReportEventA advapi32 9 +imp 'RevertToSelf' RevertToSelf advapi32 0 +imp 'RtlGenRandom' SystemFunction036 advapi32 2 +imp 'TraceSetInformation' TraceSetInformation advapi32 # Windows 7+ # USER32.DLL # -# Name Actual DLL Hint Arity -imp 'ActivateKeyboardLayout' ActivateKeyboardLayout user32 1505 -imp 'AddClipboardFormatListener' AddClipboardFormatListener user32 1506 -imp 'AdjustWindowRect' AdjustWindowRect user32 1507 3 -imp 'AdjustWindowRectEx' AdjustWindowRectEx user32 1508 -imp 'AdjustWindowRectExForDpi' AdjustWindowRectExForDpi user32 1509 -imp 'AlignRects' AlignRects user32 1510 -imp 'AllowForegroundActivation' AllowForegroundActivation user32 1511 -imp 'AllowSetForegroundWindow' AllowSetForegroundWindow user32 1512 -imp 'AnimateWindow' AnimateWindow user32 1513 3 -imp 'AnyPopup' AnyPopup user32 1514 -imp 'AppendMenuA' AppendMenuA user32 1515 4 -imp 'AppendMenu' AppendMenuW user32 1516 4 -imp 'AreDpiAwarenessContextsEqual' AreDpiAwarenessContextsEqual user32 1517 -imp 'ArrangeIconicWindows' ArrangeIconicWindows user32 1518 -imp 'AttachThreadInput' AttachThreadInput user32 1519 -imp 'BeginDeferWindowPos' BeginDeferWindowPos user32 1520 -imp 'BeginPaint' BeginPaint user32 1521 2 -imp 'BlockInput' BlockInput user32 1522 -imp 'BringWindowToTop' BringWindowToTop user32 1523 1 -imp 'BroadcastSystemMessage' BroadcastSystemMessageW user32 1528 -imp 'BroadcastSystemMessageEx' BroadcastSystemMessageExW user32 1527 -imp 'BuildReasonArray' BuildReasonArray user32 1529 -imp 'CalcMenuBar' CalcMenuBar user32 1530 -imp 'CalculatePopupWindowPosition' CalculatePopupWindowPosition user32 1531 -imp 'CallMsgFilter' CallMsgFilterW user32 1534 -imp 'CallNextHookEx' CallNextHookEx user32 1535 4 -imp 'CallWindowProc' CallWindowProcW user32 1537 -imp 'CancelShutdown' CancelShutdown user32 1538 -imp 'CascadeChildWindows' CascadeChildWindows user32 1539 -imp 'CascadeWindows' CascadeWindows user32 1540 -imp 'ChangeClipboardChain' ChangeClipboardChain user32 1541 -imp 'ChangeDisplaySettings' ChangeDisplaySettingsW user32 1545 -imp 'ChangeDisplaySettingsEx' ChangeDisplaySettingsExW user32 1544 -imp 'ChangeMenu' ChangeMenuW user32 1547 -imp 'ChangeWindowMessageFilter' ChangeWindowMessageFilter user32 1548 -imp 'ChangeWindowMessageFilterEx' ChangeWindowMessageFilterEx user32 1549 -imp 'CharToOem' CharToOemW user32 1568 -imp 'CharToOemBuff' CharToOemBuffW user32 1567 -imp 'CheckDBCSEnabledExt' CheckDBCSEnabledExt user32 1573 -imp 'CheckDlgButton' CheckDlgButton user32 1574 -imp 'CheckMenuItem' CheckMenuItem user32 1575 -imp 'CheckMenuRadioItem' CheckMenuRadioItem user32 1576 -imp 'CheckProcessForClipboardAccess' CheckProcessForClipboardAccess user32 1577 -imp 'CheckProcessSession' CheckProcessSession user32 1578 -imp 'CheckRadioButton' CheckRadioButton user32 1579 -imp 'CheckWindowThreadDesktop' CheckWindowThreadDesktop user32 1580 -imp 'ChildWindowFromPoint' ChildWindowFromPoint user32 1581 -imp 'ChildWindowFromPointEx' ChildWindowFromPointEx user32 1582 -imp 'CliImmSetHotKey' CliImmSetHotKey user32 1583 -imp 'ClientThreadSetup' ClientThreadSetup user32 1584 -imp 'ClientToScreen' ClientToScreen user32 1585 -imp 'ClipCursor' ClipCursor user32 1586 -imp 'CloseClipboard' CloseClipboard user32 1587 -imp 'CloseDesktop' CloseDesktop user32 1588 -imp 'CloseGestureInfoHandle' CloseGestureInfoHandle user32 1589 -imp 'CloseTouchInputHandle' CloseTouchInputHandle user32 1590 -imp 'CloseWindow' CloseWindow user32 1591 1 -imp 'CloseWindowStation' CloseWindowStation user32 1592 -imp 'ConsoleControl' ConsoleControl user32 1593 -imp 'ControlMagnification' ControlMagnification user32 1594 -imp 'CopyAcceleratorTable' CopyAcceleratorTableW user32 1596 -imp 'CopyIcon' CopyIcon user32 1597 -imp 'CopyImage' CopyImage user32 1598 -imp 'CopyRect' CopyRect user32 1599 -imp 'CountClipboardFormats' CountClipboardFormats user32 1600 -imp 'CreateAcceleratorTable' CreateAcceleratorTableW user32 1602 -imp 'CreateCaret' CreateCaret user32 1603 -imp 'CreateCursor' CreateCursor user32 1604 -imp 'CreateDCompositionHwndTarget' CreateDCompositionHwndTarget user32 1605 -imp 'CreateDesktop' CreateDesktopW user32 1609 -imp 'CreateDesktopEx' CreateDesktopExW user32 1608 -imp 'CreateDialogIndirectParam' CreateDialogIndirectParamW user32 1612 -imp 'CreateDialogIndirectParamAor' CreateDialogIndirectParamAorW user32 1611 -imp 'CreateDialogParam' CreateDialogParamW user32 1614 -imp 'CreateIcon' CreateIcon user32 1615 -imp 'CreateIconFromResource' CreateIconFromResource user32 1616 -imp 'CreateIconFromResourceEx' CreateIconFromResourceEx user32 1617 -imp 'CreateIconIndirect' CreateIconIndirect user32 1618 1 -imp 'CreateMDIWindow' CreateMDIWindowW user32 1620 -imp 'CreateMenu' CreateMenu user32 1621 0 -imp 'CreatePalmRejectionDelayZone' CreatePalmRejectionDelayZone user32 1503 -imp 'CreatePopupMenu' CreatePopupMenu user32 1622 0 -imp 'CreateSystemThreads' CreateSystemThreads user32 1623 -imp 'CreateWindowEx' CreateWindowExW user32 1625 12 -imp 'CreateWindowInBand' CreateWindowInBand user32 1626 -imp 'CreateWindowInBandEx' CreateWindowInBandEx user32 1627 -imp 'CreateWindowIndirect' CreateWindowIndirect user32 1628 -imp 'CreateWindowStation' CreateWindowStationW user32 1630 -imp 'CsrBroadcastSystemMessageEx' CsrBroadcastSystemMessageExW user32 1631 -imp 'CtxInitUser32' CtxInitUser32 user32 1632 -imp 'DWMBindCursorToOutputConfig' DWMBindCursorToOutputConfig user32 1633 -imp 'DWMCommitInputSystemOutputConfig' DWMCommitInputSystemOutputConfig user32 1634 -imp 'DWMSetCursorOrientation' DWMSetCursorOrientation user32 1635 -imp 'DWMSetInputSystemOutputConfig' DWMSetInputSystemOutputConfig user32 1636 -imp 'DdeAbandonTransaction' DdeAbandonTransaction user32 1637 -imp 'DdeAccessData' DdeAccessData user32 1638 -imp 'DdeAddData' DdeAddData user32 1639 -imp 'DdeClientTransaction' DdeClientTransaction user32 1640 -imp 'DdeCmpStringHandles' DdeCmpStringHandles user32 1641 -imp 'DdeConnect' DdeConnect user32 1642 -imp 'DdeConnectList' DdeConnectList user32 1643 -imp 'DdeCreateDataHandle' DdeCreateDataHandle user32 1644 -imp 'DdeCreateStringHandle' DdeCreateStringHandleW user32 1646 -imp 'DdeDisconnect' DdeDisconnect user32 1647 -imp 'DdeDisconnectList' DdeDisconnectList user32 1648 -imp 'DdeEnableCallback' DdeEnableCallback user32 1649 -imp 'DdeFreeDataHandle' DdeFreeDataHandle user32 1650 -imp 'DdeFreeStringHandle' DdeFreeStringHandle user32 1651 -imp 'DdeGetData' DdeGetData user32 1652 -imp 'DdeGetLastError' DdeGetLastError user32 1653 -imp 'DdeGetQualityOfService' DdeGetQualityOfService user32 1654 -imp 'DdeImpersonateClient' DdeImpersonateClient user32 1655 -imp 'DdeInitialize' DdeInitializeW user32 1657 -imp 'DdeKeepStringHandle' DdeKeepStringHandle user32 1658 -imp 'DdeNameService' DdeNameService user32 1659 -imp 'DdePostAdvise' DdePostAdvise user32 1660 -imp 'DdeQueryConvInfo' DdeQueryConvInfo user32 1661 -imp 'DdeQueryNextServer' DdeQueryNextServer user32 1662 -imp 'DdeQueryString' DdeQueryStringW user32 1664 -imp 'DdeReconnect' DdeReconnect user32 1665 -imp 'DdeSetQualityOfService' DdeSetQualityOfService user32 1666 -imp 'DdeSetUserHandle' DdeSetUserHandle user32 1667 -imp 'DdeUnaccessData' DdeUnaccessData user32 1668 -imp 'DdeUninitialize' DdeUninitialize user32 1669 -imp 'DefFrameProc' DefFrameProcW user32 1673 -imp 'DefMDIChildProc' DefMDIChildProcW user32 1675 -imp 'DefRawInputProc' DefRawInputProc user32 1676 -imp 'DefWindowProc' DefWindowProcW user32 174 4 -imp 'DeferWindowPos' DeferWindowPos user32 1679 -imp 'DeferWindowPosAndBand' DeferWindowPosAndBand user32 1680 -imp 'DelegateInput' DelegateInput user32 2503 -imp 'DeleteMenu' DeleteMenu user32 1681 3 -imp 'DeregisterShellHookWindow' DeregisterShellHookWindow user32 1682 -imp 'DestroyAcceleratorTable' DestroyAcceleratorTable user32 1683 -imp 'DestroyCaret' DestroyCaret user32 1684 -imp 'DestroyCursor' DestroyCursor user32 1685 -imp 'DestroyDCompositionHwndTarget' DestroyDCompositionHwndTarget user32 1686 -imp 'DestroyIcon' DestroyIcon user32 1687 1 -imp 'DestroyMenu' DestroyMenu user32 1688 1 -imp 'DestroyPalmRejectionDelayZone' DestroyPalmRejectionDelayZone user32 1504 -imp 'DestroyReasons' DestroyReasons user32 1689 -imp 'DestroyWindow' DestroyWindow user32 1690 1 -imp 'DialogBoxIndirectParam' DialogBoxIndirectParamW user32 1693 -imp 'DialogBoxIndirectParamAor' DialogBoxIndirectParamAorW user32 1692 -imp 'DialogBoxParam' DialogBoxParamW user32 1695 -imp 'DisableProcessWindowsGhosting' DisableProcessWindowsGhosting user32 1696 -imp 'DispatchMessage' DispatchMessageW user32 1698 1 -imp 'DisplayConfigGetDeviceInfo' DisplayConfigGetDeviceInfo user32 1699 -imp 'DisplayConfigSetDeviceInfo' DisplayConfigSetDeviceInfo user32 1700 -imp 'DisplayExitWindowsWarnings' DisplayExitWindowsWarnings user32 1701 -imp 'DlgDirList' DlgDirListW user32 1705 -imp 'DlgDirListComboBox' DlgDirListComboBoxW user32 1704 -imp 'DlgDirSelectComboBoxEx' DlgDirSelectComboBoxExW user32 1707 -imp 'DlgDirSelectEx' DlgDirSelectExW user32 1709 -imp 'DoSoundConnect' DoSoundConnect user32 1710 -imp 'DoSoundDisconnect' DoSoundDisconnect user32 1711 -imp 'DragDetect' DragDetect user32 1712 -imp 'DragObject' DragObject user32 1713 -imp 'DrawAnimatedRects' DrawAnimatedRects user32 1714 -imp 'DrawCaption' DrawCaption user32 1715 -imp 'DrawCaptionTemp' DrawCaptionTempW user32 1717 -imp 'DrawEdge' DrawEdge user32 1718 -imp 'DrawFocusRect' DrawFocusRect user32 1719 -imp 'DrawFrame' DrawFrame user32 1720 -imp 'DrawFrameControl' DrawFrameControl user32 1721 -imp 'DrawIcon' DrawIcon user32 1722 -imp 'DrawIconEx' DrawIconEx user32 1723 -imp 'DrawMenuBar' DrawMenuBar user32 1724 -imp 'DrawMenuBarTemp' DrawMenuBarTemp user32 1725 -imp 'DrawState' DrawStateW user32 1727 -imp 'DrawText' DrawTextW user32 1731 5 -imp 'DrawTextEx' DrawTextExW user32 1730 6 -imp 'DwmGetDxRgn' DwmGetDxRgn user32 1553 -imp 'DwmGetDxSharedSurface' DwmGetDxSharedSurface user32 1732 -imp 'DwmGetRemoteSessionOcclusionEvent' DwmGetRemoteSessionOcclusionEvent user32 1733 -imp 'DwmGetRemoteSessionOcclusionState' DwmGetRemoteSessionOcclusionState user32 1734 -imp 'DwmKernelShutdown' DwmKernelShutdown user32 1735 -imp 'DwmKernelStartup' DwmKernelStartup user32 1736 -imp 'DwmLockScreenUpdates' DwmLockScreenUpdates user32 1737 -imp 'DwmValidateWindow' DwmValidateWindow user32 1738 -imp 'EditWndProc' EditWndProc user32 1739 -imp 'EmptyClipboard' EmptyClipboard user32 1704 -imp 'EnableMenuItem' EnableMenuItem user32 1741 -imp 'EnableMouseInPointer' EnableMouseInPointer user32 1742 -imp 'EnableNonClientDpiScaling' EnableNonClientDpiScaling user32 1743 -imp 'EnableOneCoreTransformMode' EnableOneCoreTransformMode user32 1744 -imp 'EnableScrollBar' EnableScrollBar user32 1745 -imp 'EnableSessionForMMCSS' EnableSessionForMMCSS user32 1746 -imp 'EnableWindow' EnableWindow user32 1747 -imp 'EndDeferWindowPos' EndDeferWindowPos user32 1748 -imp 'EndDeferWindowPosEx' EndDeferWindowPosEx user32 1749 -imp 'EndDialog' EndDialog user32 1750 -imp 'EndMenu' EndMenu user32 1751 -imp 'EndPaint' EndPaint user32 1752 2 -imp 'EndTask' EndTask user32 1753 -imp 'EnterReaderModeHelper' EnterReaderModeHelper user32 1754 -imp 'EnumChildWindows' EnumChildWindows user32 1755 3 -imp 'EnumClipboardFormats' EnumClipboardFormats user32 1756 -imp 'EnumDesktopWindows' EnumDesktopWindows user32 1757 -imp 'EnumDesktops' EnumDesktopsW user32 1759 -imp 'EnumDisplayDevices' EnumDisplayDevicesW user32 1761 -imp 'EnumDisplayMonitors' EnumDisplayMonitors user32 1762 -imp 'EnumDisplaySettings' EnumDisplaySettingsW user32 1766 -imp 'EnumDisplaySettingsEx' EnumDisplaySettingsExW user32 1765 -imp 'EnumProps' EnumPropsW user32 1770 -imp 'EnumPropsEx' EnumPropsExW user32 1769 -imp 'EnumThreadWindows' EnumThreadWindows user32 1771 -imp 'EnumWindowStations' EnumWindowStationsW user32 1773 -imp 'EnumWindows' EnumWindows user32 1774 -imp 'EqualRect' EqualRect user32 1775 -imp 'EvaluateProximityToPolygon' EvaluateProximityToPolygon user32 1776 -imp 'EvaluateProximityToRect' EvaluateProximityToRect user32 1777 -imp 'ExcludeUpdateRgn' ExcludeUpdateRgn user32 1778 -imp 'ExitWindowsEx' ExitWindowsEx user32 1779 -imp 'FillRect' FillRect user32 1780 3 -imp 'FindWindow' FindWindowW user32 1784 2 -imp 'FindWindowEx' FindWindowExW user32 1783 4 -imp 'FlashWindow' FlashWindow user32 1785 -imp 'FlashWindowEx' FlashWindowEx user32 1786 -imp 'FrameRect' FrameRect user32 1787 -imp 'FreeDDElParam' FreeDDElParam user32 1788 -imp 'FrostCrashedWindow' FrostCrashedWindow user32 1789 -imp 'GetActiveWindow' GetActiveWindow user32 1790 -imp 'GetAltTabInfo' GetAltTabInfoW user32 1793 -imp 'GetAncestor' GetAncestor user32 1794 -imp 'GetAppCompatFlags' GetAppCompatFlags user32 1795 -imp 'GetAppCompatFlags2' GetAppCompatFlags2 user32 1796 -imp 'GetAsyncKeyState' GetAsyncKeyState user32 1797 -imp 'GetAutoRotationState' GetAutoRotationState user32 1798 -imp 'GetAwarenessFromDpiAwarenessContext' GetAwarenessFromDpiAwarenessContext user32 1799 -imp 'GetCIMSSM' GetCIMSSM user32 1800 -imp 'GetCapture' GetCapture user32 1801 -imp 'GetCaretBlinkTime' GetCaretBlinkTime user32 1802 -imp 'GetCaretPos' GetCaretPos user32 1803 -imp 'GetClassInfo' GetClassInfoW user32 1807 -imp 'GetClassInfoEx' GetClassInfoExW user32 1806 -imp 'GetClassLong' GetClassLongW user32 1811 -imp 'GetClassLongPtr' GetClassLongPtrW user32 1810 -imp 'GetClassName' GetClassNameW user32 1813 -imp 'GetClassWord' GetClassWord user32 1814 -imp 'GetClientRect' GetClientRect user32 1815 2 -imp 'GetClipCursor' GetClipCursor user32 1816 -imp 'GetClipboardAccessToken' GetClipboardAccessToken user32 1817 -imp 'GetClipboardData' GetClipboardData user32 1818 -imp 'GetClipboardFormatName' GetClipboardFormatNameW user32 1820 -imp 'GetClipboardOwner' GetClipboardOwner user32 1821 -imp 'GetClipboardSequenceNumber' GetClipboardSequenceNumber user32 1822 -imp 'GetClipboardViewer' GetClipboardViewer user32 1823 -imp 'GetComboBoxInfo' GetComboBoxInfo user32 1824 -imp 'GetCurrentInputMessageSource' GetCurrentInputMessageSource user32 1825 -imp 'GetCursor' GetCursor user32 1826 0 -imp 'GetCursorFrameInfo' GetCursorFrameInfo user32 1827 -imp 'GetCursorInfo' GetCursorInfo user32 1828 -imp 'GetCursorPos' GetCursorPos user32 1829 1 -imp 'GetDC' GetDC user32 1830 1 -imp 'GetDCEx' GetDCEx user32 1831 -imp 'GetDesktopID' GetDesktopID user32 1832 -imp 'GetDesktopWindow' GetDesktopWindow user32 1833 0 -imp 'GetDialogBaseUnits' GetDialogBaseUnits user32 1834 -imp 'GetDialogControlDpiChangeBehavior' GetDialogControlDpiChangeBehavior user32 1835 -imp 'GetDialogDpiChangeBehavior' GetDialogDpiChangeBehavior user32 1836 -imp 'GetDisplayAutoRotationPreferences' GetDisplayAutoRotationPreferences user32 1837 -imp 'GetDisplayConfigBufferSizes' GetDisplayConfigBufferSizes user32 1838 -imp 'GetDlgCtrlID' GetDlgCtrlID user32 1839 -imp 'GetDlgItem' GetDlgItem user32 1840 -imp 'GetDlgItemInt' GetDlgItemInt user32 1841 -imp 'GetDlgItemText' GetDlgItemTextW user32 1843 -imp 'GetDoubleClickTime' GetDoubleClickTime user32 1844 -imp 'GetDpiForMonitorInternal' GetDpiForMonitorInternal user32 1845 -imp 'GetDpiForSystem' GetDpiForSystem user32 1846 -imp 'GetDpiForWindow' GetDpiForWindow user32 1847 -imp 'GetDpiFromDpiAwarenessContext' GetDpiFromDpiAwarenessContext user32 1848 -imp 'GetFocus' GetFocus user32 1849 -imp 'GetForegroundWindow' GetForegroundWindow user32 1850 -imp 'GetGUIThreadInfo' GetGUIThreadInfo user32 1851 -imp 'GetGestureConfig' GetGestureConfig user32 1852 -imp 'GetGestureExtraArgs' GetGestureExtraArgs user32 1853 -imp 'GetGestureInfo' GetGestureInfo user32 1854 -imp 'GetGuiResources' GetGuiResources user32 1855 -imp 'GetIconInfo' GetIconInfo user32 1856 -imp 'GetIconInfoEx' GetIconInfoExW user32 1858 -imp 'GetInputDesktop' GetInputDesktop user32 1859 -imp 'GetInputLocaleInfo' GetInputLocaleInfo user32 1860 -imp 'GetInputState' GetInputState user32 1861 -imp 'GetInternalWindowPos' GetInternalWindowPos user32 1862 -imp 'GetKBCodePage' GetKBCodePage user32 1863 -imp 'GetKeyNameText' GetKeyNameTextW user32 1865 -imp 'GetKeyState' GetKeyState user32 1866 1 -imp 'GetKeyboardLayout' GetKeyboardLayout user32 1867 1 -imp 'GetKeyboardLayoutList' GetKeyboardLayoutList user32 1868 -imp 'GetKeyboardLayoutName' GetKeyboardLayoutNameW user32 1870 -imp 'GetKeyboardState' GetKeyboardState user32 1871 -imp 'GetKeyboardType' GetKeyboardType user32 1872 -imp 'GetLastActivePopup' GetLastActivePopup user32 1873 -imp 'GetLastInputInfo' GetLastInputInfo user32 1874 -imp 'GetLayeredWindowAttributes' GetLayeredWindowAttributes user32 1875 -imp 'GetListBoxInfo' GetListBoxInfo user32 1876 -imp 'GetMagnificationDesktopColorEffect' GetMagnificationDesktopColorEffect user32 1877 -imp 'GetMagnificationDesktopMagnification' GetMagnificationDesktopMagnification user32 1878 -imp 'GetMagnificationDesktopSamplingMode' GetMagnificationDesktopSamplingMode user32 1879 -imp 'GetMagnificationLensCtxInformation' GetMagnificationLensCtxInformation user32 1880 -imp 'GetMenu' GetMenu user32 1881 1 -imp 'GetMenuBarInfo' GetMenuBarInfo user32 1882 -imp 'GetMenuCheckMarkDimensions' GetMenuCheckMarkDimensions user32 1883 -imp 'GetMenuContextHelpId' GetMenuContextHelpId user32 1884 -imp 'GetMenuDefaultItem' GetMenuDefaultItem user32 1885 -imp 'GetMenuInfo' GetMenuInfo user32 1886 -imp 'GetMenuItemCount' GetMenuItemCount user32 1887 -imp 'GetMenuItemID' GetMenuItemID user32 1888 -imp 'GetMenuItemInfo' GetMenuItemInfoW user32 1890 -imp 'GetMenuItemRect' GetMenuItemRect user32 1891 -imp 'GetMenuState' GetMenuState user32 1892 -imp 'GetMenuString' GetMenuStringW user32 1894 -imp 'GetMessage' GetMessageW user32 1899 4 -imp 'GetMessageExtraInfo' GetMessageExtraInfo user32 1896 -imp 'GetMessagePos' GetMessagePos user32 1897 -imp 'GetMessageTime' GetMessageTime user32 1898 -imp 'GetMonitorInfo' GetMonitorInfoW user32 1901 -imp 'GetMouseMovePointsEx' GetMouseMovePointsEx user32 1902 -imp 'GetNextDlgGroupItem' GetNextDlgGroupItem user32 1903 -imp 'GetNextDlgTabItem' GetNextDlgTabItem user32 1904 -imp 'GetOpenClipboardWindow' GetOpenClipboardWindow user32 1905 -imp 'GetParent' GetParent user32 1906 1 -imp 'GetPhysicalCursorPos' GetPhysicalCursorPos user32 1907 -imp 'GetPointerCursorId' GetPointerCursorId user32 1908 -imp 'GetPointerDevice' GetPointerDevice user32 1909 -imp 'GetPointerDeviceCursors' GetPointerDeviceCursors user32 1910 -imp 'GetPointerDeviceProperties' GetPointerDeviceProperties user32 1911 -imp 'GetPointerDeviceRects' GetPointerDeviceRects user32 1912 -imp 'GetPointerDevices' GetPointerDevices user32 1913 -imp 'GetPointerFrameArrivalTimes' GetPointerFrameArrivalTimes user32 1914 -imp 'GetPointerFrameInfo' GetPointerFrameInfo user32 1915 -imp 'GetPointerFrameInfoHistory' GetPointerFrameInfoHistory user32 1916 -imp 'GetPointerFramePenInfo' GetPointerFramePenInfo user32 1917 -imp 'GetPointerFramePenInfoHistory' GetPointerFramePenInfoHistory user32 1918 -imp 'GetPointerFrameTouchInfo' GetPointerFrameTouchInfo user32 1919 -imp 'GetPointerFrameTouchInfoHistory' GetPointerFrameTouchInfoHistory user32 1920 -imp 'GetPointerInfo' GetPointerInfo user32 1921 -imp 'GetPointerInfoHistory' GetPointerInfoHistory user32 1922 -imp 'GetPointerInputTransform' GetPointerInputTransform user32 1923 -imp 'GetPointerPenInfo' GetPointerPenInfo user32 1924 -imp 'GetPointerPenInfoHistory' GetPointerPenInfoHistory user32 1925 -imp 'GetPointerTouchInfo' GetPointerTouchInfo user32 1926 -imp 'GetPointerTouchInfoHistory' GetPointerTouchInfoHistory user32 1927 -imp 'GetPointerType' GetPointerType user32 1928 -imp 'GetPriorityClipboardFormat' GetPriorityClipboardFormat user32 1929 -imp 'GetProcessDefaultLayout' GetProcessDefaultLayout user32 1930 -imp 'GetProcessDpiAwarenessInternal' GetProcessDpiAwarenessInternal user32 1931 -imp 'GetProcessUIContextInformation' GetProcessUIContextInformation user32 2521 -imp 'GetProcessWindowStation' GetProcessWindowStation user32 1932 -imp 'GetProgmanWindow' GetProgmanWindow user32 1933 -imp 'GetProp' GetPropW user32 1935 -imp 'GetQueueStatus' GetQueueStatus user32 1936 -imp 'GetRawInputBuffer' GetRawInputBuffer user32 1937 -imp 'GetRawInputData' GetRawInputData user32 1938 -imp 'GetRawInputDeviceInfo' GetRawInputDeviceInfoW user32 1940 -imp 'GetRawInputDeviceList' GetRawInputDeviceList user32 1941 -imp 'GetRawPointerDeviceData' GetRawPointerDeviceData user32 1942 -imp 'GetReasonTitleFromReasonCode' GetReasonTitleFromReasonCode user32 1943 -imp 'GetRegisteredRawInputDevices' GetRegisteredRawInputDevices user32 1944 -imp 'GetScrollBarInfo' GetScrollBarInfo user32 1945 -imp 'GetScrollInfo' GetScrollInfo user32 1946 -imp 'GetScrollPos' GetScrollPos user32 1947 -imp 'GetScrollRange' GetScrollRange user32 1948 -imp 'GetSendMessageReceiver' GetSendMessageReceiver user32 1949 -imp 'GetShellWindow' GetShellWindow user32 1950 0 -imp 'GetSubMenu' GetSubMenu user32 1951 -imp 'GetSysColor' GetSysColor user32 1952 -imp 'GetSysColorBrush' GetSysColorBrush user32 1953 -imp 'GetSystemDpiForProcess' GetSystemDpiForProcess user32 1954 -imp 'GetSystemMenu' GetSystemMenu user32 1955 2 -imp 'GetSystemMetrics' GetSystemMetrics user32 1956 -imp 'GetSystemMetricsForDpi' GetSystemMetricsForDpi user32 1957 -imp 'GetTabbedTextExtent' GetTabbedTextExtentW user32 1959 -imp 'GetTaskmanWindow' GetTaskmanWindow user32 1960 -imp 'GetThreadDesktop' GetThreadDesktop user32 1961 -imp 'GetThreadDpiAwarenessContext' GetThreadDpiAwarenessContext user32 1962 -imp 'GetThreadDpiHostingBehavior' GetThreadDpiHostingBehavior user32 1963 -imp 'GetTitleBarInfo' GetTitleBarInfo user32 1964 -imp 'GetTopLevelWindow' GetTopLevelWindow user32 1965 -imp 'GetTopWindow' GetTopWindow user32 1966 -imp 'GetTouchInputInfo' GetTouchInputInfo user32 1967 -imp 'GetUnpredictedMessagePos' GetUnpredictedMessagePos user32 1968 -imp 'GetUpdateRect' GetUpdateRect user32 1969 -imp 'GetUpdateRgn' GetUpdateRgn user32 1970 -imp 'GetUpdatedClipboardFormats' GetUpdatedClipboardFormats user32 1971 -imp 'GetUserObjectInformation' GetUserObjectInformationW user32 1973 -imp 'GetUserObjectSecurity' GetUserObjectSecurity user32 1974 -imp 'GetWinStationInfo' GetWinStationInfo user32 1975 -imp 'GetWindow' GetWindow user32 1976 2 -imp 'GetWindowBand' GetWindowBand user32 1977 -imp 'GetWindowCompositionAttribute' GetWindowCompositionAttribute user32 1978 -imp 'GetWindowCompositionInfo' GetWindowCompositionInfo user32 1979 -imp 'GetWindowContextHelpId' GetWindowContextHelpId user32 1980 -imp 'GetWindowDC' GetWindowDC user32 1981 -imp 'GetWindowDisplayAffinity' GetWindowDisplayAffinity user32 1982 -imp 'GetWindowDpiAwarenessContext' GetWindowDpiAwarenessContext user32 1983 -imp 'GetWindowDpiHostingBehavior' GetWindowDpiHostingBehavior user32 1984 -imp 'GetWindowFeedbackSetting' GetWindowFeedbackSetting user32 1985 -imp 'GetWindowInfo' GetWindowInfo user32 1986 -imp 'GetWindowLong' GetWindowLongW user32 1990 -imp 'GetWindowLongPtr' GetWindowLongPtrW user32 1989 -imp 'GetWindowMinimizeRect' GetWindowMinimizeRect user32 1991 -imp 'GetWindowModuleFileName' GetWindowModuleFileNameW user32 1994 -imp 'GetWindowPlacement' GetWindowPlacement user32 1995 2 -imp 'GetWindowProcessHandle' GetWindowProcessHandle user32 1996 -imp 'GetWindowRect' GetWindowRect user32 1997 2 -imp 'GetWindowRgn' GetWindowRgn user32 1998 -imp 'GetWindowRgnBox' GetWindowRgnBox user32 1999 -imp 'GetWindowRgnEx' GetWindowRgnEx user32 2000 -imp 'GetWindowText' GetWindowTextW user32 2007 3 -imp 'GetWindowTextLength' GetWindowTextLengthW user32 2006 -imp 'GetWindowThreadProcessId' GetWindowThreadProcessId user32 2008 -imp 'GetWindowWord' GetWindowWord user32 2009 -imp 'GhostWindowFromHungWindow' GhostWindowFromHungWindow user32 2011 -imp 'GrayString' GrayStringW user32 2013 -imp 'HandleDelegatedInput' HandleDelegatedInput user32 2505 -imp 'HideCaret' HideCaret user32 2014 -imp 'HiliteMenuItem' HiliteMenuItem user32 2015 -imp 'HungWindowFromGhostWindow' HungWindowFromGhostWindow user32 2016 -imp 'IMPGetIMEW' IMPGetIMEW user32 2018 -imp 'IMPQueryIMEW' IMPQueryIMEW user32 2020 -imp 'IMPSetIMEW' IMPSetIMEW user32 2022 -imp 'ImpersonateDdeClientWindow' ImpersonateDdeClientWindow user32 2023 -imp 'InSendMessage' InSendMessage user32 2024 -imp 'InSendMessageEx' InSendMessageEx user32 2025 -imp 'InflateRect' InflateRect user32 2026 -imp 'InheritWindowMonitor' InheritWindowMonitor user32 2027 -imp 'InitDManipHook' InitDManipHook user32 2028 -imp 'InitializeGenericHidInjection' InitializeGenericHidInjection user32 2029 -imp 'InitializeInputDeviceInjection' InitializeInputDeviceInjection user32 2030 -imp 'InitializeLpkHooks' InitializeLpkHooks user32 2031 -imp 'InitializePointerDeviceInjection' InitializePointerDeviceInjection user32 2032 -imp 'InitializePointerDeviceInjectionEx' InitializePointerDeviceInjectionEx user32 2033 -imp 'InitializeTouchInjection' InitializeTouchInjection user32 2034 -imp 'InjectDeviceInput' InjectDeviceInput user32 2035 -imp 'InjectGenericHidInput' InjectGenericHidInput user32 2036 -imp 'InjectKeyboardInput' InjectKeyboardInput user32 2037 -imp 'InjectMouseInput' InjectMouseInput user32 2038 -imp 'InjectPointerInput' InjectPointerInput user32 2039 -imp 'InjectTouchInput' InjectTouchInput user32 2040 -imp 'InsertMenu' InsertMenuW user32 2044 5 -imp 'InsertMenuItem' InsertMenuItemW user32 2043 -imp 'InternalGetWindowIcon' InternalGetWindowIcon user32 2045 -imp 'InternalGetWindowText' InternalGetWindowText user32 2046 -imp 'IntersectRect' IntersectRect user32 2047 -imp 'InvalidateRect' InvalidateRect user32 2048 3 -imp 'InvalidateRgn' InvalidateRgn user32 2049 -imp 'InvertRect' InvertRect user32 2050 -imp 'IsChild' IsChild user32 2059 2 -imp 'IsClipboardFormatAvailable' IsClipboardFormatAvailable user32 2060 -imp 'IsDialogMessage' IsDialogMessageW user32 2063 -imp 'IsDlgButtonChecked' IsDlgButtonChecked user32 2064 -imp 'IsGUIThread' IsGUIThread user32 2065 -imp 'IsHungAppWindow' IsHungAppWindow user32 2066 -imp 'IsIconic' IsIconic user32 2067 1 -imp 'IsImmersiveProcess' IsImmersiveProcess user32 2068 -imp 'IsInDesktopWindowBand' IsInDesktopWindowBand user32 2069 -imp 'IsMenu' IsMenu user32 2070 1 -imp 'IsMouseInPointerEnabled' IsMouseInPointerEnabled user32 2071 -imp 'IsOneCoreTransformMode' IsOneCoreTransformMode user32 2072 -imp 'IsProcessDPIAware' IsProcessDPIAware user32 2073 -imp 'IsQueueAttached' IsQueueAttached user32 2074 -imp 'IsRectEmpty' IsRectEmpty user32 2075 -imp 'IsSETEnabled' IsSETEnabled user32 2076 -imp 'IsServerSideWindow' IsServerSideWindow user32 2077 -imp 'IsThreadDesktopComposited' IsThreadDesktopComposited user32 2078 -imp 'IsThreadMessageQueueAttached' IsThreadMessageQueueAttached user32 2528 -imp 'IsThreadTSFEventAware' IsThreadTSFEventAware user32 2079 -imp 'IsTopLevelWindow' IsTopLevelWindow user32 2080 -imp 'IsTouchWindow' IsTouchWindow user32 2081 -imp 'IsValidDpiAwarenessContext' IsValidDpiAwarenessContext user32 2082 -imp 'IsWinEventHookInstalled' IsWinEventHookInstalled user32 2083 -imp 'IsWindow' IsWindow user32 2084 1 -imp 'IsWindowArranged' IsWindowArranged user32 2085 -imp 'IsWindowEnabled' IsWindowEnabled user32 2086 -imp 'IsWindowInDestroy' IsWindowInDestroy user32 2087 -imp 'IsWindowRedirectedForPrint' IsWindowRedirectedForPrint user32 2088 -imp 'IsWindowUnicode' IsWindowUnicode user32 2089 -imp 'IsWindowVisible' IsWindowVisible user32 2090 1 -imp 'IsZoomed' IsZoomed user32 2092 1 -imp 'KillTimer' KillTimer user32 2093 2 -imp 'LoadAccelerators' LoadAcceleratorsW user32 2095 -imp 'LoadBitmap' LoadBitmapW user32 2097 -imp 'LoadCursor' LoadCursorW user32 2101 2 -imp 'LoadCursorFromFile' LoadCursorFromFileW user32 2100 -imp 'LoadIcon' LoadIconW user32 2103 2 -imp 'LoadImage' LoadImageW user32 2105 6 -imp 'LoadKeyboardLayout' LoadKeyboardLayoutW user32 2108 -imp 'LoadKeyboardLayoutEx' LoadKeyboardLayoutEx user32 2107 -imp 'LoadLocalFonts' LoadLocalFonts user32 2109 -imp 'LoadMenu' LoadMenuW user32 2113 -imp 'LoadMenuIndirect' LoadMenuIndirectW user32 2112 -imp 'LoadRemoteFonts' LoadRemoteFonts user32 2114 -imp 'LockSetForegroundWindow' LockSetForegroundWindow user32 2117 -imp 'LockWindowStation' LockWindowStation user32 2118 -imp 'LockWindowUpdate' LockWindowUpdate user32 2119 -imp 'LockWorkStation' LockWorkStation user32 2120 -imp 'LogicalToPhysicalPoint' LogicalToPhysicalPoint user32 2121 -imp 'LogicalToPhysicalPointForPerMonitorDPI' LogicalToPhysicalPointForPerMonitorDPI user32 2122 -imp 'LookupIconIdFromDirectory' LookupIconIdFromDirectory user32 2123 -imp 'LookupIconIdFromDirectoryEx' LookupIconIdFromDirectoryEx user32 2124 -imp 'MBToWCSEx' MBToWCSEx user32 2125 -imp 'MBToWCSExt' MBToWCSExt user32 2126 -imp 'MB_GetString' MB_GetString user32 2127 -imp 'MITActivateInputProcessing' MITActivateInputProcessing user32 2128 -imp 'MITBindInputTypeToMonitors' MITBindInputTypeToMonitors user32 2129 -imp 'MITCoreMsgKGetConnectionHandle' MITCoreMsgKGetConnectionHandle user32 2130 -imp 'MITCoreMsgKOpenConnectionTo' MITCoreMsgKOpenConnectionTo user32 2131 -imp 'MITCoreMsgKSend' MITCoreMsgKSend user32 2132 -imp 'MITDeactivateInputProcessing' MITDeactivateInputProcessing user32 2133 -imp 'MITDisableMouseIntercept' MITDisableMouseIntercept user32 2134 -imp 'MITDispatchCompletion' MITDispatchCompletion user32 2135 -imp 'MITEnableMouseIntercept' MITEnableMouseIntercept user32 2136 -imp 'MITGetCursorUpdateHandle' MITGetCursorUpdateHandle user32 2137 -imp 'MITInjectLegacyISMTouchFrame' MITInjectLegacyISMTouchFrame user32 2138 -imp 'MITRegisterManipulationThread' MITRegisterManipulationThread user32 2139 -imp 'MITSetForegroundRoutingInfo' MITSetForegroundRoutingInfo user32 2140 -imp 'MITSetInputCallbacks' MITSetInputCallbacks user32 2141 -imp 'MITSetInputDelegationMode' MITSetInputDelegationMode user32 2142 -imp 'MITSetLastInputRecipient' MITSetLastInputRecipient user32 2143 -imp 'MITSetManipulationInputTarget' MITSetManipulationInputTarget user32 2144 -imp 'MITStopAndEndInertia' MITStopAndEndInertia user32 2145 -imp 'MITSynthesizeMouseInput' MITSynthesizeMouseInput user32 2146 -imp 'MITSynthesizeMouseWheel' MITSynthesizeMouseWheel user32 2147 -imp 'MITSynthesizeTouchInput' MITSynthesizeTouchInput user32 2148 -imp 'MITUpdateInputGlobals' MITUpdateInputGlobals user32 2149 -imp 'MITWaitForMultipleObjectsEx' MITWaitForMultipleObjectsEx user32 2150 -imp 'MakeThreadTSFEventAware' MakeThreadTSFEventAware user32 2151 -imp 'MapDialogRect' MapDialogRect user32 2152 -imp 'MapVirtualKey' MapVirtualKeyW user32 2156 -imp 'MapVirtualKeyEx' MapVirtualKeyExW user32 2155 3 -imp 'MapVisualRelativePoints' MapVisualRelativePoints user32 2157 -imp 'MapWindowPoints' MapWindowPoints user32 2158 -imp 'MenuItemFromPoint' MenuItemFromPoint user32 2159 -imp 'MenuWindowProc' MenuWindowProcW user32 2161 -imp 'MessageBeep' MessageBeep user32 2162 -imp 'MessageBox' MessageBoxW user32 2170 4 -imp 'MessageBoxEx' MessageBoxExW user32 2165 5 -imp 'MessageBoxIndirect' MessageBoxIndirectW user32 2167 -imp 'MessageBoxTimeout' MessageBoxTimeoutW user32 2169 -imp 'ModifyMenu' ModifyMenuW user32 2172 -imp 'MonitorFromPoint' MonitorFromPoint user32 2173 -imp 'MonitorFromRect' MonitorFromRect user32 2174 -imp 'MonitorFromWindow' MonitorFromWindow user32 2175 -imp 'MoveWindow' MoveWindow user32 2176 6 -imp 'MsgWaitForMultipleObjects' MsgWaitForMultipleObjects user32 2177 -imp 'MsgWaitForMultipleObjectsEx' MsgWaitForMultipleObjectsEx user32 2178 -imp 'NotifyOverlayWindow' NotifyOverlayWindow user32 2179 -imp 'NotifyWinEvent' NotifyWinEvent user32 2180 -imp 'OemKeyScan' OemKeyScan user32 2181 -imp 'OemToChar' OemToCharW user32 2185 -imp 'OemToCharBuff' OemToCharBuffW user32 2184 -imp 'OffsetRect' OffsetRect user32 2186 -imp 'OpenClipboard' OpenClipboard user32 2187 -imp 'OpenDesktop' OpenDesktopW user32 2189 -imp 'OpenIcon' OpenIcon user32 2190 -imp 'OpenInputDesktop' OpenInputDesktop user32 2191 -imp 'OpenThreadDesktop' OpenThreadDesktop user32 2192 -imp 'OpenWindowStation' OpenWindowStationW user32 2194 -imp 'PackDDElParam' PackDDElParam user32 2195 -imp 'PackTouchHitTestingProximityEvaluation' PackTouchHitTestingProximityEvaluation user32 2196 -imp 'PaintDesktop' PaintDesktop user32 2197 -imp 'PaintMenuBar' PaintMenuBar user32 2198 -imp 'PaintMonitor' PaintMonitor user32 2199 -imp 'PeekMessage' PeekMessageW user32 2201 5 -imp 'PhysicalToLogicalPoint' PhysicalToLogicalPoint user32 2202 -imp 'PhysicalToLogicalPointForPerMonitorDPI' PhysicalToLogicalPointForPerMonitorDPI user32 2203 -imp 'PostMessage' PostMessageW user32 2205 -imp 'PostQuitMessage' PostQuitMessage user32 2206 1 -imp 'PostThreadMessage' PostThreadMessageW user32 2208 -imp 'PrintWindow' PrintWindow user32 2209 -imp 'PrivateExtractIconEx' PrivateExtractIconExW user32 2211 -imp 'PrivateExtractIcons' PrivateExtractIconsW user32 2213 -imp 'PrivateRegisterICSProc' PrivateRegisterICSProc user32 2214 -imp 'PtInRect' PtInRect user32 2215 -imp 'QueryBSDRWindow' QueryBSDRWindow user32 2216 -imp 'QueryDisplayConfig' QueryDisplayConfig user32 2217 -imp 'QuerySendMessage' QuerySendMessage user32 2218 -imp 'RIMAddInputObserver' RIMAddInputObserver user32 2219 -imp 'RIMAreSiblingDevices' RIMAreSiblingDevices user32 2220 -imp 'RIMDeviceIoControl' RIMDeviceIoControl user32 2221 -imp 'RIMEnableMonitorMappingForDevice' RIMEnableMonitorMappingForDevice user32 2222 -imp 'RIMFreeInputBuffer' RIMFreeInputBuffer user32 2223 -imp 'RIMGetDevicePreparsedData' RIMGetDevicePreparsedData user32 2224 -imp 'RIMGetDevicePreparsedDataLockfree' RIMGetDevicePreparsedDataLockfree user32 2225 -imp 'RIMGetDeviceProperties' RIMGetDeviceProperties user32 2226 -imp 'RIMGetDevicePropertiesLockfree' RIMGetDevicePropertiesLockfree user32 2227 -imp 'RIMGetPhysicalDeviceRect' RIMGetPhysicalDeviceRect user32 2228 -imp 'RIMGetSourceProcessId' RIMGetSourceProcessId user32 2229 -imp 'RIMObserveNextInput' RIMObserveNextInput user32 2230 -imp 'RIMOnPnpNotification' RIMOnPnpNotification user32 2231 -imp 'RIMOnTimerNotification' RIMOnTimerNotification user32 2232 -imp 'RIMReadInput' RIMReadInput user32 2233 -imp 'RIMRegisterForInput' RIMRegisterForInput user32 2234 -imp 'RIMRemoveInputObserver' RIMRemoveInputObserver user32 2235 -imp 'RIMSetTestModeStatus' RIMSetTestModeStatus user32 2236 -imp 'RIMUnregisterForInput' RIMUnregisterForInput user32 2237 -imp 'RIMUpdateInputObserverRegistration' RIMUpdateInputObserverRegistration user32 2238 -imp 'RealChildWindowFromPoint' RealChildWindowFromPoint user32 2239 -imp 'RealGetWindowClass' RealGetWindowClassW user32 2242 -imp 'ReasonCodeNeedsBugID' ReasonCodeNeedsBugID user32 2243 -imp 'ReasonCodeNeedsComment' ReasonCodeNeedsComment user32 2244 -imp 'RecordShutdownReason' RecordShutdownReason user32 2245 -imp 'RedrawWindow' RedrawWindow user32 2246 4 -imp 'RegisterBSDRWindow' RegisterBSDRWindow user32 2247 -imp 'RegisterClass' RegisterClassW user32 2251 1 -imp 'RegisterClassEx' RegisterClassExW user32 2250 1 -imp 'RegisterClipboardFormat' RegisterClipboardFormatW user32 2253 -imp 'RegisterDManipHook' RegisterDManipHook user32 2254 -imp 'RegisterDeviceNotification' RegisterDeviceNotificationW user32 2256 -imp 'RegisterErrorReportingDialog' RegisterErrorReportingDialog user32 2257 -imp 'RegisterFrostWindow' RegisterFrostWindow user32 2258 -imp 'RegisterGhostWindow' RegisterGhostWindow user32 2259 -imp 'RegisterHotKey' RegisterHotKey user32 2260 -imp 'RegisterLogonProcess' RegisterLogonProcess user32 2261 -imp 'RegisterMessagePumpHook' RegisterMessagePumpHook user32 2262 -imp 'RegisterPointerDeviceNotifications' RegisterPointerDeviceNotifications user32 2263 -imp 'RegisterPointerInputTarget' RegisterPointerInputTarget user32 2264 -imp 'RegisterPointerInputTargetEx' RegisterPointerInputTargetEx user32 2265 -imp 'RegisterPowerSettingNotification' RegisterPowerSettingNotification user32 2266 -imp 'RegisterRawInputDevices' RegisterRawInputDevices user32 2267 -imp 'RegisterServicesProcess' RegisterServicesProcess user32 2268 -imp 'RegisterSessionPort' RegisterSessionPort user32 2269 -imp 'RegisterShellHookWindow' RegisterShellHookWindow user32 2270 -imp 'RegisterSuspendResumeNotification' RegisterSuspendResumeNotification user32 2271 -imp 'RegisterSystemThread' RegisterSystemThread user32 2272 -imp 'RegisterTasklist' RegisterTasklist user32 2273 -imp 'RegisterTouchHitTestingWindow' RegisterTouchHitTestingWindow user32 2274 -imp 'RegisterTouchWindow' RegisterTouchWindow user32 2275 -imp 'RegisterUserApiHook' RegisterUserApiHook user32 2276 -imp 'RegisterWindowMessage' RegisterWindowMessageW user32 2278 -imp 'ReleaseCapture' ReleaseCapture user32 2279 0 -imp 'ReleaseDC' ReleaseDC user32 2280 2 -imp 'ReleaseDwmHitTestWaiters' ReleaseDwmHitTestWaiters user32 2281 -imp 'RemoveClipboardFormatListener' RemoveClipboardFormatListener user32 2282 -imp 'RemoveInjectionDevice' RemoveInjectionDevice user32 2283 -imp 'RemoveMenu' RemoveMenu user32 2284 -imp 'RemoveProp' RemovePropW user32 2286 -imp 'RemoveThreadTSFEventAwareness' RemoveThreadTSFEventAwareness user32 2287 -imp 'ReplyMessage' ReplyMessage user32 2288 -imp 'ReportInertia' ReportInertia user32 2551 -imp 'ResolveDesktopForWOW' ResolveDesktopForWOW user32 2289 -imp 'ReuseDDElParam' ReuseDDElParam user32 2290 -imp 'ScreenToClient' ScreenToClient user32 2291 -imp 'ScrollChildren' ScrollChildren user32 2292 -imp 'ScrollDC' ScrollDC user32 2293 -imp 'ScrollWindow' ScrollWindow user32 2294 -imp 'ScrollWindowEx' ScrollWindowEx user32 2295 -imp 'SendDlgItemMessage' SendDlgItemMessageW user32 2297 -imp 'SendIMEMessageEx' SendIMEMessageExW user32 2299 -imp 'SendInput' SendInput user32 2300 -imp 'SendMessage' SendMessageW user32 2306 4 -imp 'SendMessageCallback' SendMessageCallbackW user32 2303 -imp 'SendMessageTimeout' SendMessageTimeoutW user32 2305 -imp 'SendNotifyMessage' SendNotifyMessageW user32 2308 -imp 'SetActiveWindow' SetActiveWindow user32 2309 -imp 'SetCapture' SetCapture user32 2310 1 -imp 'SetCaretBlinkTime' SetCaretBlinkTime user32 2311 -imp 'SetCaretPos' SetCaretPos user32 2312 -imp 'SetClassLong' SetClassLongW user32 2316 3 -imp 'SetClassLongPtr' SetClassLongPtrW user32 2315 -imp 'SetClassWord' SetClassWord user32 2317 -imp 'SetClipboardData' SetClipboardData user32 2318 -imp 'SetClipboardViewer' SetClipboardViewer user32 2319 -imp 'SetCoalescableTimer' SetCoalescableTimer user32 2320 -imp 'SetCoreWindow' SetCoreWindow user32 2571 -imp 'SetCursor' SetCursor user32 2321 1 -imp 'SetCursorContents' SetCursorContents user32 2322 -imp 'SetCursorPos' SetCursorPos user32 2323 -imp 'SetDebugErrorLevel' SetDebugErrorLevel user32 2324 -imp 'SetDeskWallpaper' SetDeskWallpaper user32 2325 -imp 'SetDesktopColorTransform' SetDesktopColorTransform user32 2326 -imp 'SetDialogControlDpiChangeBehavior' SetDialogControlDpiChangeBehavior user32 2327 -imp 'SetDialogDpiChangeBehavior' SetDialogDpiChangeBehavior user32 2328 -imp 'SetDisplayAutoRotationPreferences' SetDisplayAutoRotationPreferences user32 2329 -imp 'SetDisplayConfig' SetDisplayConfig user32 2330 -imp 'SetDlgItemInt' SetDlgItemInt user32 2331 -imp 'SetDlgItemText' SetDlgItemTextW user32 2333 -imp 'SetDoubleClickTime' SetDoubleClickTime user32 2334 -imp 'SetFeatureReportResponse' SetFeatureReportResponse user32 2335 -imp 'SetFocus' SetFocus user32 2336 -imp 'SetForegroundWindow' SetForegroundWindow user32 2337 -imp 'SetGestureConfig' SetGestureConfig user32 2338 -imp 'SetInternalWindowPos' SetInternalWindowPos user32 2339 -imp 'SetKeyboardState' SetKeyboardState user32 2340 -imp 'SetLastErrorEx' SetLastErrorEx user32 2341 -imp 'SetLayeredWindowAttributes' SetLayeredWindowAttributes user32 2342 -imp 'SetMagnificationDesktopColorEffect' SetMagnificationDesktopColorEffect user32 2343 -imp 'SetMagnificationDesktopMagnification' SetMagnificationDesktopMagnification user32 2344 -imp 'SetMagnificationDesktopSamplingMode' SetMagnificationDesktopSamplingMode user32 2345 -imp 'SetMagnificationLensCtxInformation' SetMagnificationLensCtxInformation user32 2346 -imp 'SetMenu' SetMenu user32 2347 -imp 'SetMenuContextHelpId' SetMenuContextHelpId user32 2348 -imp 'SetMenuDefaultItem' SetMenuDefaultItem user32 2349 -imp 'SetMenuInfo' SetMenuInfo user32 2350 -imp 'SetMenuItemBitmaps' SetMenuItemBitmaps user32 2351 -imp 'SetMenuItemInfo' SetMenuItemInfoW user32 2353 -imp 'SetMessageExtraInfo' SetMessageExtraInfo user32 2354 -imp 'SetMessageQueue' SetMessageQueue user32 2355 -imp 'SetMirrorRendering' SetMirrorRendering user32 2356 -imp 'SetParent' SetParent user32 2357 2 -imp 'SetPhysicalCursorPos' SetPhysicalCursorPos user32 2358 -imp 'SetProcessDPIAware' SetProcessDPIAware user32 2359 -imp 'SetProcessDefaultLayout' SetProcessDefaultLayout user32 2360 -imp 'SetProcessDpiAwarenessContext' SetProcessDpiAwarenessContext user32 2361 -imp 'SetProcessDpiAwarenessInternal' SetProcessDpiAwarenessInternal user32 2362 -imp 'SetProcessRestrictionExemption' SetProcessRestrictionExemption user32 2363 -imp 'SetProcessWindowStation' SetProcessWindowStation user32 2364 -imp 'SetProgmanWindow' SetProgmanWindow user32 2365 -imp 'SetProp' SetPropW user32 2367 -imp 'SetRect' SetRect user32 2368 -imp 'SetRectEmpty' SetRectEmpty user32 2369 -imp 'SetScrollInfo' SetScrollInfo user32 2370 -imp 'SetScrollPos' SetScrollPos user32 2371 -imp 'SetScrollRange' SetScrollRange user32 2372 -imp 'SetShellWindow' SetShellWindow user32 2373 -imp 'SetShellWindowEx' SetShellWindowEx user32 2374 -imp 'SetSysColors' SetSysColors user32 2375 -imp 'SetSysColorsTemp' SetSysColorsTemp user32 2376 -imp 'SetSystemCursor' SetSystemCursor user32 2377 -imp 'SetSystemMenu' SetSystemMenu user32 2378 -imp 'SetTaskmanWindow' SetTaskmanWindow user32 2379 -imp 'SetThreadDesktop' SetThreadDesktop user32 2380 -imp 'SetThreadDpiAwarenessContext' SetThreadDpiAwarenessContext user32 2381 -imp 'SetThreadDpiHostingBehavior' SetThreadDpiHostingBehavior user32 2382 -imp 'SetThreadInputBlocked' SetThreadInputBlocked user32 2383 -imp 'SetTimer' SetTimer user32 2384 4 -imp 'SetUserObjectInformation' SetUserObjectInformationW user32 2386 -imp 'SetUserObjectSecurity' SetUserObjectSecurity user32 2387 -imp 'SetWinEventHook' SetWinEventHook user32 2388 -imp 'SetWindowBand' SetWindowBand user32 2389 -imp 'SetWindowCompositionAttribute' SetWindowCompositionAttribute user32 2390 -imp 'SetWindowCompositionTransition' SetWindowCompositionTransition user32 2391 -imp 'SetWindowContextHelpId' SetWindowContextHelpId user32 2392 -imp 'SetWindowDisplayAffinity' SetWindowDisplayAffinity user32 2393 -imp 'SetWindowFeedbackSetting' SetWindowFeedbackSetting user32 2394 -imp 'SetWindowLong' SetWindowLongW user32 2398 3 -imp 'SetWindowLongPtr' SetWindowLongPtrW user32 2397 -imp 'SetWindowPlacement' SetWindowPlacement user32 2399 2 -imp 'SetWindowPos' SetWindowPos user32 2400 7 -imp 'SetWindowRgn' SetWindowRgn user32 2401 -imp 'SetWindowRgnEx' SetWindowRgnEx user32 2402 -imp 'SetWindowStationUser' SetWindowStationUser user32 2403 -imp 'SetWindowText' SetWindowTextW user32 2405 2 -imp 'SetWindowWord' SetWindowWord user32 2406 -imp 'SetWindowsHook' SetWindowsHookW user32 2410 2 -imp 'SetWindowsHookEx' SetWindowsHookExW user32 2409 4 -imp 'ShowCaret' ShowCaret user32 2411 1 -imp 'ShowCursor' ShowCursor user32 2412 1 -imp 'ShowOwnedPopups' ShowOwnedPopups user32 2413 -imp 'ShowScrollBar' ShowScrollBar user32 2414 -imp 'ShowStartGlass' ShowStartGlass user32 2415 -imp 'ShowSystemCursor' ShowSystemCursor user32 2416 -imp 'ShowWindow' ShowWindow user32 2417 2 -imp 'ShowWindowAsync' ShowWindowAsync user32 2418 -imp 'ShutdownBlockReasonCreate' ShutdownBlockReasonCreate user32 2419 -imp 'ShutdownBlockReasonDestroy' ShutdownBlockReasonDestroy user32 2420 -imp 'ShutdownBlockReasonQuery' ShutdownBlockReasonQuery user32 2421 -imp 'SignalRedirectionStartComplete' SignalRedirectionStartComplete user32 2422 -imp 'SkipPointerFrameMessages' SkipPointerFrameMessages user32 2423 -imp 'SoftModalMessageBox' SoftModalMessageBox user32 2424 -imp 'SoundSentry' SoundSentry user32 2425 -imp 'SubtractRect' SubtractRect user32 2426 -imp 'SwapMouseButton' SwapMouseButton user32 2427 -imp 'SwitchDesktop' SwitchDesktop user32 2428 -imp 'SwitchDesktopWithFade' SwitchDesktopWithFade user32 2429 -imp 'SwitchToThisWindow' SwitchToThisWindow user32 2430 -imp 'SystemParametersInfo' SystemParametersInfoW user32 2433 -imp 'SystemParametersInfoForDpi' SystemParametersInfoForDpi user32 2432 -imp 'TabbedTextOut' TabbedTextOutW user32 2435 -imp 'TileChildWindows' TileChildWindows user32 2436 -imp 'TileWindows' TileWindows user32 2437 -imp 'ToAscii' ToAscii user32 2438 -imp 'ToAsciiEx' ToAsciiEx user32 2439 -imp 'ToUnicode' ToUnicode user32 2440 -imp 'ToUnicodeEx' ToUnicodeEx user32 2441 -imp 'TrackMouseEvent' TrackMouseEvent user32 2442 -imp 'TrackPopupMenu' TrackPopupMenu user32 2443 7 -imp 'TrackPopupMenuEx' TrackPopupMenuEx user32 2444 -imp 'TranslateAccelerator' TranslateAcceleratorW user32 2447 -imp 'TranslateMDISysAccel' TranslateMDISysAccel user32 2448 -imp 'TranslateMessage' TranslateMessage user32 2449 1 -imp 'TranslateMessageEx' TranslateMessageEx user32 2450 -imp 'UndelegateInput' UndelegateInput user32 2504 -imp 'UnhookWinEvent' UnhookWinEvent user32 2451 -imp 'UnhookWindowsHook' UnhookWindowsHook user32 2452 2 -imp 'UnhookWindowsHookEx' UnhookWindowsHookEx user32 2453 1 -imp 'UnionRect' UnionRect user32 2454 -imp 'UnloadKeyboardLayout' UnloadKeyboardLayout user32 2455 -imp 'UnlockWindowStation' UnlockWindowStation user32 2456 -imp 'UnpackDDElParam' UnpackDDElParam user32 2457 -imp 'UnregisterClass' UnregisterClassW user32 2459 -imp 'UnregisterDeviceNotification' UnregisterDeviceNotification user32 2460 -imp 'UnregisterHotKey' UnregisterHotKey user32 2461 -imp 'UnregisterMessagePumpHook' UnregisterMessagePumpHook user32 2462 -imp 'UnregisterPointerInputTarget' UnregisterPointerInputTarget user32 2463 -imp 'UnregisterPointerInputTargetEx' UnregisterPointerInputTargetEx user32 2464 -imp 'UnregisterPowerSettingNotification' UnregisterPowerSettingNotification user32 2465 -imp 'UnregisterSessionPort' UnregisterSessionPort user32 2466 -imp 'UnregisterSuspendResumeNotification' UnregisterSuspendResumeNotification user32 2467 -imp 'UnregisterTouchWindow' UnregisterTouchWindow user32 2468 -imp 'UnregisterUserApiHook' UnregisterUserApiHook user32 2469 -imp 'UpdateDefaultDesktopThumbnail' UpdateDefaultDesktopThumbnail user32 2470 -imp 'UpdateLayeredWindow' UpdateLayeredWindow user32 2471 -imp 'UpdateLayeredWindowIndirect' UpdateLayeredWindowIndirect user32 2472 -imp 'UpdatePerUserSystemParameters' UpdatePerUserSystemParameters user32 2473 -imp 'UpdateWindow' UpdateWindow user32 2474 1 -imp 'UpdateWindowInputSinkHints' UpdateWindowInputSinkHints user32 2475 -imp 'User32InitializeImmEntryTable' User32InitializeImmEntryTable user32 2476 -imp 'UserClientDllInitialize' UserClientDllInitialize user32 2477 -imp 'UserHandleGrantAccess' UserHandleGrantAccess user32 2478 -imp 'UserLpkPSMTextOut' UserLpkPSMTextOut user32 2479 -imp 'UserLpkTabbedTextOut' UserLpkTabbedTextOut user32 2480 -imp 'UserRealizePalette' UserRealizePalette user32 2481 -imp 'UserRegisterWowHandlers' UserRegisterWowHandlers user32 2482 -imp 'VRipOutput' VRipOutput user32 2483 -imp 'VTagOutput' VTagOutput user32 2484 -imp 'ValidateRect' ValidateRect user32 2485 -imp 'ValidateRgn' ValidateRgn user32 2486 -imp 'VkKeyScan' VkKeyScanW user32 2490 -imp 'VkKeyScanEx' VkKeyScanExW user32 2489 -imp 'WCSToMBEx' WCSToMBEx user32 2491 -imp 'WINNLSEnableIME' WINNLSEnableIME user32 2492 -imp 'WINNLSGetEnableStatus' WINNLSGetEnableStatus user32 2493 -imp 'WINNLSGetIMEHotkey' WINNLSGetIMEHotkey user32 2494 -imp 'WaitForInputIdle' WaitForInputIdle user32 2495 2 -imp 'WaitForRedirectionStartComplete' WaitForRedirectionStartComplete user32 2496 -imp 'WaitMessage' WaitMessage user32 2497 -imp 'WinHelp' WinHelpW user32 2499 -imp 'WindowFromDC' WindowFromDC user32 2500 -imp 'WindowFromPhysicalPoint' WindowFromPhysicalPoint user32 2501 -imp 'WindowFromPoint' WindowFromPoint user32 2502 +# Name Actual DLL Arity +imp 'AdjustWindowRect' AdjustWindowRect user32 3 +imp 'AnimateWindow' AnimateWindow user32 3 +imp 'AppendMenuA' AppendMenuA user32 4 +imp 'AppendMenu' AppendMenuW user32 4 +imp 'BeginPaint' BeginPaint user32 2 +imp 'BringWindowToTop' BringWindowToTop user32 1 +imp 'CallNextHookEx' CallNextHookEx user32 4 +imp 'CloseWindow' CloseWindow user32 1 +imp 'CreateIconIndirect' CreateIconIndirect user32 1 +imp 'CreateMenu' CreateMenu user32 0 +imp 'CreatePopupMenu' CreatePopupMenu user32 0 +imp 'CreateWindowEx' CreateWindowExW user32 12 +imp 'DefWindowProc' DefWindowProcW user32 4 +imp 'DeleteMenu' DeleteMenu user32 3 +imp 'DestroyIcon' DestroyIcon user32 1 +imp 'DestroyMenu' DestroyMenu user32 1 +imp 'DestroyWindow' DestroyWindow user32 1 +imp 'DispatchMessage' DispatchMessageW user32 1 +imp 'DrawText' DrawTextW user32 5 +imp 'DrawTextEx' DrawTextExW user32 6 +imp 'EndPaint' EndPaint user32 2 +imp 'EnumChildWindows' EnumChildWindows user32 3 +imp 'FillRect' FillRect user32 3 +imp 'FindWindow' FindWindowW user32 2 +imp 'FindWindowEx' FindWindowExW user32 4 +imp 'GetClientRect' GetClientRect user32 2 +imp 'GetCursor' GetCursor user32 0 +imp 'GetCursorPos' GetCursorPos user32 1 +imp 'GetDC' GetDC user32 1 +imp 'GetDesktopWindow' GetDesktopWindow user32 0 +imp 'GetKeyState' GetKeyState user32 1 +imp 'GetKeyboardLayout' GetKeyboardLayout user32 1 +imp 'GetMenu' GetMenu user32 1 +imp 'GetMessage' GetMessageW user32 4 +imp 'GetParent' GetParent user32 1 +imp 'GetShellWindow' GetShellWindow user32 0 +imp 'GetSystemMenu' GetSystemMenu user32 2 +imp 'GetWindow' GetWindow user32 2 +imp 'GetWindowPlacement' GetWindowPlacement user32 2 +imp 'GetWindowRect' GetWindowRect user32 2 +imp 'GetWindowText' GetWindowTextW user32 3 +imp 'InsertMenu' InsertMenuW user32 5 +imp 'InvalidateRect' InvalidateRect user32 3 +imp 'IsChild' IsChild user32 2 +imp 'IsIconic' IsIconic user32 1 +imp 'IsMenu' IsMenu user32 1 +imp 'IsWindow' IsWindow user32 1 +imp 'IsWindowVisible' IsWindowVisible user32 1 +imp 'IsZoomed' IsZoomed user32 1 +imp 'KillTimer' KillTimer user32 2 +imp 'LoadCursor' LoadCursorW user32 2 +imp 'LoadIcon' LoadIconW user32 2 +imp 'LoadImage' LoadImageW user32 6 +imp 'MapVirtualKeyEx' MapVirtualKeyExW user32 3 +imp 'MessageBox' MessageBoxW user32 4 +imp 'MessageBoxEx' MessageBoxExW user32 5 +imp 'MoveWindow' MoveWindow user32 6 +imp 'PeekMessage' PeekMessageW user32 5 +imp 'PostQuitMessage' PostQuitMessage user32 1 +imp 'RedrawWindow' RedrawWindow user32 4 +imp 'RegisterClass' RegisterClassW user32 1 +imp 'RegisterClassEx' RegisterClassExW user32 1 +imp 'ReleaseCapture' ReleaseCapture user32 0 +imp 'ReleaseDC' ReleaseDC user32 2 +imp 'SendMessage' SendMessageW user32 4 +imp 'SetCapture' SetCapture user32 1 +imp 'SetClassLong' SetClassLongW user32 3 +imp 'SetCursor' SetCursor user32 1 +imp 'SetParent' SetParent user32 2 +imp 'SetTimer' SetTimer user32 4 +imp 'SetWindowLong' SetWindowLongW user32 3 +imp 'SetWindowPlacement' SetWindowPlacement user32 2 +imp 'SetWindowPos' SetWindowPos user32 7 +imp 'SetWindowText' SetWindowTextW user32 2 +imp 'SetWindowsHook' SetWindowsHookW user32 2 +imp 'SetWindowsHookEx' SetWindowsHookExW user32 4 +imp 'ShowCaret' ShowCaret user32 1 +imp 'ShowCursor' ShowCursor user32 1 +imp 'ShowWindow' ShowWindow user32 2 +imp 'TrackPopupMenu' TrackPopupMenu user32 7 +imp 'TranslateMessage' TranslateMessage user32 1 +imp 'UnhookWindowsHook' UnhookWindowsHook user32 2 +imp 'UnhookWindowsHookEx' UnhookWindowsHookEx user32 1 +imp 'UpdateWindow' UpdateWindow user32 1 +imp 'WaitForInputIdle' WaitForInputIdle user32 2 # GDI32.DLL # -# Name Actual DLL Hint Arity -imp 'AbortDoc' AbortDoc gdi32 1011 -imp 'AbortPath' AbortPath gdi32 1012 -imp 'AddFontMemResourceEx' AddFontMemResourceEx gdi32 1017 -imp 'AddFontResource' AddFontResourceW gdi32 1022 -imp 'AddFontResourceEx' AddFontResourceExW gdi32 1020 -imp 'AddFontResourceTracking' AddFontResourceTracking gdi32 1021 -imp 'AngleArc' AngleArc gdi32 1023 -imp 'AnimatePalette' AnimatePalette gdi32 1024 -imp 'AnyLinkedFonts' AnyLinkedFonts gdi32 1025 -imp 'Arc' Arc gdi32 1026 -imp 'ArcTo' ArcTo gdi32 1027 -imp 'BRUSHOBJ_hGetColorTransform' BRUSHOBJ_hGetColorTransform gdi32 1028 -imp 'BRUSHOBJ_pvAllocRbrush' BRUSHOBJ_pvAllocRbrush gdi32 1029 -imp 'BRUSHOBJ_pvGetRbrush' BRUSHOBJ_pvGetRbrush gdi32 1030 -imp 'BRUSHOBJ_ulGetBrushColor' BRUSHOBJ_ulGetBrushColor gdi32 1031 -imp 'BeginGdiRendering' BeginGdiRendering gdi32 1032 -imp 'BeginPath' BeginPath gdi32 1033 -imp 'BitBlt' BitBlt gdi32 1034 9 -imp 'CLIPOBJ_bEnum' CLIPOBJ_bEnum gdi32 1035 -imp 'CLIPOBJ_cEnumStart' CLIPOBJ_cEnumStart gdi32 1036 -imp 'CLIPOBJ_ppoGetPath' CLIPOBJ_ppoGetPath gdi32 1037 -imp 'CancelDC' CancelDC gdi32 1038 -imp 'CheckColorsInGamut' CheckColorsInGamut gdi32 1039 -imp 'ChoosePixelFormat' ChoosePixelFormat gdi32 1040 2 -imp 'Chord' Chord gdi32 1041 -imp 'ClearBitmapAttributes' ClearBitmapAttributes gdi32 1042 -imp 'ClearBrushAttributes' ClearBrushAttributes gdi32 1043 -imp 'CloseEnhMetaFile' CloseEnhMetaFile gdi32 1044 -imp 'CloseFigure' CloseFigure gdi32 1045 -imp 'CloseMetaFile' CloseMetaFile gdi32 1046 -imp 'ColorCorrectPalette' ColorCorrectPalette gdi32 1047 -imp 'ColorMatchToTarget' ColorMatchToTarget gdi32 1048 -imp 'CombineRgn' CombineRgn gdi32 1049 -imp 'CombineTransform' CombineTransform gdi32 1050 -imp 'ConfigureOPMProtectedOutput' ConfigureOPMProtectedOutput gdi32 1051 -imp 'CopyEnhMetaFile' CopyEnhMetaFileW gdi32 1053 -imp 'CopyMetaFile' CopyMetaFileW gdi32 1055 -imp 'CreateBitmap' CreateBitmap gdi32 1056 5 -imp 'CreateBitmapFromDxSurface' CreateBitmapFromDxSurface gdi32 1057 -imp 'CreateBitmapFromDxSurface2' CreateBitmapFromDxSurface2 gdi32 1058 -imp 'CreateBitmapIndirect' CreateBitmapIndirect gdi32 1059 -imp 'CreateBrushIndirect' CreateBrushIndirect gdi32 1060 -imp 'CreateColorSpace' CreateColorSpaceW gdi32 1062 -imp 'CreateCompatibleBitmap' CreateCompatibleBitmap gdi32 1063 3 -imp 'CreateCompatibleDC' CreateCompatibleDC gdi32 1064 1 -imp 'CreateDCEx' CreateDCExW gdi32 2000 -imp 'CreateDCW' CreateDCW gdi32 1066 -imp 'CreateDIBPatternBrush' CreateDIBPatternBrush gdi32 1067 -imp 'CreateDIBPatternBrushPt' CreateDIBPatternBrushPt gdi32 1068 -imp 'CreateDIBSection' CreateDIBSection gdi32 1069 6 -imp 'CreateDIBitmap' CreateDIBitmap gdi32 1070 -imp 'CreateDPIScaledDIBSection' CreateDPIScaledDIBSection gdi32 1071 -imp 'CreateDiscardableBitmap' CreateDiscardableBitmap gdi32 1072 -imp 'CreateEllipticRgn' CreateEllipticRgn gdi32 1073 -imp 'CreateEllipticRgnIndirect' CreateEllipticRgnIndirect gdi32 1074 -imp 'CreateEnhMetaFile' CreateEnhMetaFileW gdi32 1076 -imp 'CreateFont' CreateFontW gdi32 1082 -imp 'CreateFontIndirect' CreateFontIndirectW gdi32 1081 -imp 'CreateFontIndirectEx' CreateFontIndirectExW gdi32 1080 -imp 'CreateHalftonePalette' CreateHalftonePalette gdi32 1083 -imp 'CreateHatchBrush' CreateHatchBrush gdi32 1084 -imp 'CreateICW' CreateICW gdi32 1086 -imp 'CreateMetaFile' CreateMetaFileW gdi32 1088 -imp 'CreateOPMProtectedOutput' CreateOPMProtectedOutput gdi32 1089 -imp 'CreateOPMProtectedOutputs' CreateOPMProtectedOutputs gdi32 1090 -imp 'CreatePalette' CreatePalette gdi32 1091 -imp 'CreatePatternBrush' CreatePatternBrush gdi32 1092 -imp 'CreatePen' CreatePen gdi32 1093 -imp 'CreatePenIndirect' CreatePenIndirect gdi32 1094 -imp 'CreatePolyPolygonRgn' CreatePolyPolygonRgn gdi32 1095 -imp 'CreatePolygonRgn' CreatePolygonRgn gdi32 1096 -imp 'CreateRectRgn' CreateRectRgn gdi32 1097 4 -imp 'CreateRectRgnIndirect' CreateRectRgnIndirect gdi32 1098 -imp 'CreateRoundRectRgn' CreateRoundRectRgn gdi32 1099 -imp 'CreateScalableFontResource' CreateScalableFontResourceW gdi32 1101 -imp 'CreateSessionMappedDIBSection' CreateSessionMappedDIBSection gdi32 1102 -imp 'CreateSolidBrush' CreateSolidBrush gdi32 1103 -imp 'D3DKMTAbandonSwapChain' D3DKMTAbandonSwapChain gdi32 1104 -imp 'D3DKMTAcquireKeyedMutex' D3DKMTAcquireKeyedMutex gdi32 1105 -imp 'D3DKMTAcquireKeyedMutex2' D3DKMTAcquireKeyedMutex2 gdi32 1106 -imp 'D3DKMTAcquireSwapChain' D3DKMTAcquireSwapChain gdi32 1107 -imp 'D3DKMTAddSurfaceToSwapChain' D3DKMTAddSurfaceToSwapChain gdi32 1108 -imp 'D3DKMTAdjustFullscreenGamma' D3DKMTAdjustFullscreenGamma gdi32 1109 -imp 'D3DKMTCacheHybridQueryValue' D3DKMTCacheHybridQueryValue gdi32 1110 -imp 'D3DKMTChangeVideoMemoryReservation' D3DKMTChangeVideoMemoryReservation gdi32 1111 -imp 'D3DKMTCheckExclusiveOwnership' D3DKMTCheckExclusiveOwnership gdi32 1112 -imp 'D3DKMTCheckMonitorPowerState' D3DKMTCheckMonitorPowerState gdi32 1113 -imp 'D3DKMTCheckMultiPlaneOverlaySupport' D3DKMTCheckMultiPlaneOverlaySupport gdi32 1114 -imp 'D3DKMTCheckMultiPlaneOverlaySupport2' D3DKMTCheckMultiPlaneOverlaySupport2 gdi32 1115 -imp 'D3DKMTCheckMultiPlaneOverlaySupport3' D3DKMTCheckMultiPlaneOverlaySupport3 gdi32 1116 -imp 'D3DKMTCheckOcclusion' D3DKMTCheckOcclusion gdi32 1117 -imp 'D3DKMTCheckSharedResourceAccess' D3DKMTCheckSharedResourceAccess gdi32 1118 -imp 'D3DKMTCheckVidPnExclusiveOwnership' D3DKMTCheckVidPnExclusiveOwnership gdi32 1119 -imp 'D3DKMTCloseAdapter' D3DKMTCloseAdapter gdi32 1120 -imp 'D3DKMTConfigureSharedResource' D3DKMTConfigureSharedResource gdi32 1121 -imp 'D3DKMTCreateAllocation' D3DKMTCreateAllocation gdi32 1122 -imp 'D3DKMTCreateAllocation2' D3DKMTCreateAllocation2 gdi32 1123 -imp 'D3DKMTCreateBundleObject' D3DKMTCreateBundleObject gdi32 1124 -imp 'D3DKMTCreateContext' D3DKMTCreateContext gdi32 1125 -imp 'D3DKMTCreateContextVirtual' D3DKMTCreateContextVirtual gdi32 1126 -imp 'D3DKMTCreateDCFromMemory' D3DKMTCreateDCFromMemory gdi32 1127 -imp 'D3DKMTCreateDevice' D3DKMTCreateDevice gdi32 1128 -imp 'D3DKMTCreateHwContext' D3DKMTCreateHwContext gdi32 1129 -imp 'D3DKMTCreateHwQueue' D3DKMTCreateHwQueue gdi32 1130 -imp 'D3DKMTCreateKeyedMutex' D3DKMTCreateKeyedMutex gdi32 1131 -imp 'D3DKMTCreateKeyedMutex2' D3DKMTCreateKeyedMutex2 gdi32 1132 -imp 'D3DKMTCreateOutputDupl' D3DKMTCreateOutputDupl gdi32 1133 -imp 'D3DKMTCreateOverlay' D3DKMTCreateOverlay gdi32 1134 -imp 'D3DKMTCreatePagingQueue' D3DKMTCreatePagingQueue gdi32 1135 -imp 'D3DKMTCreateProtectedSession' D3DKMTCreateProtectedSession gdi32 1136 -imp 'D3DKMTCreateSwapChain' D3DKMTCreateSwapChain gdi32 1137 -imp 'D3DKMTCreateSynchronizationObject' D3DKMTCreateSynchronizationObject gdi32 1138 -imp 'D3DKMTCreateSynchronizationObject2' D3DKMTCreateSynchronizationObject2 gdi32 1139 -imp 'D3DKMTDDisplayEnum' D3DKMTDDisplayEnum gdi32 1140 -imp 'D3DKMTDestroyAllocation' D3DKMTDestroyAllocation gdi32 1141 -imp 'D3DKMTDestroyAllocation2' D3DKMTDestroyAllocation2 gdi32 1142 -imp 'D3DKMTDestroyContext' D3DKMTDestroyContext gdi32 1143 -imp 'D3DKMTDestroyDCFromMemory' D3DKMTDestroyDCFromMemory gdi32 1144 -imp 'D3DKMTDestroyDevice' D3DKMTDestroyDevice gdi32 1145 -imp 'D3DKMTDestroyHwContext' D3DKMTDestroyHwContext gdi32 1146 -imp 'D3DKMTDestroyHwQueue' D3DKMTDestroyHwQueue gdi32 1147 -imp 'D3DKMTDestroyKeyedMutex' D3DKMTDestroyKeyedMutex gdi32 1148 -imp 'D3DKMTDestroyOutputDupl' D3DKMTDestroyOutputDupl gdi32 1149 -imp 'D3DKMTDestroyOverlay' D3DKMTDestroyOverlay gdi32 1150 -imp 'D3DKMTDestroyPagingQueue' D3DKMTDestroyPagingQueue gdi32 1151 -imp 'D3DKMTDestroyProtectedSession' D3DKMTDestroyProtectedSession gdi32 1152 -imp 'D3DKMTDestroySynchronizationObject' D3DKMTDestroySynchronizationObject gdi32 1153 -imp 'D3DKMTDispMgrCreate' D3DKMTDispMgrCreate gdi32 1154 -imp 'D3DKMTDispMgrSourceOperation' D3DKMTDispMgrSourceOperation gdi32 1155 -imp 'D3DKMTDispMgrTargetOperation' D3DKMTDispMgrTargetOperation gdi32 1156 -imp 'D3DKMTEnumAdapters' D3DKMTEnumAdapters gdi32 1157 -imp 'D3DKMTEnumAdapters2' D3DKMTEnumAdapters2 gdi32 1158 -imp 'D3DKMTEscape' D3DKMTEscape gdi32 1159 -imp 'D3DKMTEvict' D3DKMTEvict gdi32 1160 -imp 'D3DKMTExtractBundleObject' D3DKMTExtractBundleObject gdi32 1161 -imp 'D3DKMTFlipOverlay' D3DKMTFlipOverlay gdi32 1162 -imp 'D3DKMTFlushHeapTransitions' D3DKMTFlushHeapTransitions gdi32 1163 -imp 'D3DKMTFreeGpuVirtualAddress' D3DKMTFreeGpuVirtualAddress gdi32 1164 -imp 'D3DKMTGetAllocationPriority' D3DKMTGetAllocationPriority gdi32 1165 -imp 'D3DKMTGetCachedHybridQueryValue' D3DKMTGetCachedHybridQueryValue gdi32 1166 -imp 'D3DKMTGetContextInProcessSchedulingPriority' D3DKMTGetContextInProcessSchedulingPriority gdi32 1167 -imp 'D3DKMTGetContextSchedulingPriority' D3DKMTGetContextSchedulingPriority gdi32 1168 -imp 'D3DKMTGetDWMVerticalBlankEvent' D3DKMTGetDWMVerticalBlankEvent gdi32 1169 -imp 'D3DKMTGetDeviceState' D3DKMTGetDeviceState gdi32 1170 -imp 'D3DKMTGetDisplayModeList' D3DKMTGetDisplayModeList gdi32 1171 -imp 'D3DKMTGetMemoryBudgetTarget' D3DKMTGetMemoryBudgetTarget gdi32 1172 -imp 'D3DKMTGetMultiPlaneOverlayCaps' D3DKMTGetMultiPlaneOverlayCaps gdi32 1173 -imp 'D3DKMTGetMultisampleMethodList' D3DKMTGetMultisampleMethodList gdi32 1174 -imp 'D3DKMTGetOverlayState' D3DKMTGetOverlayState gdi32 1175 -imp 'D3DKMTGetPostCompositionCaps' D3DKMTGetPostCompositionCaps gdi32 1176 -imp 'D3DKMTGetPresentHistory' D3DKMTGetPresentHistory gdi32 1177 -imp 'D3DKMTGetPresentQueueEvent' D3DKMTGetPresentQueueEvent gdi32 1178 -imp 'D3DKMTGetProcessDeviceRemovalSupport' D3DKMTGetProcessDeviceRemovalSupport gdi32 1179 -imp 'D3DKMTGetProcessList' D3DKMTGetProcessList gdi32 1180 -imp 'D3DKMTGetProcessSchedulingPriorityBand' D3DKMTGetProcessSchedulingPriorityBand gdi32 1181 -imp 'D3DKMTGetProcessSchedulingPriorityClass' D3DKMTGetProcessSchedulingPriorityClass gdi32 1182 -imp 'D3DKMTGetResourcePresentPrivateDriverData' D3DKMTGetResourcePresentPrivateDriverData gdi32 1183 -imp 'D3DKMTGetRuntimeData' D3DKMTGetRuntimeData gdi32 1184 -imp 'D3DKMTGetScanLine' D3DKMTGetScanLine gdi32 1185 -imp 'D3DKMTGetSetSwapChainMetadata' D3DKMTGetSetSwapChainMetadata gdi32 1186 -imp 'D3DKMTGetSharedPrimaryHandle' D3DKMTGetSharedPrimaryHandle gdi32 1187 -imp 'D3DKMTGetSharedResourceAdapterLuid' D3DKMTGetSharedResourceAdapterLuid gdi32 1188 -imp 'D3DKMTGetYieldPercentage' D3DKMTGetYieldPercentage gdi32 1189 -imp 'D3DKMTInvalidateActiveVidPn' D3DKMTInvalidateActiveVidPn gdi32 1190 -imp 'D3DKMTInvalidateCache' D3DKMTInvalidateCache gdi32 1191 -imp 'D3DKMTLock' D3DKMTLock gdi32 1192 -imp 'D3DKMTLock2' D3DKMTLock2 gdi32 1193 -imp 'D3DKMTMakeResident' D3DKMTMakeResident gdi32 1194 -imp 'D3DKMTMapGpuVirtualAddress' D3DKMTMapGpuVirtualAddress gdi32 1195 -imp 'D3DKMTMarkDeviceAsError' D3DKMTMarkDeviceAsError gdi32 1196 -imp 'D3DKMTNetDispGetNextChunkInfo' D3DKMTNetDispGetNextChunkInfo gdi32 1197 -imp 'D3DKMTNetDispQueryMiracastDisplayDeviceStatus' D3DKMTNetDispQueryMiracastDisplayDeviceStatus gdi32 1198 -imp 'D3DKMTNetDispQueryMiracastDisplayDeviceSupport' D3DKMTNetDispQueryMiracastDisplayDeviceSupport gdi32 1199 -imp 'D3DKMTNetDispStartMiracastDisplayDevice' D3DKMTNetDispStartMiracastDisplayDevice gdi32 1200 -imp 'D3DKMTNetDispStartMiracastDisplayDevice2' D3DKMTNetDispStartMiracastDisplayDevice2 gdi32 1201 -imp 'D3DKMTNetDispStartMiracastDisplayDeviceEx' D3DKMTNetDispStartMiracastDisplayDeviceEx gdi32 1202 -imp 'D3DKMTNetDispStopMiracastDisplayDevice' D3DKMTNetDispStopMiracastDisplayDevice gdi32 1203 -imp 'D3DKMTNetDispStopSessions' D3DKMTNetDispStopSessions gdi32 1204 -imp 'D3DKMTOfferAllocations' D3DKMTOfferAllocations gdi32 1205 -imp 'D3DKMTOpenAdapterFromDeviceName' D3DKMTOpenAdapterFromDeviceName gdi32 1206 -imp 'D3DKMTOpenAdapterFromGdiDisplayName' D3DKMTOpenAdapterFromGdiDisplayName gdi32 1207 -imp 'D3DKMTOpenAdapterFromHdc' D3DKMTOpenAdapterFromHdc gdi32 1208 -imp 'D3DKMTOpenAdapterFromLuid' D3DKMTOpenAdapterFromLuid gdi32 1209 -imp 'D3DKMTOpenBundleObjectNtHandleFromName' D3DKMTOpenBundleObjectNtHandleFromName gdi32 1210 -imp 'D3DKMTOpenKeyedMutex' D3DKMTOpenKeyedMutex gdi32 1211 -imp 'D3DKMTOpenKeyedMutex2' D3DKMTOpenKeyedMutex2 gdi32 1212 -imp 'D3DKMTOpenKeyedMutexFromNtHandle' D3DKMTOpenKeyedMutexFromNtHandle gdi32 1213 -imp 'D3DKMTOpenNtHandleFromName' D3DKMTOpenNtHandleFromName gdi32 1214 -imp 'D3DKMTOpenProtectedSessionFromNtHandle' D3DKMTOpenProtectedSessionFromNtHandle gdi32 1215 -imp 'D3DKMTOpenResource' D3DKMTOpenResource gdi32 1216 -imp 'D3DKMTOpenResource2' D3DKMTOpenResource2 gdi32 1217 -imp 'D3DKMTOpenResourceFromNtHandle' D3DKMTOpenResourceFromNtHandle gdi32 1218 -imp 'D3DKMTOpenSwapChain' D3DKMTOpenSwapChain gdi32 1219 -imp 'D3DKMTOpenSyncObjectFromNtHandle' D3DKMTOpenSyncObjectFromNtHandle gdi32 1220 -imp 'D3DKMTOpenSyncObjectFromNtHandle2' D3DKMTOpenSyncObjectFromNtHandle2 gdi32 1221 -imp 'D3DKMTOpenSyncObjectNtHandleFromName' D3DKMTOpenSyncObjectNtHandleFromName gdi32 1222 -imp 'D3DKMTOpenSynchronizationObject' D3DKMTOpenSynchronizationObject gdi32 1223 -imp 'D3DKMTOutputDuplGetFrameInfo' D3DKMTOutputDuplGetFrameInfo gdi32 1224 -imp 'D3DKMTOutputDuplGetMetaData' D3DKMTOutputDuplGetMetaData gdi32 1225 -imp 'D3DKMTOutputDuplGetPointerShapeData' D3DKMTOutputDuplGetPointerShapeData gdi32 1226 -imp 'D3DKMTOutputDuplPresent' D3DKMTOutputDuplPresent gdi32 1227 -imp 'D3DKMTOutputDuplReleaseFrame' D3DKMTOutputDuplReleaseFrame gdi32 1228 -imp 'D3DKMTPinDirectFlipResources' D3DKMTPinDirectFlipResources gdi32 1229 -imp 'D3DKMTPollDisplayChildren' D3DKMTPollDisplayChildren gdi32 1230 -imp 'D3DKMTPresent' D3DKMTPresent gdi32 1231 -imp 'D3DKMTPresentMultiPlaneOverlay' D3DKMTPresentMultiPlaneOverlay gdi32 1232 -imp 'D3DKMTPresentMultiPlaneOverlay2' D3DKMTPresentMultiPlaneOverlay2 gdi32 1233 -imp 'D3DKMTPresentMultiPlaneOverlay3' D3DKMTPresentMultiPlaneOverlay3 gdi32 1234 -imp 'D3DKMTPresentRedirected' D3DKMTPresentRedirected gdi32 1235 -imp 'D3DKMTQueryAdapterInfo' D3DKMTQueryAdapterInfo gdi32 1236 -imp 'D3DKMTQueryAllocationResidency' D3DKMTQueryAllocationResidency gdi32 1237 -imp 'D3DKMTQueryClockCalibration' D3DKMTQueryClockCalibration gdi32 1238 -imp 'D3DKMTQueryFSEBlock' D3DKMTQueryFSEBlock gdi32 1239 -imp 'D3DKMTQueryProcessOfferInfo' D3DKMTQueryProcessOfferInfo gdi32 1240 -imp 'D3DKMTQueryProtectedSessionInfoFromNtHandle' D3DKMTQueryProtectedSessionInfoFromNtHandle gdi32 1241 -imp 'D3DKMTQueryProtectedSessionStatus' D3DKMTQueryProtectedSessionStatus gdi32 1242 -imp 'D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName' D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName gdi32 1243 -imp 'D3DKMTQueryResourceInfo' D3DKMTQueryResourceInfo gdi32 1244 -imp 'D3DKMTQueryResourceInfoFromNtHandle' D3DKMTQueryResourceInfoFromNtHandle gdi32 1245 -imp 'D3DKMTQueryStatistics' D3DKMTQueryStatistics gdi32 1246 -imp 'D3DKMTQueryVidPnExclusiveOwnership' D3DKMTQueryVidPnExclusiveOwnership gdi32 1247 -imp 'D3DKMTQueryVideoMemoryInfo' D3DKMTQueryVideoMemoryInfo gdi32 1248 -imp 'D3DKMTReclaimAllocations' D3DKMTReclaimAllocations gdi32 1249 -imp 'D3DKMTReclaimAllocations2' D3DKMTReclaimAllocations2 gdi32 1250 -imp 'D3DKMTRegisterTrimNotification' D3DKMTRegisterTrimNotification gdi32 1251 -imp 'D3DKMTRegisterVailProcess' D3DKMTRegisterVailProcess gdi32 1252 -imp 'D3DKMTReleaseKeyedMutex' D3DKMTReleaseKeyedMutex gdi32 1253 -imp 'D3DKMTReleaseKeyedMutex2' D3DKMTReleaseKeyedMutex2 gdi32 1254 -imp 'D3DKMTReleaseProcessVidPnSourceOwners' D3DKMTReleaseProcessVidPnSourceOwners gdi32 1255 -imp 'D3DKMTReleaseSwapChain' D3DKMTReleaseSwapChain gdi32 1256 -imp 'D3DKMTRemoveSurfaceFromSwapChain' D3DKMTRemoveSurfaceFromSwapChain gdi32 1257 -imp 'D3DKMTRender' D3DKMTRender gdi32 1258 -imp 'D3DKMTReserveGpuVirtualAddress' D3DKMTReserveGpuVirtualAddress gdi32 1259 -imp 'D3DKMTSetAllocationPriority' D3DKMTSetAllocationPriority gdi32 1260 -imp 'D3DKMTSetContextInProcessSchedulingPriority' D3DKMTSetContextInProcessSchedulingPriority gdi32 1261 -imp 'D3DKMTSetContextSchedulingPriority' D3DKMTSetContextSchedulingPriority gdi32 1262 -imp 'D3DKMTSetDisplayMode' D3DKMTSetDisplayMode gdi32 1263 -imp 'D3DKMTSetDisplayPrivateDriverFormat' D3DKMTSetDisplayPrivateDriverFormat gdi32 1264 -imp 'D3DKMTSetDodIndirectSwapchain' D3DKMTSetDodIndirectSwapchain gdi32 1265 -imp 'D3DKMTSetFSEBlock' D3DKMTSetFSEBlock gdi32 1266 -imp 'D3DKMTSetGammaRamp' D3DKMTSetGammaRamp gdi32 1267 -imp 'D3DKMTSetHwProtectionTeardownRecovery' D3DKMTSetHwProtectionTeardownRecovery gdi32 1268 -imp 'D3DKMTSetMemoryBudgetTarget' D3DKMTSetMemoryBudgetTarget gdi32 1269 -imp 'D3DKMTSetMonitorColorSpaceTransform' D3DKMTSetMonitorColorSpaceTransform gdi32 1270 -imp 'D3DKMTSetProcessDeviceRemovalSupport' D3DKMTSetProcessDeviceRemovalSupport gdi32 1271 -imp 'D3DKMTSetProcessSchedulingPriorityBand' D3DKMTSetProcessSchedulingPriorityBand gdi32 1272 -imp 'D3DKMTSetProcessSchedulingPriorityClass' D3DKMTSetProcessSchedulingPriorityClass gdi32 1273 -imp 'D3DKMTSetQueuedLimit' D3DKMTSetQueuedLimit gdi32 1274 -imp 'D3DKMTSetStablePowerState' D3DKMTSetStablePowerState gdi32 1275 -imp 'D3DKMTSetStereoEnabled' D3DKMTSetStereoEnabled gdi32 1276 -imp 'D3DKMTSetSyncRefreshCountWaitTarget' D3DKMTSetSyncRefreshCountWaitTarget gdi32 1277 -imp 'D3DKMTSetVidPnSourceHwProtection' D3DKMTSetVidPnSourceHwProtection gdi32 1278 -imp 'D3DKMTSetVidPnSourceOwner' D3DKMTSetVidPnSourceOwner gdi32 1279 -imp 'D3DKMTSetVidPnSourceOwner1' D3DKMTSetVidPnSourceOwner1 gdi32 1280 -imp 'D3DKMTSetVidPnSourceOwner2' D3DKMTSetVidPnSourceOwner2 gdi32 1281 -imp 'D3DKMTSetYieldPercentage' D3DKMTSetYieldPercentage gdi32 1282 -imp 'D3DKMTShareObjects' D3DKMTShareObjects gdi32 1283 -imp 'D3DKMTSharedPrimaryLockNotification' D3DKMTSharedPrimaryLockNotification gdi32 1284 -imp 'D3DKMTSharedPrimaryUnLockNotification' D3DKMTSharedPrimaryUnLockNotification gdi32 1285 -imp 'D3DKMTSignalSynchronizationObject' D3DKMTSignalSynchronizationObject gdi32 1286 -imp 'D3DKMTSignalSynchronizationObject2' D3DKMTSignalSynchronizationObject2 gdi32 1287 -imp 'D3DKMTSignalSynchronizationObjectFromCpu' D3DKMTSignalSynchronizationObjectFromCpu gdi32 1288 -imp 'D3DKMTSignalSynchronizationObjectFromGpu' D3DKMTSignalSynchronizationObjectFromGpu gdi32 1289 -imp 'D3DKMTSignalSynchronizationObjectFromGpu2' D3DKMTSignalSynchronizationObjectFromGpu2 gdi32 1290 -imp 'D3DKMTSubmitCommand' D3DKMTSubmitCommand gdi32 1291 -imp 'D3DKMTSubmitCommandToHwQueue' D3DKMTSubmitCommandToHwQueue gdi32 1292 -imp 'D3DKMTSubmitPresentBltToHwQueue' D3DKMTSubmitPresentBltToHwQueue gdi32 1293 -imp 'D3DKMTSubmitSignalSyncObjectsToHwQueue' D3DKMTSubmitSignalSyncObjectsToHwQueue gdi32 1294 -imp 'D3DKMTSubmitWaitForSyncObjectsToHwQueue' D3DKMTSubmitWaitForSyncObjectsToHwQueue gdi32 1295 -imp 'D3DKMTTrimProcessCommitment' D3DKMTTrimProcessCommitment gdi32 1296 -imp 'D3DKMTUnOrderedPresentSwapChain' D3DKMTUnOrderedPresentSwapChain gdi32 1297 -imp 'D3DKMTUnlock' D3DKMTUnlock gdi32 1298 -imp 'D3DKMTUnlock2' D3DKMTUnlock2 gdi32 1299 -imp 'D3DKMTUnpinDirectFlipResources' D3DKMTUnpinDirectFlipResources gdi32 1300 -imp 'D3DKMTUnregisterTrimNotification' D3DKMTUnregisterTrimNotification gdi32 1301 -imp 'D3DKMTUpdateAllocationProperty' D3DKMTUpdateAllocationProperty gdi32 1302 -imp 'D3DKMTUpdateGpuVirtualAddress' D3DKMTUpdateGpuVirtualAddress gdi32 1303 -imp 'D3DKMTUpdateOverlay' D3DKMTUpdateOverlay gdi32 1304 -imp 'D3DKMTVailConnect' D3DKMTVailConnect gdi32 1305 -imp 'D3DKMTVailDisconnect' D3DKMTVailDisconnect gdi32 1306 -imp 'D3DKMTVailPromoteCompositionSurface' D3DKMTVailPromoteCompositionSurface gdi32 1307 -imp 'D3DKMTWaitForIdle' D3DKMTWaitForIdle gdi32 1308 -imp 'D3DKMTWaitForSynchronizationObject' D3DKMTWaitForSynchronizationObject gdi32 1309 -imp 'D3DKMTWaitForSynchronizationObject2' D3DKMTWaitForSynchronizationObject2 gdi32 1310 -imp 'D3DKMTWaitForSynchronizationObjectFromCpu' D3DKMTWaitForSynchronizationObjectFromCpu gdi32 1311 -imp 'D3DKMTWaitForSynchronizationObjectFromGpu' D3DKMTWaitForSynchronizationObjectFromGpu gdi32 1312 -imp 'D3DKMTWaitForVerticalBlankEvent' D3DKMTWaitForVerticalBlankEvent gdi32 1313 -imp 'D3DKMTWaitForVerticalBlankEvent2' D3DKMTWaitForVerticalBlankEvent2 gdi32 1314 -imp 'DDCCIGetCapabilitiesString' DDCCIGetCapabilitiesString gdi32 1315 -imp 'DDCCIGetCapabilitiesStringLength' DDCCIGetCapabilitiesStringLength gdi32 1316 -imp 'DDCCIGetTimingReport' DDCCIGetTimingReport gdi32 1317 -imp 'DDCCIGetVCPFeature' DDCCIGetVCPFeature gdi32 1318 -imp 'DDCCISaveCurrentSettings' DDCCISaveCurrentSettings gdi32 1319 -imp 'DDCCISetVCPFeature' DDCCISetVCPFeature gdi32 1320 -imp 'DPtoLP' DPtoLP gdi32 1321 -imp 'DdCreateFullscreenSprite' DdCreateFullscreenSprite gdi32 1322 -imp 'DdDestroyFullscreenSprite' DdDestroyFullscreenSprite gdi32 1323 -imp 'DdNotifyFullscreenSpriteUpdate' DdNotifyFullscreenSpriteUpdate gdi32 1381 -imp 'DdQueryVisRgnUniqueness' DdQueryVisRgnUniqueness gdi32 1382 -imp 'DeleteColorSpace' DeleteColorSpace gdi32 1383 -imp 'DeleteDC' DeleteDC gdi32 1384 1 -imp 'DeleteEnhMetaFile' DeleteEnhMetaFile gdi32 1385 -imp 'DeleteMetaFile' DeleteMetaFile gdi32 1386 -imp 'DeleteObject' DeleteObject gdi32 1387 1 -imp 'DescribePixelFormat' DescribePixelFormat gdi32 1388 -imp 'DestroyOPMProtectedOutput' DestroyOPMProtectedOutput gdi32 1389 -imp 'DestroyPhysicalMonitorInternal' DestroyPhysicalMonitorInternal gdi32 1390 -imp 'DrawEscape' DrawEscape gdi32 1393 -imp 'DwmCreatedBitmapRemotingOutput' DwmCreatedBitmapRemotingOutput gdi32 1014 -imp 'DxTrimNotificationListHead' DxTrimNotificationListHead gdi32 1394 -imp 'Ellipse' Ellipse gdi32 1395 -imp 'EnableEUDC' EnableEUDC gdi32 1396 -imp 'EndDoc' EndDoc gdi32 1397 -imp 'EndFormPage' EndFormPage gdi32 1398 -imp 'EndGdiRendering' EndGdiRendering gdi32 1399 -imp 'EndPage' EndPage gdi32 1400 -imp 'EndPath' EndPath gdi32 1401 -imp 'EngAcquireSemaphore' EngAcquireSemaphore gdi32 1402 -imp 'EngAlphaBlend' EngAlphaBlend gdi32 1403 -imp 'EngAssociateSurface' EngAssociateSurface gdi32 1404 -imp 'EngBitBlt' EngBitBlt gdi32 1405 -imp 'EngCheckAbort' EngCheckAbort gdi32 1406 -imp 'EngComputeGlyphSet' EngComputeGlyphSet gdi32 1407 -imp 'EngCopyBits' EngCopyBits gdi32 1408 -imp 'EngCreateBitmap' EngCreateBitmap gdi32 1409 -imp 'EngCreateClip' EngCreateClip gdi32 1410 -imp 'EngCreateDeviceBitmap' EngCreateDeviceBitmap gdi32 1411 -imp 'EngCreateDeviceSurface' EngCreateDeviceSurface gdi32 1412 -imp 'EngCreatePalette' EngCreatePalette gdi32 1413 -imp 'EngCreateSemaphore' EngCreateSemaphore gdi32 1414 -imp 'EngDeleteClip' EngDeleteClip gdi32 1415 -imp 'EngDeletePalette' EngDeletePalette gdi32 1416 -imp 'EngDeletePath' EngDeletePath gdi32 1417 -imp 'EngDeleteSemaphore' EngDeleteSemaphore gdi32 1418 -imp 'EngDeleteSurface' EngDeleteSurface gdi32 1419 -imp 'EngEraseSurface' EngEraseSurface gdi32 1420 -imp 'EngFillPath' EngFillPath gdi32 1421 -imp 'EngFindResource' EngFindResource gdi32 1422 -imp 'EngFreeModule' EngFreeModule gdi32 1423 -imp 'EngGetCurrentCodePage' EngGetCurrentCodePage gdi32 1424 -imp 'EngGetDriverName' EngGetDriverName gdi32 1425 -imp 'EngGetPrinterDataFileName' EngGetPrinterDataFileName gdi32 1426 -imp 'EngGradientFill' EngGradientFill gdi32 1427 -imp 'EngLineTo' EngLineTo gdi32 1428 -imp 'EngLoadModule' EngLoadModule gdi32 1429 -imp 'EngLockSurface' EngLockSurface gdi32 1430 -imp 'EngMarkBandingSurface' EngMarkBandingSurface gdi32 1431 -imp 'EngMultiByteToUnicodeN' EngMultiByteToUnicodeN gdi32 1432 -imp 'EngMultiByteToWideChar' EngMultiByteToWideChar gdi32 1433 -imp 'EngPaint' EngPaint gdi32 1434 -imp 'EngPlgBlt' EngPlgBlt gdi32 1435 -imp 'EngQueryEMFInfo' EngQueryEMFInfo gdi32 1436 -imp 'EngQueryLocalTime' EngQueryLocalTime gdi32 1437 -imp 'EngReleaseSemaphore' EngReleaseSemaphore gdi32 1438 -imp 'EngStretchBlt' EngStretchBlt gdi32 1439 -imp 'EngStretchBltROP' EngStretchBltROP gdi32 1440 -imp 'EngStrokeAndFillPath' EngStrokeAndFillPath gdi32 1441 -imp 'EngStrokePath' EngStrokePath gdi32 1442 -imp 'EngTextOut' EngTextOut gdi32 1443 -imp 'EngTransparentBlt' EngTransparentBlt gdi32 1444 -imp 'EngUnicodeToMultiByteN' EngUnicodeToMultiByteN gdi32 1445 -imp 'EngUnlockSurface' EngUnlockSurface gdi32 1446 -imp 'EngWideCharToMultiByte' EngWideCharToMultiByte gdi32 1447 -imp 'EnumEnhMetaFile' EnumEnhMetaFile gdi32 1448 -imp 'EnumFontFamilies' EnumFontFamiliesW gdi32 1452 -imp 'EnumFontFamiliesEx' EnumFontFamiliesExW gdi32 1451 -imp 'EnumFonts' EnumFontsW gdi32 1454 -imp 'EnumICMProfiles' EnumICMProfilesW gdi32 1456 -imp 'EnumMetaFile' EnumMetaFile gdi32 1457 -imp 'EnumObjects' EnumObjects gdi32 1458 -imp 'EqualRgn' EqualRgn gdi32 1459 -imp 'Escape' Escape gdi32 1460 -imp 'EudcLoadLink' EudcLoadLinkW gdi32 1461 -imp 'EudcUnloadLink' EudcUnloadLinkW gdi32 1462 -imp 'ExcludeClipRect' ExcludeClipRect gdi32 1463 -imp 'ExtCreatePen' ExtCreatePen gdi32 1464 -imp 'ExtCreateRegion' ExtCreateRegion gdi32 1465 -imp 'ExtEscape' ExtEscape gdi32 1466 -imp 'ExtFloodFill' ExtFloodFill gdi32 1467 -imp 'ExtSelectClipRgn' ExtSelectClipRgn gdi32 1468 -imp 'ExtTextOut' ExtTextOutW gdi32 1470 -imp 'FONTOBJ_cGetAllGlyphHandles' FONTOBJ_cGetAllGlyphHandles gdi32 1471 -imp 'FONTOBJ_cGetGlyphs' FONTOBJ_cGetGlyphs gdi32 1472 -imp 'FONTOBJ_pQueryGlyphAttrs' FONTOBJ_pQueryGlyphAttrs gdi32 1473 -imp 'FONTOBJ_pfdg' FONTOBJ_pfdg gdi32 1474 -imp 'FONTOBJ_pifi' FONTOBJ_pifi gdi32 1475 -imp 'FONTOBJ_pvTrueTypeFontFile' FONTOBJ_pvTrueTypeFontFile gdi32 1476 -imp 'FONTOBJ_pxoGetXform' FONTOBJ_pxoGetXform gdi32 1477 -imp 'FONTOBJ_vGetInfo' FONTOBJ_vGetInfo gdi32 1478 -imp 'FillPath' FillPath gdi32 1479 -imp 'FillRgn' FillRgn gdi32 1480 -imp 'FixBrushOrgEx' FixBrushOrgEx gdi32 1481 -imp 'FlattenPath' FlattenPath gdi32 1482 -imp 'FloodFill' FloodFill gdi32 1483 -imp 'FontIsLinked' FontIsLinked gdi32 1484 -imp 'FrameRgn' FrameRgn gdi32 1485 -imp 'Gdi32DllInitialize' Gdi32DllInitialize gdi32 1486 -imp 'GdiAddFontResource' GdiAddFontResourceW gdi32 1487 -imp 'GdiAddGlsBounds' GdiAddGlsBounds gdi32 1488 -imp 'GdiAddGlsRecord' GdiAddGlsRecord gdi32 1489 -imp 'GdiAddInitialFonts' GdiAddInitialFonts gdi32 1490 -imp 'GdiAlphaBlend' GdiAlphaBlend gdi32 1491 -imp 'GdiArtificialDecrementDriver' GdiArtificialDecrementDriver gdi32 1492 -imp 'GdiBatchLimit' GdiBatchLimit gdi32 1493 -imp 'GdiCleanCacheDC' GdiCleanCacheDC gdi32 1494 -imp 'GdiComment' GdiComment gdi32 1495 -imp 'GdiConsoleTextOut' GdiConsoleTextOut gdi32 1496 -imp 'GdiConvertAndCheckDC' GdiConvertAndCheckDC gdi32 1497 -imp 'GdiConvertBitmap' GdiConvertBitmap gdi32 1498 -imp 'GdiConvertBitmapV5' GdiConvertBitmapV5 gdi32 1499 -imp 'GdiConvertBrush' GdiConvertBrush gdi32 1500 -imp 'GdiConvertDC' GdiConvertDC gdi32 1501 -imp 'GdiConvertEnhMetaFile' GdiConvertEnhMetaFile gdi32 1502 -imp 'GdiConvertFont' GdiConvertFont gdi32 1503 -imp 'GdiConvertMetaFilePict' GdiConvertMetaFilePict gdi32 1504 -imp 'GdiConvertPalette' GdiConvertPalette gdi32 1505 -imp 'GdiConvertRegion' GdiConvertRegion gdi32 1506 -imp 'GdiConvertToDevmode' GdiConvertToDevmodeW gdi32 1507 -imp 'GdiCreateLocalEnhMetaFile' GdiCreateLocalEnhMetaFile gdi32 1508 -imp 'GdiCreateLocalMetaFilePict' GdiCreateLocalMetaFilePict gdi32 1509 -imp 'GdiDeleteLocalDC' GdiDeleteLocalDC gdi32 1511 -imp 'GdiDeleteSpoolFileHandle' GdiDeleteSpoolFileHandle gdi32 1512 -imp 'GdiDescribePixelFormat' GdiDescribePixelFormat gdi32 1513 -imp 'GdiDllInitialize' GdiDllInitialize gdi32 1514 -imp 'GdiDrawStream' GdiDrawStream gdi32 1515 -imp 'GdiEndDocEMF' GdiEndDocEMF gdi32 1516 -imp 'GdiEndPageEMF' GdiEndPageEMF gdi32 1517 -imp 'GdiFixUpHandle' GdiFixUpHandle gdi32 1534 -imp 'GdiFlush' GdiFlush gdi32 1535 -imp 'GdiFullscreenControl' GdiFullscreenControl gdi32 1536 -imp 'GdiGetBatchLimit' GdiGetBatchLimit gdi32 1537 -imp 'GdiGetBitmapBitsSize' GdiGetBitmapBitsSize gdi32 1538 -imp 'GdiGetCharDimensions' GdiGetCharDimensions gdi32 1539 -imp 'GdiGetCodePage' GdiGetCodePage gdi32 1540 -imp 'GdiGetDC' GdiGetDC gdi32 1541 -imp 'GdiGetDevmodeForPage' GdiGetDevmodeForPage gdi32 1542 -imp 'GdiGetEntry' GdiGetEntry gdi32 1543 -imp 'GdiGetLocalBrush' GdiGetLocalBrush gdi32 1544 -imp 'GdiGetLocalDC' GdiGetLocalDC gdi32 1545 -imp 'GdiGetLocalFont' GdiGetLocalFont gdi32 1546 -imp 'GdiGetPageCount' GdiGetPageCount gdi32 1547 -imp 'GdiGetPageHandle' GdiGetPageHandle gdi32 1548 -imp 'GdiGetSpoolFileHandle' GdiGetSpoolFileHandle gdi32 1549 -imp 'GdiGetSpoolMessage' GdiGetSpoolMessage gdi32 1550 -imp 'GdiGetVariationStoreDelta' GdiGetVariationStoreDelta gdi32 1551 -imp 'GdiGradientFill' GdiGradientFill gdi32 1552 -imp 'GdiInitSpool' GdiInitSpool gdi32 1553 -imp 'GdiInitializeLanguagePack' GdiInitializeLanguagePack gdi32 1554 -imp 'GdiIsMetaFileDC' GdiIsMetaFileDC gdi32 1555 -imp 'GdiIsMetaPrintDC' GdiIsMetaPrintDC gdi32 1556 -imp 'GdiIsPlayMetafileDC' GdiIsPlayMetafileDC gdi32 1557 -imp 'GdiIsScreenDC' GdiIsScreenDC gdi32 1558 -imp 'GdiIsTrackingEnabled' GdiIsTrackingEnabled gdi32 1559 -imp 'GdiIsUMPDSandboxingEnabled' GdiIsUMPDSandboxingEnabled gdi32 1560 -imp 'GdiLoadType1Fonts' GdiLoadType1Fonts gdi32 1561 -imp 'GdiPlayDCScript' GdiPlayDCScript gdi32 1562 -imp 'GdiPlayEMF' GdiPlayEMF gdi32 1563 -imp 'GdiPlayJournal' GdiPlayJournal gdi32 1564 -imp 'GdiPlayPageEMF' GdiPlayPageEMF gdi32 1565 -imp 'GdiPlayPrivatePageEMF' GdiPlayPrivatePageEMF gdi32 1566 -imp 'GdiPlayScript' GdiPlayScript gdi32 1567 -imp 'GdiPrinterThunk' GdiPrinterThunk gdi32 1568 -imp 'GdiProcessSetup' GdiProcessSetup gdi32 1569 -imp 'GdiQueryFonts' GdiQueryFonts gdi32 1570 -imp 'GdiQueryTable' GdiQueryTable gdi32 1571 -imp 'GdiRealizationInfo' GdiRealizationInfo gdi32 1572 -imp 'GdiReleaseDC' GdiReleaseDC gdi32 1573 -imp 'GdiReleaseLocalDC' GdiReleaseLocalDC gdi32 1574 -imp 'GdiResetDCEMF' GdiResetDCEMF gdi32 1575 -imp 'GdiSetAttrs' GdiSetAttrs gdi32 1576 -imp 'GdiSetBatchLimit' GdiSetBatchLimit gdi32 1577 -imp 'GdiSetLastError' GdiSetLastError gdi32 1578 -imp 'GdiSetPixelFormat' GdiSetPixelFormat gdi32 1579 -imp 'GdiSetServerAttr' GdiSetServerAttr gdi32 1580 -imp 'GdiStartDocEMF' GdiStartDocEMF gdi32 1581 -imp 'GdiStartPageEMF' GdiStartPageEMF gdi32 1582 -imp 'GdiSupportsFontChangeEvent' GdiSupportsFontChangeEvent gdi32 1583 -imp 'GdiSwapBuffers' GdiSwapBuffers gdi32 1584 -imp 'GdiTrackHCreate' GdiTrackHCreate gdi32 1585 -imp 'GdiTrackHDelete' GdiTrackHDelete gdi32 1586 -imp 'GdiTransparentBlt' GdiTransparentBlt gdi32 1587 -imp 'GdiValidateHandle' GdiValidateHandle gdi32 1588 -imp 'GetArcDirection' GetArcDirection gdi32 1589 -imp 'GetAspectRatioFilterEx' GetAspectRatioFilterEx gdi32 1590 -imp 'GetBitmapAttributes' GetBitmapAttributes gdi32 1591 -imp 'GetBitmapBits' GetBitmapBits gdi32 1592 -imp 'GetBitmapDimensionEx' GetBitmapDimensionEx gdi32 1593 -imp 'GetBitmapDpiScaleValue' GetBitmapDpiScaleValue gdi32 1594 -imp 'GetBkColor' GetBkColor gdi32 1595 -imp 'GetBkMode' GetBkMode gdi32 1596 -imp 'GetBoundsRect' GetBoundsRect gdi32 1597 -imp 'GetBrushAttributes' GetBrushAttributes gdi32 1598 -imp 'GetBrushOrgEx' GetBrushOrgEx gdi32 1599 -imp 'GetCOPPCompatibleOPMInformation' GetCOPPCompatibleOPMInformation gdi32 1600 -imp 'GetCertificate' GetCertificate gdi32 1601 -imp 'GetCertificateByHandle' GetCertificateByHandle gdi32 1602 -imp 'GetCertificateSize' GetCertificateSize gdi32 1603 -imp 'GetCertificateSizeByHandle' GetCertificateSizeByHandle gdi32 1604 -imp 'GetCharABCWidths' GetCharABCWidthsW gdi32 1610 -imp 'GetCharABCWidthsFloat' GetCharABCWidthsFloatW gdi32 1608 -imp 'GetCharABCWidthsFloatI' GetCharABCWidthsFloatI gdi32 1607 -imp 'GetCharABCWidthsI' GetCharABCWidthsI gdi32 1609 -imp 'GetCharWidth' GetCharWidthW gdi32 1618 -imp 'GetCharWidth32W' GetCharWidth32W gdi32 1612 -imp 'GetCharWidthFloat' GetCharWidthFloatW gdi32 1615 -imp 'GetCharWidthI' GetCharWidthI gdi32 1616 -imp 'GetCharWidthInfo' GetCharWidthInfo gdi32 1617 -imp 'GetCharacterPlacement' GetCharacterPlacementW gdi32 1620 -imp 'GetClipBox' GetClipBox gdi32 1621 -imp 'GetClipRgn' GetClipRgn gdi32 1622 -imp 'GetColorAdjustment' GetColorAdjustment gdi32 1623 -imp 'GetColorSpace' GetColorSpace gdi32 1624 -imp 'GetCurrentDpiInfo' GetCurrentDpiInfo gdi32 1625 -imp 'GetCurrentObject' GetCurrentObject gdi32 1626 -imp 'GetCurrentPositionEx' GetCurrentPositionEx gdi32 1627 -imp 'GetDCBrushColor' GetDCBrushColor gdi32 1628 -imp 'GetDCDpiScaleValue' GetDCDpiScaleValue gdi32 1629 -imp 'GetDCOrgEx' GetDCOrgEx gdi32 1630 -imp 'GetDCPenColor' GetDCPenColor gdi32 1631 -imp 'GetDIBColorTable' GetDIBColorTable gdi32 1632 -imp 'GetDIBits' GetDIBits gdi32 1633 -imp 'GetDeviceCaps' GetDeviceCaps gdi32 1634 -imp 'GetDeviceGammaRamp' GetDeviceGammaRamp gdi32 1635 -imp 'GetETM' GetETM gdi32 1636 -imp 'GetEUDCTimeStamp' GetEUDCTimeStamp gdi32 1637 -imp 'GetEUDCTimeStampEx' GetEUDCTimeStampExW gdi32 1638 -imp 'GetEnhMetaFile' GetEnhMetaFileW gdi32 1646 -imp 'GetEnhMetaFileBits' GetEnhMetaFileBits gdi32 1640 -imp 'GetEnhMetaFileDescription' GetEnhMetaFileDescriptionW gdi32 1642 -imp 'GetEnhMetaFileHeader' GetEnhMetaFileHeader gdi32 1643 -imp 'GetEnhMetaFilePaletteEntries' GetEnhMetaFilePaletteEntries gdi32 1644 -imp 'GetEnhMetaFilePixelFormat' GetEnhMetaFilePixelFormat gdi32 1645 -imp 'GetFontAssocStatus' GetFontAssocStatus gdi32 1647 -imp 'GetFontData' GetFontData gdi32 1648 -imp 'GetFontFileData' GetFontFileData gdi32 1649 -imp 'GetFontFileInfo' GetFontFileInfo gdi32 1650 -imp 'GetFontLanguageInfo' GetFontLanguageInfo gdi32 1651 -imp 'GetFontRealizationInfo' GetFontRealizationInfo gdi32 1652 -imp 'GetFontResourceInfo' GetFontResourceInfoW gdi32 1653 -imp 'GetFontUnicodeRanges' GetFontUnicodeRanges gdi32 1654 -imp 'GetGlyphIndices' GetGlyphIndicesW gdi32 1656 -imp 'GetGlyphOutline' GetGlyphOutlineW gdi32 1659 -imp 'GetGlyphOutlineWow' GetGlyphOutlineWow gdi32 1660 -imp 'GetGraphicsMode' GetGraphicsMode gdi32 1661 -imp 'GetHFONT' GetHFONT gdi32 1662 -imp 'GetICMProfile' GetICMProfileW gdi32 1664 -imp 'GetKerningPairs' GetKerningPairsW gdi32 1667 -imp 'GetLayout' GetLayout gdi32 1668 -imp 'GetLogColorSpace' GetLogColorSpaceW gdi32 1670 -imp 'GetMapMode' GetMapMode gdi32 1671 -imp 'GetMetaFile' GetMetaFileW gdi32 1674 -imp 'GetMetaFileBitsEx' GetMetaFileBitsEx gdi32 1673 -imp 'GetMetaRgn' GetMetaRgn gdi32 1675 -imp 'GetMiterLimit' GetMiterLimit gdi32 1676 -imp 'GetNearestColor' GetNearestColor gdi32 1677 -imp 'GetNearestPaletteIndex' GetNearestPaletteIndex gdi32 1678 -imp 'GetNumberOfPhysicalMonitors' GetNumberOfPhysicalMonitors gdi32 1679 -imp 'GetOPMInformation' GetOPMInformation gdi32 1680 -imp 'GetOPMRandomNumber' GetOPMRandomNumber gdi32 1681 -imp 'GetObject' GetObjectW gdi32 1684 -imp 'GetObjectType' GetObjectType gdi32 1683 -imp 'GetOutlineTextMetrics' GetOutlineTextMetricsW gdi32 1686 -imp 'GetPaletteEntries' GetPaletteEntries gdi32 1687 -imp 'GetPath' GetPath gdi32 1688 -imp 'GetPhysicalMonitorDescription' GetPhysicalMonitorDescription gdi32 1689 -imp 'GetPhysicalMonitors' GetPhysicalMonitors gdi32 1690 -imp 'GetPixel' GetPixel gdi32 1691 3 -imp 'GetPixelFormat' GetPixelFormat gdi32 1692 -imp 'GetPolyFillMode' GetPolyFillMode gdi32 1693 -imp 'GetProcessSessionFonts' GetProcessSessionFonts gdi32 1694 -imp 'GetROP2' GetROP2 gdi32 1695 -imp 'GetRandomRgn' GetRandomRgn gdi32 1696 -imp 'GetRasterizerCaps' GetRasterizerCaps gdi32 1697 -imp 'GetRegionData' GetRegionData gdi32 1698 -imp 'GetRelAbs' GetRelAbs gdi32 1699 -imp 'GetRgnBox' GetRgnBox gdi32 1700 -imp 'GetStockObject' GetStockObject gdi32 1701 -imp 'GetStretchBltMode' GetStretchBltMode gdi32 1702 -imp 'GetStringBitmap' GetStringBitmapW gdi32 1704 -imp 'GetSuggestedOPMProtectedOutputArraySize' GetSuggestedOPMProtectedOutputArraySize gdi32 1705 -imp 'GetSystemPaletteEntries' GetSystemPaletteEntries gdi32 1706 -imp 'GetSystemPaletteUse' GetSystemPaletteUse gdi32 1707 -imp 'GetTextAlign' GetTextAlign gdi32 1708 -imp 'GetTextCharacterExtra' GetTextCharacterExtra gdi32 1709 -imp 'GetTextCharset' GetTextCharset gdi32 1710 -imp 'GetTextCharsetInfo' GetTextCharsetInfo gdi32 1711 -imp 'GetTextColor' GetTextColor gdi32 1712 -imp 'GetTextExtentExPoint' GetTextExtentExPointW gdi32 1715 -imp 'GetTextExtentExPointI' GetTextExtentExPointI gdi32 1714 -imp 'GetTextExtentExPointWPri' GetTextExtentExPointWPri gdi32 1716 -imp 'GetTextExtentPoint' GetTextExtentPointW gdi32 1721 -imp 'GetTextExtentPoint32W' GetTextExtentPoint32W gdi32 1718 -imp 'GetTextExtentPointI' GetTextExtentPointI gdi32 1720 -imp 'GetTextFace' GetTextFaceW gdi32 1724 -imp 'GetTextFaceAlias' GetTextFaceAliasW gdi32 1723 -imp 'GetTextMetrics' GetTextMetricsW gdi32 1726 -imp 'GetTransform' GetTransform gdi32 1727 -imp 'GetViewportExtEx' GetViewportExtEx gdi32 1728 -imp 'GetViewportOrgEx' GetViewportOrgEx gdi32 1729 -imp 'GetWinMetaFileBits' GetWinMetaFileBits gdi32 1730 -imp 'GetWindowExtEx' GetWindowExtEx gdi32 1731 -imp 'GetWindowOrgEx' GetWindowOrgEx gdi32 1732 -imp 'GetWorldTransform' GetWorldTransform gdi32 1733 -imp 'HT_Get8BPPFormatPalette' HT_Get8BPPFormatPalette gdi32 1734 -imp 'HT_Get8BPPMaskPalette' HT_Get8BPPMaskPalette gdi32 1735 -imp 'InternalDeleteDC' InternalDeleteDC gdi32 1736 -imp 'IntersectClipRect' IntersectClipRect gdi32 1737 -imp 'InvertRgn' InvertRgn gdi32 1738 -imp 'IsValidEnhMetaRecord' IsValidEnhMetaRecord gdi32 1739 -imp 'IsValidEnhMetaRecordOffExt' IsValidEnhMetaRecordOffExt gdi32 1740 -imp 'LPtoDP' LPtoDP gdi32 1741 -imp 'LineTo' LineTo gdi32 1743 -imp 'LpkEditControl' LpkEditControl gdi32 1745 -imp 'LpkGetEditControl' LpkGetEditControl gdi32 1748 -imp 'LpkpEditControlSize' LpkpEditControlSize gdi32 1755 -imp 'LpkpInitializeEditControl' LpkpInitializeEditControl gdi32 1756 -imp 'MaskBlt' MaskBlt gdi32 1757 -imp 'MirrorRgn' MirrorRgn gdi32 1758 -imp 'ModerncoreGdiInit' ModerncoreGdiInit gdi32 1759 -imp 'ModifyWorldTransform' ModifyWorldTransform gdi32 1760 -imp 'MoveToEx' MoveToEx gdi32 1761 -imp 'NamedEscape' NamedEscape gdi32 1762 -imp 'OffsetClipRgn' OffsetClipRgn gdi32 1763 -imp 'OffsetRgn' OffsetRgn gdi32 1764 -imp 'OffsetViewportOrgEx' OffsetViewportOrgEx gdi32 1765 -imp 'OffsetWindowOrgEx' OffsetWindowOrgEx gdi32 1766 -imp 'PATHOBJ_bEnum' PATHOBJ_bEnum gdi32 1767 -imp 'PATHOBJ_bEnumClipLines' PATHOBJ_bEnumClipLines gdi32 1768 -imp 'PATHOBJ_vEnumStart' PATHOBJ_vEnumStart gdi32 1769 -imp 'PATHOBJ_vEnumStartClipLines' PATHOBJ_vEnumStartClipLines gdi32 1770 -imp 'PATHOBJ_vGetBounds' PATHOBJ_vGetBounds gdi32 1771 -imp 'PaintRgn' PaintRgn gdi32 1772 -imp 'PatBlt' PatBlt gdi32 1773 -imp 'PathToRegion' PathToRegion gdi32 1774 -imp 'Pie' Pie gdi32 1775 -imp 'PlayEnhMetaFile' PlayEnhMetaFile gdi32 1776 -imp 'PlayEnhMetaFileRecord' PlayEnhMetaFileRecord gdi32 1777 -imp 'PlayMetaFile' PlayMetaFile gdi32 1778 -imp 'PlayMetaFileRecord' PlayMetaFileRecord gdi32 1779 -imp 'PlgBlt' PlgBlt gdi32 1780 -imp 'PolyBezier' PolyBezier gdi32 1781 -imp 'PolyBezierTo' PolyBezierTo gdi32 1782 -imp 'PolyDraw' PolyDraw gdi32 1783 -imp 'PolyPatBlt' PolyPatBlt gdi32 1784 -imp 'PolyPolygon' PolyPolygon gdi32 1785 -imp 'PolyPolyline' PolyPolyline gdi32 1786 -imp 'PolyTextOut' PolyTextOutW gdi32 1788 -imp 'Polygon' Polygon gdi32 1789 -imp 'Polyline' Polyline gdi32 1790 -imp 'PolylineTo' PolylineTo gdi32 1791 -imp 'PtInRegion' PtInRegion gdi32 1792 -imp 'PtVisible' PtVisible gdi32 1793 -imp 'QueryFontAssocStatus' QueryFontAssocStatus gdi32 1794 -imp 'RealizePalette' RealizePalette gdi32 1795 -imp 'RectInRegion' RectInRegion gdi32 1796 -imp 'RectVisible' RectVisible gdi32 1797 -imp 'Rectangle' Rectangle gdi32 1798 -imp 'RemoveFontMemResourceEx' RemoveFontMemResourceEx gdi32 1799 -imp 'RemoveFontResource' RemoveFontResourceW gdi32 1804 -imp 'RemoveFontResourceEx' RemoveFontResourceExW gdi32 1802 -imp 'RemoveFontResourceTracking' RemoveFontResourceTracking gdi32 1803 -imp 'ResetDCW' ResetDCW gdi32 1806 -imp 'ResizePalette' ResizePalette gdi32 1807 -imp 'RestoreDC' RestoreDC gdi32 1808 2 -imp 'RoundRect' RoundRect gdi32 1809 -imp 'STROBJ_bEnum' STROBJ_bEnum gdi32 1810 -imp 'STROBJ_bEnumPositionsOnly' STROBJ_bEnumPositionsOnly gdi32 1811 -imp 'STROBJ_bGetAdvanceWidths' STROBJ_bGetAdvanceWidths gdi32 1812 -imp 'STROBJ_dwGetCodePage' STROBJ_dwGetCodePage gdi32 1813 -imp 'STROBJ_vEnumStart' STROBJ_vEnumStart gdi32 1814 -imp 'SaveDC' SaveDC gdi32 1815 1 -imp 'ScaleRgn' ScaleRgn gdi32 1816 -imp 'ScaleValues' ScaleValues gdi32 1817 -imp 'ScaleViewportExtEx' ScaleViewportExtEx gdi32 1818 -imp 'ScaleWindowExtEx' ScaleWindowExtEx gdi32 1819 -imp 'SelectBrushLocal' SelectBrushLocal gdi32 1860 -imp 'SelectClipPath' SelectClipPath gdi32 1861 -imp 'SelectClipRgn' SelectClipRgn gdi32 1862 -imp 'SelectFontLocal' SelectFontLocal gdi32 1863 -imp 'SelectObject' SelectObject gdi32 1864 2 -imp 'SelectPalette' SelectPalette gdi32 1865 -imp 'SetAbortProc' SetAbortProc gdi32 1866 -imp 'SetArcDirection' SetArcDirection gdi32 1867 -imp 'SetBitmapAttributes' SetBitmapAttributes gdi32 1868 -imp 'SetBitmapBits' SetBitmapBits gdi32 1869 -imp 'SetBitmapDimensionEx' SetBitmapDimensionEx gdi32 1870 -imp 'SetBkColor' SetBkColor gdi32 1871 -imp 'SetBkMode' SetBkMode gdi32 1872 2 -imp 'SetBoundsRect' SetBoundsRect gdi32 1873 -imp 'SetBrushAttributes' SetBrushAttributes gdi32 1874 -imp 'SetBrushOrgEx' SetBrushOrgEx gdi32 1875 -imp 'SetColorAdjustment' SetColorAdjustment gdi32 1876 -imp 'SetColorSpace' SetColorSpace gdi32 1877 -imp 'SetDCBrushColor' SetDCBrushColor gdi32 1878 -imp 'SetDCDpiScaleValue' SetDCDpiScaleValue gdi32 1879 -imp 'SetDCPenColor' SetDCPenColor gdi32 1880 -imp 'SetDIBColorTable' SetDIBColorTable gdi32 1881 -imp 'SetDIBits' SetDIBits gdi32 1882 -imp 'SetDIBitsToDevice' SetDIBitsToDevice gdi32 1883 -imp 'SetDeviceGammaRamp' SetDeviceGammaRamp gdi32 1884 -imp 'SetEnhMetaFileBits' SetEnhMetaFileBits gdi32 1885 -imp 'SetFontEnumeration' SetFontEnumeration gdi32 1886 -imp 'SetGraphicsMode' SetGraphicsMode gdi32 1887 -imp 'SetICMMode' SetICMMode gdi32 1888 -imp 'SetICMProfile' SetICMProfileW gdi32 1890 -imp 'SetLayout' SetLayout gdi32 1891 -imp 'SetLayoutWidth' SetLayoutWidth gdi32 1892 -imp 'SetMagicColors' SetMagicColors gdi32 1893 -imp 'SetMapMode' SetMapMode gdi32 1894 -imp 'SetMapperFlags' SetMapperFlags gdi32 1895 -imp 'SetMetaFileBitsEx' SetMetaFileBitsEx gdi32 1896 -imp 'SetMetaRgn' SetMetaRgn gdi32 1897 -imp 'SetMiterLimit' SetMiterLimit gdi32 1898 -imp 'SetOPMSigningKeyAndSequenceNumbers' SetOPMSigningKeyAndSequenceNumbers gdi32 1899 -imp 'SetPaletteEntries' SetPaletteEntries gdi32 1900 -imp 'SetPixel' SetPixel gdi32 1901 4 -imp 'SetPixelFormat' SetPixelFormat gdi32 1902 3 -imp 'SetPixelV' SetPixelV gdi32 1903 -imp 'SetPolyFillMode' SetPolyFillMode gdi32 1904 -imp 'SetROP2' SetROP2 gdi32 1905 -imp 'SetRectRgn' SetRectRgn gdi32 1906 -imp 'SetRelAbs' SetRelAbs gdi32 1907 -imp 'SetStretchBltMode' SetStretchBltMode gdi32 1908 -imp 'SetSystemPaletteUse' SetSystemPaletteUse gdi32 1909 -imp 'SetTextAlign' SetTextAlign gdi32 1910 2 -imp 'SetTextCharacterExtra' SetTextCharacterExtra gdi32 1911 -imp 'SetTextColor' SetTextColor gdi32 1912 2 -imp 'SetTextJustification' SetTextJustification gdi32 1913 3 -imp 'SetViewportExtEx' SetViewportExtEx gdi32 1914 -imp 'SetViewportOrgEx' SetViewportOrgEx gdi32 1915 -imp 'SetVirtualResolution' SetVirtualResolution gdi32 1916 -imp 'SetWinMetaFileBits' SetWinMetaFileBits gdi32 1917 -imp 'SetWindowExtEx' SetWindowExtEx gdi32 1918 -imp 'SetWindowOrgEx' SetWindowOrgEx gdi32 1919 -imp 'SetWorldTransform' SetWorldTransform gdi32 1920 -imp 'StartDoc' StartDocW gdi32 1922 -imp 'StartFormPage' StartFormPage gdi32 1923 -imp 'StartPage' StartPage gdi32 1924 -imp 'StretchBlt' StretchBlt gdi32 1925 -imp 'StretchDIBits' StretchDIBits gdi32 1926 -imp 'StrokeAndFillPath' StrokeAndFillPath gdi32 1927 -imp 'StrokePath' StrokePath gdi32 1928 -imp 'SwapBuffers' SwapBuffers gdi32 1929 1 -imp 'TextOut' TextOutW gdi32 1931 -imp 'TranslateCharsetInfo' TranslateCharsetInfo gdi32 1932 -imp 'UnloadNetworkFonts' UnloadNetworkFonts gdi32 1933 -imp 'UnrealizeObject' UnrealizeObject gdi32 1934 -imp 'UpdateColors' UpdateColors gdi32 1935 -imp 'UpdateICMRegKey' UpdateICMRegKeyW gdi32 1937 -imp 'WidenPath' WidenPath gdi32 1941 -imp 'XFORMOBJ_bApplyXform' XFORMOBJ_bApplyXform gdi32 1942 -imp 'XFORMOBJ_iGetXform' XFORMOBJ_iGetXform gdi32 1943 -imp 'XLATEOBJ_cGetPalette' XLATEOBJ_cGetPalette gdi32 1944 -imp 'XLATEOBJ_hGetColorTransform' XLATEOBJ_hGetColorTransform gdi32 1945 -imp 'XLATEOBJ_iXlate' XLATEOBJ_iXlate gdi32 1946 -imp 'XLATEOBJ_piVector' XLATEOBJ_piVector gdi32 1947 -imp 'cGetTTFFromFOT' cGetTTFFromFOT gdi32 1952 -imp 'fpClosePrinter' fpClosePrinter gdi32 1953 -imp 'gMaxGdiHandleCount' gMaxGdiHandleCount gdi32 1955 -imp 'gW32PID' gW32PID gdi32 1956 -imp 'g_systemCallFilterId' g_systemCallFilterId gdi32 1957 -imp 'gdiPlaySpoolStream' gdiPlaySpoolStream gdi32 1958 +# Name Actual DLL Arity +imp 'BitBlt' BitBlt gdi32 9 +imp 'ChoosePixelFormat' ChoosePixelFormat gdi32 2 +imp 'CreateBitmap' CreateBitmap gdi32 5 +imp 'CreateCompatibleBitmap' CreateCompatibleBitmap gdi32 3 +imp 'CreateCompatibleDC' CreateCompatibleDC gdi32 1 +imp 'CreateDIBSection' CreateDIBSection gdi32 6 +imp 'CreateRectRgn' CreateRectRgn gdi32 4 +imp 'DeleteDC' DeleteDC gdi32 1 +imp 'DeleteObject' DeleteObject gdi32 1 +imp 'GetPixel' GetPixel gdi32 3 +imp 'RestoreDC' RestoreDC gdi32 2 +imp 'SaveDC' SaveDC gdi32 1 +imp 'SelectObject' SelectObject gdi32 2 +imp 'SetBkMode' SetBkMode gdi32 2 +imp 'SetPixel' SetPixel gdi32 4 +imp 'SetPixelFormat' SetPixelFormat gdi32 3 +imp 'SetTextAlign' SetTextAlign gdi32 2 +imp 'SetTextColor' SetTextColor gdi32 2 +imp 'SetTextJustification' SetTextJustification gdi32 3 +imp 'SwapBuffers' SwapBuffers gdi32 1 # COMDLG32.DLL # -# Name Actual DLL Hint Arity -imp 'ChooseColor' ChooseColorW comdlg32 103 1 -imp 'ChooseFont' ChooseFontW comdlg32 105 1 -imp 'CommDlgExtendedError' CommDlgExtendedError comdlg32 106 -imp 'DllCanUnloadNow' DllCanUnloadNow comdlg32 107 -imp 'DllGetClassObject' DllGetClassObject comdlg32 108 -imp 'FindText' FindTextW comdlg32 110 -imp 'GetFileTitle' GetFileTitleW comdlg32 112 3 -imp 'GetOpenFileName' GetOpenFileNameW comdlg32 114 1 -imp 'GetSaveFileName' GetSaveFileNameW comdlg32 116 1 -imp 'LoadAlterBitmap' LoadAlterBitmap comdlg32 117 -imp 'PageSetupDlg' PageSetupDlgW comdlg32 119 -imp 'PrintDlg' PrintDlgW comdlg32 123 1 -imp 'PrintDlgEx' PrintDlgExW comdlg32 122 -imp 'ReplaceText' ReplaceTextW comdlg32 125 1 -imp 'Ssync_ANSI_UNICODE_Struct_For_WOW' Ssync_ANSI_UNICODE_Struct_For_WOW comdlg32 126 -imp 'WantArrows' WantArrows comdlg32 127 +# Name Actual DLL Arity +imp 'ChooseColor' ChooseColorW comdlg32 1 +imp 'ChooseFont' ChooseFontW comdlg32 1 +imp 'GetFileTitle' GetFileTitleW comdlg32 3 +imp 'GetOpenFileName' GetOpenFileNameW comdlg32 1 +imp 'GetSaveFileName' GetSaveFileNameW comdlg32 1 +imp 'PrintDlg' PrintDlgW comdlg32 1 +imp 'ReplaceText' ReplaceTextW comdlg32 1 # MSWSOCK.DLL # -# Name Actual DLL Hint Arity -imp 'AcceptEx' AcceptEx MsWSock 0 8 -imp 'DisconnectEx' DisconnectEx MsWSock 0 4 -imp 'GetAcceptExSockaddrs' GetAcceptExSockaddrs MsWSock 0 8 -imp 'TransmitFile' TransmitFile MsWSock 0 7 -imp 'WSARecvEx' WSARecvEx MsWSock 0 4 +# Name Actual DLL Arity +imp 'AcceptEx' AcceptEx MsWSock 8 +imp 'DisconnectEx' DisconnectEx MsWSock 4 +imp 'GetAcceptExSockaddrs' GetAcceptExSockaddrs MsWSock 8 +imp 'TransmitFile' TransmitFile MsWSock 7 +imp 'WSARecvEx' WSARecvEx MsWSock 4 # WS2_32.DLL # -# Name Actual DLL Hint Arity -imp 'FreeAddrInfo' FreeAddrInfoW ws2_32 27 1 -imp 'FreeAddrInfoEx' FreeAddrInfoExW ws2_32 26 1 -imp 'GetAddrInfo' GetAddrInfoW ws2_32 32 4 -imp 'GetAddrInfoEx' GetAddrInfoExW ws2_32 31 10 -imp 'GetAddrInfoExCancel' GetAddrInfoExCancel ws2_32 29 1 -imp 'GetAddrInfoExOverlappedResult' GetAddrInfoExOverlappedResult ws2_32 30 1 -imp 'GetHostName' GetHostNameW ws2_32 33 2 -imp 'GetNameInfo' GetNameInfoW ws2_32 34 7 -imp 'SetAddrInfoEx' SetAddrInfoExW ws2_32 38 12 -imp 'WSAAccept' WSAAccept ws2_32 41 5 -imp 'WSAAddressToString' WSAAddressToStringW ws2_32 43 5 -imp 'WSAAsyncGetHostByAddr' WSAAsyncGetHostByAddr ws2_32 102 7 -imp 'WSAAsyncGetHostByName' WSAAsyncGetHostByName ws2_32 103 5 -imp 'WSAAsyncGetProtoByName' WSAAsyncGetProtoByName ws2_32 105 5 -imp 'WSAAsyncGetProtoByNumber' WSAAsyncGetProtoByNumber ws2_32 104 5 -imp 'WSAAsyncGetServByName' WSAAsyncGetServByName ws2_32 107 -imp 'WSAAsyncGetServByPort' WSAAsyncGetServByPort ws2_32 106 -imp 'WSAAsyncSelect' WSAAsyncSelect ws2_32 101 -imp 'WSACancelAsyncRequest' WSACancelAsyncRequest ws2_32 108 -imp 'WSACancelBlockingCall' WSACancelBlockingCall ws2_32 113 -imp 'WSACleanup' WSACleanup ws2_32 116 0 -imp 'WSACloseEvent' WSACloseEvent ws2_32 45 1 -imp 'WSAConnect' WSAConnect ws2_32 46 7 -imp 'WSAConnectByList' WSAConnectByList ws2_32 47 8 -imp 'WSAConnectByName' WSAConnectByNameW ws2_32 49 9 -imp 'WSACreateEvent' WSACreateEvent ws2_32 50 0 -imp 'WSADuplicateSocket' WSADuplicateSocketW ws2_32 59 3 -imp 'WSAEnumNameSpaceProviders' WSAEnumNameSpaceProvidersW ws2_32 63 2 -imp 'WSAEnumNameSpaceProvidersEx' WSAEnumNameSpaceProvidersExW ws2_32 62 2 -imp 'WSAEnumNetworkEvents' WSAEnumNetworkEvents ws2_32 64 3 -imp 'WSAEnumProtocols' WSAEnumProtocolsW ws2_32 66 3 -imp 'WSAEventSelect' WSAEventSelect ws2_32 67 3 -imp 'WSAGetLastError' WSAGetLastError ws2_32 111 0 -imp 'WSAGetQOSByName' WSAGetQOSByName ws2_32 69 3 -imp 'WSAGetServiceClassInfo' WSAGetServiceClassInfoW ws2_32 71 4 -imp 'WSAGetServiceClassNameByClassId' WSAGetServiceClassNameByClassIdW ws2_32 73 3 -imp 'WSAInstallServiceClass' WSAInstallServiceClassW ws2_32 77 1 -imp 'WSAIoctl' WSAIoctl ws2_32 78 9 -imp 'WSAJoinLeaf' WSAJoinLeaf ws2_32 79 8 -imp 'WSALookupServiceBegin' WSALookupServiceBeginW ws2_32 81 3 -imp 'WSALookupServiceEnd' WSALookupServiceEnd ws2_32 82 1 -imp 'WSALookupServiceNext' WSALookupServiceNextW ws2_32 84 4 -imp 'WSANSPIoctl' WSANSPIoctl ws2_32 85 8 -imp 'WSAPoll' WSAPoll ws2_32 88 3 -imp 'WSAProviderCompleteAsyncCall' WSAProviderCompleteAsyncCall ws2_32 89 -imp 'WSAProviderConfigChange' WSAProviderConfigChange ws2_32 90 3 -imp 'WSARecvDisconnect' WSARecvDisconnect ws2_32 92 2 -imp 'WSARemoveServiceClass' WSARemoveServiceClass ws2_32 94 1 -imp 'WSAResetEvent' WSAResetEvent ws2_32 95 1 -imp 'WSASend' WSASend ws2_32 96 7 -imp 'WSASendDisconnect' WSASendDisconnect ws2_32 97 2 -imp 'WSASendMsg' WSASendMsg ws2_32 98 6 -imp 'WSASendTo' WSASendTo ws2_32 99 9 -imp 'WSASetBlockingHook' WSASetBlockingHook ws2_32 109 -imp 'WSASetEvent' WSASetEvent ws2_32 100 1 -imp 'WSASetLastError' WSASetLastError ws2_32 112 1 -imp 'WSASetService' WSASetServiceW ws2_32 118 3 -imp 'WSASocket' WSASocketW ws2_32 120 6 -imp 'WSAStartup' WSAStartup ws2_32 115 2 -imp 'WSAStringToAddress' WSAStringToAddressW ws2_32 122 -imp 'WSAUnadvertiseProvider' WSAUnadvertiseProvider ws2_32 123 -imp 'WSAUnhookBlockingHook' WSAUnhookBlockingHook ws2_32 110 -imp 'WSApSetPostRoutine' WSApSetPostRoutine ws2_32 24 -imp 'WSCDeinstallProvider' WSCDeinstallProvider ws2_32 125 -imp 'WSCDeinstallProvider32' WSCDeinstallProvider32 ws2_32 126 -imp 'WSCDeinstallProviderEx' WSCDeinstallProviderEx ws2_32 127 -imp 'WSCEnableNSProvider' WSCEnableNSProvider ws2_32 128 -imp 'WSCEnableNSProvider32' WSCEnableNSProvider32 ws2_32 129 -imp 'WSCEnumNameSpaceProviders32' WSCEnumNameSpaceProviders32 ws2_32 130 -imp 'WSCEnumNameSpaceProvidersEx32' WSCEnumNameSpaceProvidersEx32 ws2_32 131 -imp 'WSCEnumProtocols' WSCEnumProtocols ws2_32 132 -imp 'WSCEnumProtocols32' WSCEnumProtocols32 ws2_32 133 -imp 'WSCEnumProtocolsEx' WSCEnumProtocolsEx ws2_32 134 -imp 'WSCGetApplicationCategory' WSCGetApplicationCategory ws2_32 135 -imp 'WSCGetApplicationCategoryEx' WSCGetApplicationCategoryEx ws2_32 136 -imp 'WSCGetProviderInfo' WSCGetProviderInfo ws2_32 137 -imp 'WSCGetProviderInfo32' WSCGetProviderInfo32 ws2_32 138 -imp 'WSCGetProviderPath' WSCGetProviderPath ws2_32 139 -imp 'WSCGetProviderPath32' WSCGetProviderPath32 ws2_32 140 -imp 'WSCInstallNameSpace' WSCInstallNameSpace ws2_32 141 -imp 'WSCInstallNameSpace32' WSCInstallNameSpace32 ws2_32 142 -imp 'WSCInstallNameSpaceEx' WSCInstallNameSpaceEx ws2_32 143 -imp 'WSCInstallNameSpaceEx2' WSCInstallNameSpaceEx2 ws2_32 144 -imp 'WSCInstallNameSpaceEx32' WSCInstallNameSpaceEx32 ws2_32 145 -imp 'WSCInstallProvider' WSCInstallProvider ws2_32 146 -imp 'WSCInstallProvider64_32' WSCInstallProvider64_32 ws2_32 147 -imp 'WSCInstallProviderAndChains64_32' WSCInstallProviderAndChains64_32 ws2_32 148 -imp 'WSCInstallProviderEx' WSCInstallProviderEx ws2_32 149 -imp 'WSCSetApplicationCategory' WSCSetApplicationCategory ws2_32 150 -imp 'WSCSetApplicationCategoryEx' WSCSetApplicationCategoryEx ws2_32 152 -imp 'WSCSetProviderInfo' WSCSetProviderInfo ws2_32 153 -imp 'WSCSetProviderInfo32' WSCSetProviderInfo32 ws2_32 154 -imp 'WSCUnInstallNameSpace' WSCUnInstallNameSpace ws2_32 155 -imp 'WSCUnInstallNameSpace32' WSCUnInstallNameSpace32 ws2_32 156 -imp 'WSCUnInstallNameSpaceEx2' WSCUnInstallNameSpaceEx2 ws2_32 157 -imp 'WSCUpdateProvider' WSCUpdateProvider ws2_32 158 -imp 'WSCUpdateProvider32' WSCUpdateProvider32 ws2_32 159 -imp 'WSCUpdateProviderEx' WSCUpdateProviderEx ws2_32 160 -imp 'WSCWriteNameSpaceOrder' WSCWriteNameSpaceOrder ws2_32 161 -imp 'WSCWriteNameSpaceOrder32' WSCWriteNameSpaceOrder32 ws2_32 162 -imp 'WSCWriteProviderOrder' WSCWriteProviderOrder ws2_32 163 -imp 'WSCWriteProviderOrder32' WSCWriteProviderOrder32 ws2_32 164 -imp 'WSCWriteProviderOrderEx' WSCWriteProviderOrderEx ws2_32 165 -imp '__sys_socket_nt' socket ws2_32 0 3 -imp '__sys_accept_nt' accept ws2_32 1 3 # we're using WSAAccept() -imp '__sys_bind_nt' bind ws2_32 2 3 -imp '__sys_closesocket_nt' closesocket ws2_32 3 1 -imp '__sys_connect_nt' connect ws2_32 4 -imp '__sys_getpeername_nt' getpeername ws2_32 5 3 -imp '__sys_getsockname_nt' getsockname ws2_32 6 3 -imp '__sys_getsockopt_nt' getsockopt ws2_32 7 5 -imp '__sys_ioctlsocket_nt' ioctlsocket ws2_32 10 3 -imp '__sys_listen_nt' listen ws2_32 13 2 -imp '__sys_recvfrom_nt' recvfrom ws2_32 17 6 # we're using WSARecvFrom() -imp '__sys_select_nt' select ws2_32 18 5 -imp '__sys_sendto_nt' sendto ws2_32 20 6 # we're using WSASendTo() -imp '__sys_setsockopt_nt' setsockopt ws2_32 21 5 -imp '__sys_shutdown_nt' shutdown ws2_32 22 2 -imp '__sys_socket_nt' socket ws2_32 23 3 -imp 'sys_freeaddrinfo_nt' freeaddrinfo ws2_32 190 -imp 'sys_getaddrinfo_nt' getaddrinfo ws2_32 191 -imp 'sys_gethostbyaddr_nt' gethostbyaddr ws2_32 51 -imp 'sys_gethostbyname_nt' gethostbyname ws2_32 52 -imp 'sys_gethostname_nt' gethostname ws2_32 57 -imp 'sys_getnameinfo_nt' getnameinfo ws2_32 192 -imp 'sys_getprotobyname_nt' getprotobyname ws2_32 53 -imp 'sys_getprotobynumber_nt' getprotobynumber ws2_32 54 -imp 'sys_getservbyname_nt' getservbyname ws2_32 55 -imp 'sys_getservbyport_nt' getservbyport ws2_32 56 -imp '__WSARecv' WSARecv ws2_32 91 7 -imp '__WSARecvFrom' WSARecvFrom ws2_32 93 9 -imp '__WSAWaitForMultipleEvents' WSAWaitForMultipleEvents ws2_32 124 5 -imp '__sys_recv_nt' recv ws2_32 16 4 # we're using WSARecvFrom() -imp '__sys_send_nt' send ws2_32 19 4 # we're using WSASendTo() -imp '__WSAGetOverlappedResult' WSAGetOverlappedResult ws2_32 68 5 +# Name Actual DLL Arity +imp 'FreeAddrInfo' FreeAddrInfoW ws2_32 1 +imp 'FreeAddrInfoEx' FreeAddrInfoExW ws2_32 1 +imp 'GetAddrInfo' GetAddrInfoW ws2_32 4 +imp 'GetAddrInfoEx' GetAddrInfoExW ws2_32 10 +imp 'GetAddrInfoExCancel' GetAddrInfoExCancel ws2_32 1 +imp 'GetAddrInfoExOverlappedResult' GetAddrInfoExOverlappedResult ws2_32 1 +imp 'GetHostName' GetHostNameW ws2_32 2 +imp 'GetNameInfo' GetNameInfoW ws2_32 7 +imp 'SetAddrInfoEx' SetAddrInfoExW ws2_32 12 +imp 'WSAAccept' WSAAccept ws2_32 5 +imp 'WSAAddressToString' WSAAddressToStringW ws2_32 5 +imp 'WSAAsyncGetHostByAddr' WSAAsyncGetHostByAddr ws2_32 7 +imp 'WSAAsyncGetHostByName' WSAAsyncGetHostByName ws2_32 5 +imp 'WSAAsyncGetProtoByName' WSAAsyncGetProtoByName ws2_32 5 +imp 'WSAAsyncGetProtoByNumber' WSAAsyncGetProtoByNumber ws2_32 5 +imp 'WSACleanup' WSACleanup ws2_32 0 +imp 'WSACloseEvent' WSACloseEvent ws2_32 1 +imp 'WSAConnect' WSAConnect ws2_32 7 +imp 'WSAConnectByList' WSAConnectByList ws2_32 8 +imp 'WSAConnectByName' WSAConnectByNameW ws2_32 9 +imp 'WSACreateEvent' WSACreateEvent ws2_32 0 +imp 'WSADuplicateSocket' WSADuplicateSocketW ws2_32 3 +imp 'WSAEnumNameSpaceProviders' WSAEnumNameSpaceProvidersW ws2_32 2 +imp 'WSAEnumNameSpaceProvidersEx' WSAEnumNameSpaceProvidersExW ws2_32 2 +imp 'WSAEnumNetworkEvents' WSAEnumNetworkEvents ws2_32 3 +imp 'WSAEnumProtocols' WSAEnumProtocolsW ws2_32 3 +imp 'WSAEventSelect' WSAEventSelect ws2_32 3 +imp 'WSAGetLastError' WSAGetLastError ws2_32 0 +imp 'WSAGetQOSByName' WSAGetQOSByName ws2_32 3 +imp 'WSAGetServiceClassInfo' WSAGetServiceClassInfoW ws2_32 4 +imp 'WSAGetServiceClassNameByClassId' WSAGetServiceClassNameByClassIdW ws2_32 3 +imp 'WSAInstallServiceClass' WSAInstallServiceClassW ws2_32 1 +imp 'WSAIoctl' WSAIoctl ws2_32 9 +imp 'WSAJoinLeaf' WSAJoinLeaf ws2_32 8 +imp 'WSALookupServiceBegin' WSALookupServiceBeginW ws2_32 3 +imp 'WSALookupServiceEnd' WSALookupServiceEnd ws2_32 1 +imp 'WSALookupServiceNext' WSALookupServiceNextW ws2_32 4 +imp 'WSANSPIoctl' WSANSPIoctl ws2_32 8 +imp 'WSAPoll' WSAPoll ws2_32 3 +imp 'WSAProviderConfigChange' WSAProviderConfigChange ws2_32 3 +imp 'WSARecvDisconnect' WSARecvDisconnect ws2_32 2 +imp 'WSARemoveServiceClass' WSARemoveServiceClass ws2_32 1 +imp 'WSAResetEvent' WSAResetEvent ws2_32 1 +imp 'WSASend' WSASend ws2_32 7 +imp 'WSASendDisconnect' WSASendDisconnect ws2_32 2 +imp 'WSASendMsg' WSASendMsg ws2_32 6 +imp 'WSASendTo' WSASendTo ws2_32 9 +imp 'WSASetEvent' WSASetEvent ws2_32 1 +imp 'WSASetLastError' WSASetLastError ws2_32 1 +imp 'WSASetService' WSASetServiceW ws2_32 3 +imp 'WSASocket' WSASocketW ws2_32 6 +imp 'WSAStartup' WSAStartup ws2_32 2 +imp '__sys_socket_nt' socket ws2_32 3 +imp '__sys_accept_nt' accept ws2_32 3 # we're using WSAAccept() +imp '__sys_bind_nt' bind ws2_32 3 +imp '__sys_closesocket_nt' closesocket ws2_32 1 +imp '__sys_getpeername_nt' getpeername ws2_32 3 +imp '__sys_getsockname_nt' getsockname ws2_32 3 +imp '__sys_getsockopt_nt' getsockopt ws2_32 5 +imp '__sys_ioctlsocket_nt' ioctlsocket ws2_32 3 +imp '__sys_listen_nt' listen ws2_32 2 +imp '__sys_recvfrom_nt' recvfrom ws2_32 6 # we're using WSARecvFrom() +imp '__sys_select_nt' select ws2_32 5 +imp '__sys_sendto_nt' sendto ws2_32 6 # we're using WSASendTo() +imp '__sys_setsockopt_nt' setsockopt ws2_32 5 +imp '__sys_shutdown_nt' shutdown ws2_32 2 +imp '__sys_socket_nt' socket ws2_32 3 +imp '__WSARecv' WSARecv ws2_32 7 +imp '__WSARecvFrom' WSARecvFrom ws2_32 9 +imp '__WSAWaitForMultipleEvents' WSAWaitForMultipleEvents ws2_32 5 +imp '__sys_recv_nt' recv ws2_32 4 # we're using WSARecvFrom() +imp '__sys_send_nt' send ws2_32 4 # we're using WSASendTo() +imp '__WSAGetOverlappedResult' WSAGetOverlappedResult ws2_32 5 # IPHLPAPI.DLL # -# Name Actual DLL Hint Arity -imp 'AddIPAddress' AddIPAddress iphlpapi 0 5 -imp 'AllocateAndGetTcpExTableFromStack' AllocateAndGetTcpExTableFromStack iphlpapi 0 5 -imp 'AllocateAndGetUdpExTableFromStack' AllocateAndGetUdpExTableFromStack iphlpapi 0 5 -imp 'CancelIPChangeNotify' CancelIPChangeNotify iphlpapi 0 1 -imp 'CaptureInterfaceHardwareCrossTimestamp' CaptureInterfaceHardwareCrossTimestamp iphlpapi 0 2 -imp 'CreateIpForwardEntry' CreateIpForwardEntry iphlpapi 0 1 -imp 'CreateIpNetEntry' CreateIpNetEntry iphlpapi 0 -imp 'CreatePersistentTcpPortReservation' CreatePersistentTcpPortReservation iphlpapi 0 -imp 'CreatePersistentUdpPortReservation' CreatePersistentUdpPortReservation iphlpapi 0 -imp 'CreateProxyArpEntry' CreateProxyArpEntry iphlpapi 0 -imp 'DeleteIPAddress' DeleteIPAddress iphlpapi 0 -imp 'DeleteIpForwardEntry' DeleteIpForwardEntry iphlpapi 0 -imp 'DeleteIpNetEntry' DeleteIpNetEntry iphlpapi 0 -imp 'DeletePersistentTcpPortReservation' DeletePersistentTcpPortReservation iphlpapi 0 -imp 'DeletePersistentUdpPortReservation' DeletePersistentUdpPortReservation iphlpapi 0 -imp 'DeleteProxyArpEntry' DeleteProxyArpEntry iphlpapi 0 -imp 'DisableMediaSense' DisableMediaSense iphlpapi 0 -imp 'EnableRouter' EnableRouter iphlpapi 0 -imp 'FlushIpNetTable' FlushIpNetTable iphlpapi 0 1 -imp 'GetAdapterIndex' GetAdapterIndex iphlpapi 0 2 -imp 'GetAdapterOrderMap' GetAdapterOrderMap iphlpapi 0 0 -imp 'GetAdaptersAddresses' GetAdaptersAddresses iphlpapi 67 5 -imp 'GetAdaptersInfo' GetAdaptersInfo iphlpapi 0 2 -imp 'GetBestInterface' GetBestInterface iphlpapi 0 2 -imp 'GetBestInterfaceEx' GetBestInterfaceEx iphlpapi 0 2 -imp 'GetBestRoute' GetBestRoute iphlpapi 0 3 -imp 'GetExtendedTcpTable' GetExtendedTcpTable iphlpapi 0 -imp 'GetExtendedUdpTable' GetExtendedUdpTable iphlpapi 0 -imp 'GetFriendlyIfIndex' GetFriendlyIfIndex iphlpapi 0 -imp 'GetIcmpStatistics' GetIcmpStatistics iphlpapi 0 -imp 'GetIcmpStatisticsEx' GetIcmpStatisticsEx iphlpapi 0 -imp 'GetIfEntry' GetIfEntry iphlpapi 0 -imp 'GetIfTable' GetIfTable iphlpapi 0 -imp 'GetInterfaceActiveTimestampCapabilities' GetInterfaceActiveTimestampCapabilities iphlpapi 0 -imp 'GetInterfaceInfo' GetInterfaceInfo iphlpapi 0 -imp 'GetInterfaceSupportedTimestampCapabilities' GetInterfaceSupportedTimestampCapabilities iphlpapi 0 -imp 'GetIpAddrTable' GetIpAddrTable iphlpapi 0 -imp 'GetIpErrorString' GetIpErrorString iphlpapi 0 -imp 'GetIpForwardTable' GetIpForwardTable iphlpapi 0 -imp 'GetIpNetTable' GetIpNetTable iphlpapi 0 -imp 'GetIpStatistics' GetIpStatistics iphlpapi 0 -imp 'GetIpStatisticsEx' GetIpStatisticsEx iphlpapi 0 -imp 'GetNetworkParams' GetNetworkParams iphlpapi 0 -imp 'GetNumberOfInterfaces' GetNumberOfInterfaces iphlpapi 0 1 -imp 'GetOwnerModuleFromTcp6Entry' GetOwnerModuleFromTcp6Entry iphlpapi 0 -imp 'GetOwnerModuleFromTcpEntry' GetOwnerModuleFromTcpEntry iphlpapi 0 -imp 'GetOwnerModuleFromUdp6Entry' GetOwnerModuleFromUdp6Entry iphlpapi 0 -imp 'GetOwnerModuleFromUdpEntry' GetOwnerModuleFromUdpEntry iphlpapi 0 -imp 'GetPerAdapterInfo' GetPerAdapterInfo iphlpapi 0 -imp 'GetPerTcp6ConnectionEStats' GetPerTcp6ConnectionEStats iphlpapi 0 -imp 'GetPerTcpConnectionEStats' GetPerTcpConnectionEStats iphlpapi 0 -imp 'GetRTTAndHopCount' GetRTTAndHopCount iphlpapi 0 -imp 'GetTcp6Table' GetTcp6Table iphlpapi 0 -imp 'GetTcp6Table2' GetTcp6Table2 iphlpapi 0 -imp 'GetTcpStatistics' GetTcpStatistics iphlpapi 0 -imp 'GetTcpStatisticsEx' GetTcpStatisticsEx iphlpapi 0 -imp 'GetTcpStatisticsEx2' GetTcpStatisticsEx2 iphlpapi 0 -imp 'GetTcpTable' GetTcpTable iphlpapi 0 3 -imp 'GetTcpTable2' GetTcpTable2 iphlpapi 0 3 -imp 'GetUdp6Table' GetUdp6Table iphlpapi 0 -imp 'GetUdpStatistics' GetUdpStatistics iphlpapi 0 -imp 'GetUdpStatisticsEx' GetUdpStatisticsEx iphlpapi 0 -imp 'GetUdpStatisticsEx2' GetUdpStatisticsEx2 iphlpapi 0 -imp 'GetUdpTable' GetUdpTable iphlpapi 0 -imp 'GetUniDirectionalAdapterInfo' GetUniDirectionalAdapterInfo iphlpapi 0 -imp 'IpReleaseAddress' IpReleaseAddress iphlpapi 0 -imp 'IpRenewAddress' IpRenewAddress iphlpapi 0 -imp 'LookupPersistentTcpPortReservation' LookupPersistentTcpPortReservation iphlpapi 0 -imp 'LookupPersistentUdpPortReservation' LookupPersistentUdpPortReservation iphlpapi 0 -imp 'NhpAllocateAndGetInterfaceInfoFromStack' NhpAllocateAndGetInterfaceInfoFromStack iphlpapi 0 -imp 'NotifyAddrChange' NotifyAddrChange iphlpapi 0 -imp 'NotifyRouteChange' NotifyRouteChange iphlpapi 0 -imp 'ParseNetworkString' ParseNetworkString iphlpapi 0 -imp 'RegisterInterfaceTimestampConfigChange' RegisterInterfaceTimestampConfigChange iphlpapi 0 -imp 'ResolveNeighbor' ResolveNeighbor iphlpapi 0 -imp 'RestoreMediaSense' RestoreMediaSense iphlpapi 0 -imp 'SendARP' SendARP iphlpapi 0 -imp 'SetIfEntry' SetIfEntry iphlpapi 0 -imp 'SetIpForwardEntry' SetIpForwardEntry iphlpapi 0 -imp 'SetIpNetEntry' SetIpNetEntry iphlpapi 0 -imp 'SetIpStatistics' SetIpStatistics iphlpapi 0 -imp 'SetIpStatisticsEx' SetIpStatisticsEx iphlpapi 0 -imp 'SetIpTTL' SetIpTTL iphlpapi 0 -imp 'SetPerTcp6ConnectionEStats' SetPerTcp6ConnectionEStats iphlpapi 0 -imp 'SetPerTcpConnectionEStats' SetPerTcpConnectionEStats iphlpapi 0 -imp 'SetTcpEntry' SetTcpEntry iphlpapi 0 -imp 'UnenableRouter' UnenableRouter iphlpapi 0 -imp 'UnregisterInterfaceTimestampConfigChange' UnregisterInterfaceTimestampConfigChange iphlpapi 0 +# Name Actual DLL Arity +imp 'AddIPAddress' AddIPAddress iphlpapi 5 +imp 'AllocateAndGetTcpExTableFromStack' AllocateAndGetTcpExTableFromStack iphlpapi 5 +imp 'AllocateAndGetUdpExTableFromStack' AllocateAndGetUdpExTableFromStack iphlpapi 5 +imp 'CancelIPChangeNotify' CancelIPChangeNotify iphlpapi 1 +imp 'CaptureInterfaceHardwareCrossTimestamp' CaptureInterfaceHardwareCrossTimestamp iphlpapi 2 +imp 'CreateIpForwardEntry' CreateIpForwardEntry iphlpapi 1 +imp 'FlushIpNetTable' FlushIpNetTable iphlpapi 1 +imp 'GetAdapterIndex' GetAdapterIndex iphlpapi 2 +imp 'GetAdapterOrderMap' GetAdapterOrderMap iphlpapi 0 +imp 'GetAdaptersAddresses' GetAdaptersAddresses iphlpapi 5 +imp 'GetAdaptersInfo' GetAdaptersInfo iphlpapi 2 +imp 'GetBestInterface' GetBestInterface iphlpapi 2 +imp 'GetBestInterfaceEx' GetBestInterfaceEx iphlpapi 2 +imp 'GetBestRoute' GetBestRoute iphlpapi 3 +imp 'GetNumberOfInterfaces' GetNumberOfInterfaces iphlpapi 1 +imp 'GetTcpTable' GetTcpTable iphlpapi 3 +imp 'GetTcpTable2' GetTcpTable2 iphlpapi 3 # POWRPROF.DLL # -# Name Actual DLL Hint Arity -imp 'SetSuspendState' SetSuspendState PowrProf 0 3 +# Name Actual DLL Arity +imp 'SetSuspendState' SetSuspendState PowrProf 3 # PDH.DLL # -# Name Actual DLL Hint Arity -imp 'CounterPathCallBack' CounterPathCallBack pdh 0 # Applications implement the CounterPathCallBack function to process the counter path strings returned by the Browse dialog box. -imp 'LoadPerfCounterTextStrings' LoadPerfCounterTextStringsW pdh 0 # Loads onto the computer the performance objects and counters defined in the specified initialization file. -imp 'PdhAddCounter' PdhAddCounterW pdh 0 # Adds the specified counter to the query. -imp 'PdhAddEnglishCounter' PdhAddEnglishCounterW pdh 0 4 # Adds the specified language-neutral counter to the query. -imp 'PdhBindInputDataSource' PdhBindInputDataSourceW pdh 0 # Binds one or more binary log files together for reading log data. -imp 'PdhBrowseCounters' PdhBrowseCountersW pdh 0 # Displays a Browse Counters dialog box that the user can use to select one or more counters that they want to add to the query. To use handles to data sources, use the PdhBrowseCountersH function. -imp 'PdhBrowseCountersH' PdhBrowseCountersHW pdh 0 # Displays a Browse Counters dialog box that the user can use to select one or more counters that they want to add to the query. This function is identical to the PdhBrowseCounters function, except that it supports the use of handles to data sources. -imp 'PdhCalculateCounterFromRawValue' PdhCalculateCounterFromRawValue pdh 0 # Calculates the displayable value of two raw counter values. -imp 'PdhCloseLog' PdhCloseLog pdh 0 # Closes the specified log file. -imp 'PdhCloseQuery' PdhCloseQuery pdh 0 # Closes all counters contained in the specified query, closes all handles related to the query, and frees all memory associated with the query. -imp 'PdhCollectQueryData' PdhCollectQueryData pdh 0 # Collects the current raw data value for all counters in the specified query and updates the status code of each counter. -imp 'PdhCollectQueryDataEx' PdhCollectQueryDataEx pdh 0 3 # Uses a separate thread to collect the current raw data value for all counters in the specified query. The function then signals the application-defined event and waits the specified time interval before returning. -imp 'PdhCollectQueryDataWithTime' PdhCollectQueryDataWithTime pdh 0 # Collects the current raw data value for all counters in the specified query and updates the status code of each counter. -imp 'PdhComputeCounterStatistics' PdhComputeCounterStatistics pdh 0 # Computes statistics for a counter from an array of raw values. -imp 'PdhConnectMachine' PdhConnectMachineW pdh 0 # Connects to the specified computer. -imp 'PdhEnumLogSetNames' PdhEnumLogSetNamesW pdh 0 # Enumerates the names of the log sets within the DSN. -imp 'PdhEnumMachines' PdhEnumMachinesW pdh 0 # Returns a list of the computer names associated with counters in a log file. -imp 'PdhEnumMachinesH' PdhEnumMachinesHW pdh 0 # Returns a list of the computer names associated with counters in a log file. -imp 'PdhEnumObjectItems' PdhEnumObjectItemsW pdh 0 # Returns the specified object's counter and instance names that exist on the specified computer or in the specified log file. To use handles to data sources, use the PdhEnumObjectItemsH function. -imp 'PdhEnumObjectItemsH' PdhEnumObjectItemsHW pdh 0 # Returns the specified object's counter and instance names that exist on the specified computer or in the specified log file. This function is identical to the PdhEnumObjectItems function, except that it supports the use of handles to data sources. -imp 'PdhEnumObjects' PdhEnumObjectsW pdh 0 # Returns a list of objects available on the specified computer or in the specified log file. To use handles to data sources, use the PdhEnumObjectsH function. -imp 'PdhEnumObjectsH' PdhEnumObjectsHW pdh 0 # Returns a list of objects available on the specified computer or in the specified log file.This function is identical to PdhEnumObjects, except that it supports the use of handles to data sources. -imp 'PdhExpandCounterPath' PdhExpandCounterPathW pdh 0 # Examines the specified computer (or local computer if none is specified) for counters and instances of counters that match the wildcard strings in the counter path. -imp 'PdhExpandWildCardPath' PdhExpandWildCardPathW pdh 0 # Examines the specified computer or log file and returns those counter paths that match the given counter path which contains wildcard characters. To use handles to data sources, use the PdhExpandWildCardPathH function. -imp 'PdhExpandWildCardPathH' PdhExpandWildCardPathHW pdh 0 # Examines the specified computer or log file and returns those counter paths that match the given counter path which contains wildcard characters.This function is identical to the PdhExpandWildCardPath function, except that it supports the use of handles to data sources. -imp 'PdhFormatFromRawValue' PdhFormatFromRawValue pdh 0 # Computes a displayable value for the given raw counter values. -imp 'PdhGetCounterInfo' PdhGetCounterInfoW pdh 0 # Retrieves information about a counter, such as data size, counter type, path, and user-supplied data values. -imp 'PdhGetCounterTimeBase' PdhGetCounterTimeBase pdh 0 # Returns the time base of the specified counter. -imp 'PdhGetDataSourceTimeRange' PdhGetDataSourceTimeRangeW pdh 0 # Determines the time range, number of entries and, if applicable, the size of the buffer containing the performance data from the specified input source. To use handles to data sources, use the PdhGetDataSourceTimeRangeH function. -imp 'PdhGetDataSourceTimeRangeH' PdhGetDataSourceTimeRangeH pdh 0 # Determines the time range, number of entries and, if applicable, the size of the buffer containing the performance data from the specified input source.This function is identical to the PdhGetDataSourceTimeRange function, except that it supports the use of handles to data sources. -imp 'PdhGetDefaultPerfCounter' PdhGetDefaultPerfCounterW pdh 0 # Retrieves the name of the default counter for the specified object. This name can be used to set the initial counter selection in the Browse Counter dialog box. To use handles to data sources, use the PdhGetDefaultPerfCounterH function. -imp 'PdhGetDefaultPerfCounterH' PdhGetDefaultPerfCounterHW pdh 0 # Retrieves the name of the default counter for the specified object. -imp 'PdhGetDefaultPerfObject' PdhGetDefaultPerfObjectW pdh 0 # Retrieves the name of the default object. This name can be used to set the initial object selection in the Browse Counter dialog box. To use handles to data sources, use the PdhGetDefaultPerfObjectH function. -imp 'PdhGetDefaultPerfObjectH' PdhGetDefaultPerfObjectHW pdh 0 # Retrieves the name of the default object. -imp 'PdhGetDllVersion' PdhGetDllVersion pdh 0 # Returns the version of the currently installed Pdh.dll file. -imp 'PdhGetFormattedCounterArray' PdhGetFormattedCounterArrayW pdh 0 # Returns an array of formatted counter values. Use this function when you want to format the counter values of a counter that contains a wildcard character for the instance name. -imp 'PdhGetFormattedCounterValue' PdhGetFormattedCounterValue pdh 0 4 # Computes a displayable value for the specified counter. -imp 'PdhGetLogFileSize' PdhGetLogFileSize pdh 0 # Returns the size of the specified log file. -imp 'PdhGetRawCounterArray' PdhGetRawCounterArrayW pdh 0 # Returns an array of raw values from the specified counter. Use this function when you want to retrieve the raw counter values of a counter that contains a wildcard character for the instance name. -imp 'PdhGetRawCounterValue' PdhGetRawCounterValue pdh 0 # Returns the current raw value of the counter. -imp 'PdhIsRealTimeQuery' PdhIsRealTimeQuery pdh 0 # Determines if the specified query is a real-time query. -imp 'PdhLookupPerfIndexByName' PdhLookupPerfIndexByNameW pdh 0 # Returns the counter index corresponding to the specified counter name. -imp 'PdhLookupPerfNameByIndex' PdhLookupPerfNameByIndexW pdh 0 # Returns the performance object name or counter name corresponding to the specified index. -imp 'PdhMakeCounterPath' PdhMakeCounterPathW pdh 0 # Creates a full counter path using the members specified in the PDH_COUNTER_PATH_ELEMENTS structure. -imp 'PdhOpenLog' PdhOpenLogW pdh 0 # Opens the specified log file for reading or writing. -imp 'PdhOpenQuery' PdhOpenQueryW pdh 0 3 # Creates a new query that is used to manage the collection of performance data. To use handles to data sources, use the PdhOpenQueryH function. -imp 'PdhOpenQueryH' PdhOpenQueryH pdh 0 # Creates a new query that is used to manage the collection of performance data. This function is identical to the PdhOpenQuery function, except that it supports the use of handles to data sources. -imp 'PdhParseCounterPath' PdhParseCounterPathW pdh 0 # Parses the elements of the counter path and stores the results in the PDH_COUNTER_PATH_ELEMENTS structure. -imp 'PdhParseInstanceName' PdhParseInstanceNameW pdh 0 # Parses the elements of an instance string. -imp 'PdhReadRawLogRecord' PdhReadRawLogRecord pdh 0 # Reads the information in the specified binary trace log file. -imp 'PdhRemoveCounter' PdhRemoveCounter pdh 0 # Removes a counter from a query. -imp 'PdhSelectDataSource' PdhSelectDataSourceW pdh 0 # Displays a dialog window that prompts the user to specify the source of the performance data. -imp 'PdhSetCounterScaleFactor' PdhSetCounterScaleFactor pdh 0 # Sets the scale factor that is applied to the calculated value of the specified counter when you request the formatted counter value. If the PDH_FMT_NOSCALE flag is set, then this scale factor is ignored. -imp 'PdhSetDefaultRealTimeDataSource' PdhSetDefaultRealTimeDataSource pdh 0 # Specifies the source of the real-time data. -imp 'PdhSetQueryTimeRange' PdhSetQueryTimeRange pdh 0 # Limits the samples that you can read from a log file to those within the specified time range, inclusively. -imp 'PdhUpdateLog' PdhUpdateLogW pdh 0 # Collects counter data for the current query and writes the data to the log file. -imp 'PdhUpdateLogFileCatalog' PdhUpdateLogFileCatalog pdh 0 # Synchronizes the information in the log file catalog with the performance data in the log file. -imp 'PdhValidatePath' PdhValidatePathW pdh 0 # Validates that the counter is present on the computer specified in the counter path. -imp 'PdhValidatePathEx' PdhValidatePathExW pdh 0 # Validates that the specified counter is present on the computer or in the log file. -imp 'PerfAddCounters' PerfAddCounters pdh 0 # Adds performance counter specifications to the specified query. -imp 'PerfCloseQueryHandle' PerfCloseQueryHandle pdh 0 # Closes a query handle that you opened by calling PerfOpenQueryHandle. -imp 'PerfCreateInstance' PerfCreateInstance pdh 0 # Creates an instance of the specified counter set. -imp 'PerfDecrementULongCounterValue' PerfDecrementULongCounterValue pdh 0 # Decrements the value of a counter whose value is a 4-byte unsigned integer. Providers use this function. -imp 'PerfDecrementULongLongCounterValue' PerfDecrementULongLongCounterValue pdh 0 # Decrements the value of a counter whose value is an 8-byte unsigned integer. Providers use this function. -imp 'PerfDeleteCounters' PerfDeleteCounters pdh 0 # Removes the specified performance counter specifications from the specified query. -imp 'PerfDeleteInstance' PerfDeleteInstance pdh 0 # Deletes an instance of the counter set created by the PerfCreateInstance function. -imp 'PerfEnumerateCounterSet' PerfEnumerateCounterSet pdh 0 # Gets the counter set identifiers of the counter sets that are registered on the specified system. Counter set identifiers are globally unique identifiers (GUIDs). -imp 'PerfEnumerateCounterSetInstances' PerfEnumerateCounterSetInstances pdh 0 # Gets the names and identifiers of the active instances of a counter set on the specified system. -imp 'PerfIncrementULongCounterValue' PerfIncrementULongCounterValue pdh 0 # Increments the value of a counter whose value is a 4-byte unsigned integer. Providers use this function. -imp 'PerfIncrementULongLongCounterValue' PerfIncrementULongLongCounterValue pdh 0 # Increments the value of a counter whose value is an 8-byte unsigned integer. Providers use this function. -imp 'PerfOpenQueryHandle' PerfOpenQueryHandle pdh 0 # Creates a handle that references a query on the specified system. A query is a list of counter specifications. -imp 'PerfQueryCounterData' PerfQueryCounterData pdh 0 # Gets the values of the performance counters that match the counter specifications in the specified query. -imp 'PerfQueryCounterInfo' PerfQueryCounterInfo pdh 0 # Gets the counter specifications in the specified query. -imp 'PerfQueryCounterSetRegistrationInfo' PerfQueryCounterSetRegistrationInfo pdh 0 # Gets information about a counter set on the specified system. -imp 'PerfQueryInstance' PerfQueryInstance pdh 0 # Retrieves a pointer to the specified counter set instance. Providers use this function. -imp 'PerfSetCounterRefValue' PerfSetCounterRefValue pdh 0 # Updates the value of a counter whose value is a pointer to the actual data. Providers use this function. -imp 'PerfSetCounterSetInfo' PerfSetCounterSetInfo pdh 0 # Specifies the layout of a particular counter set. -imp 'PerfSetULongCounterValue' PerfSetULongCounterValue pdh 0 # Updates the value of a counter whose value is a 4-byte unsigned integer. Providers use this function. -imp 'PerfSetULongLongCounterValue' PerfSetULongLongCounterValue pdh 0 # Updates the value of a counter whose value is an 8-byte unsigned integer. Providers use this function. -imp 'PerfStartProvider' PerfStartProvider pdh 0 # Registers the provider. -imp 'PerfStartProviderEx' PerfStartProviderEx pdh 0 # Registers the provider. -imp 'PerfStopProvider' PerfStopProvider pdh 0 # Removes the provider's registration from the list of registered providers and frees all resources associated with the provider. -imp 'UnloadPerfCounterTextStrings' UnloadPerfCounterTextStringsW pdh 0 # Unloads performance objects and counters from the computer for the specified application. +# Name Actual DLL Arity +imp 'PdhAddEnglishCounter' PdhAddEnglishCounterW pdh 4 # Adds the specified language-neutral counter to the query. +imp 'PdhCollectQueryDataEx' PdhCollectQueryDataEx pdh 3 # Uses a separate thread to collect the current raw data value for all counters in the specified query. The function then signals the application-defined event and waits the specified time interval before returning. +imp 'PdhGetFormattedCounterValue' PdhGetFormattedCounterValue pdh 4 # Computes a displayable value for the specified counter. +imp 'PdhOpenQuery' PdhOpenQueryW pdh 3 # Creates a new query that is used to manage the collection of performance data. To use handles to data sources, use the PdhOpenQueryH function. # PSAPI.DLL # -# Name Actual DLL Hint Arity -imp 'EmptyWorkingSet' EmptyWorkingSet psapi 0 -imp 'EnumDeviceDrivers' EnumDeviceDrivers psapi 0 -imp 'EnumPageFiles' EnumPageFilesW psapi 0 -imp 'EnumProcessModules' EnumProcessModules psapi 0 -imp 'EnumProcessModulesEx' EnumProcessModulesEx psapi 0 -imp 'EnumProcesses' EnumProcesses psapi 0 -imp 'GetDeviceDriverBaseName' GetDeviceDriverBaseNameW psapi 0 -imp 'GetDeviceDriverFileName' GetDeviceDriverFileNameW psapi 0 -imp 'GetMappedFileName' GetMappedFileNameW psapi 0 -imp 'GetModuleBaseName' GetModuleBaseNameW psapi 0 -imp 'GetModuleFileNameEx' GetModuleFileNameExW psapi 0 -imp 'GetModuleInformation' GetModuleInformation psapi 0 -imp 'GetPerformanceInfo' GetPerformanceInfo psapi 0 -imp 'GetProcessImageFileName' GetProcessImageFileNameW psapi 0 3 -imp 'GetProcessMemoryInfo' GetProcessMemoryInfo psapi 0 3 -imp 'GetWsChanges' GetWsChanges psapi 0 -imp 'GetWsChangesEx' GetWsChangesEx psapi 0 -imp 'InitializeProcessForWsWatch' InitializeProcessForWsWatch psapi 0 -imp 'QueryWorkingSet' QueryWorkingSet psapi 0 -imp 'QueryWorkingSetEx' QueryWorkingSetEx psapi 0 - -# URL.DLL -# -# Name Actual DLL Hint Arity -imp 'OpenURL' OpenURL url 111 -imp 'TelnetProtocolHandler' TelnetProtocolHandler url 113 -imp 'TranslateURLW' TranslateURLW url 116 -imp 'URLAssociationDialog' URLAssociationDialogW url 118 -imp 'AddMIMEFileTypesPS' AddMIMEFileTypesPS url 102 -imp 'AutodialHookCallback' AutodialHookCallback url 103 -imp 'FileProtocolHandler' FileProtocolHandler url 104 -imp 'InetIsOffline' InetIsOffline url 106 -imp 'MIMEAssociationDialog' MIMEAssociationDialogW url 108 -imp 'MailToProtocolHandler' MailToProtocolHandler url 109 +# Name Actual DLL Arity +imp 'GetProcessImageFileName' GetProcessImageFileNameW psapi 3 +imp 'GetProcessMemoryInfo' GetProcessMemoryInfo psapi 3 # API-MS-Win-Core-Synch-l1-2-0.dll (Windows 8+) # -# Name Actual DLL Hint Arity -imp 'WaitOnAddress' WaitOnAddress API-MS-Win-Core-Synch-l1-2-0 111 4 -imp 'WakeByAddressAll' WakeByAddressAll API-MS-Win-Core-Synch-l1-2-0 113 1 -imp 'WakeByAddressSingle' WakeByAddressSingle API-MS-Win-Core-Synch-l1-2-0 116 1 +# Name Actual DLL Arity +imp 'WaitOnAddress' WaitOnAddress API-MS-Win-Core-Synch-l1-2-0 4 +imp 'WakeByAddressAll' WakeByAddressAll API-MS-Win-Core-Synch-l1-2-0 1 +imp 'WakeByAddressSingle' WakeByAddressSingle API-MS-Win-Core-Synch-l1-2-0 1 # NTDLL.DLL # BEYOND THE PALE @@ -3568,2129 +618,124 @@ imp 'WakeByAddressSingle' WakeByAddressSingle API-MS-Win-Core-Synch-l1-2 # Windows to the next, and possibly even between service packs for # each release.” ──Quoth MSDN # -# Name Actual DLL Hint Arity -imp 'AlpcAdjustCompletionListConcurrencyCount' AlpcAdjustCompletionListConcurrencyCount ntdll 12 -imp 'AlpcFreeCompletionListMessage' AlpcFreeCompletionListMessage ntdll 13 -imp 'AlpcGetCompletionListLastMessageInformation' AlpcGetCompletionListLastMessageInformation ntdll 14 -imp 'AlpcGetCompletionListMessageAttributes' AlpcGetCompletionListMessageAttributes ntdll 15 -imp 'AlpcGetHeaderSize' AlpcGetHeaderSize ntdll 16 -imp 'AlpcGetMessageAttribute' AlpcGetMessageAttribute ntdll 17 -imp 'AlpcGetMessageFromCompletionList' AlpcGetMessageFromCompletionList ntdll 18 -imp 'AlpcGetOutstandingCompletionListMessageCount' AlpcGetOutstandingCompletionListMessageCount ntdll 19 -imp 'AlpcInitializeMessageAttribute' AlpcInitializeMessageAttribute ntdll 20 -imp 'AlpcMaxAllowedMessageLength' AlpcMaxAllowedMessageLength ntdll 21 -imp 'AlpcRegisterCompletionList' AlpcRegisterCompletionList ntdll 22 -imp 'AlpcRegisterCompletionListWorkerThread' AlpcRegisterCompletionListWorkerThread ntdll 23 -imp 'AlpcRundownCompletionList' AlpcRundownCompletionList ntdll 24 -imp 'AlpcUnregisterCompletionList' AlpcUnregisterCompletionList ntdll 25 -imp 'AlpcUnregisterCompletionListWorkerThread' AlpcUnregisterCompletionListWorkerThread ntdll 26 -imp 'ApiSetQueryApiSetPresence' ApiSetQueryApiSetPresence ntdll 27 -imp 'CsrAllocateCaptureBuffer' CsrAllocateCaptureBuffer ntdll 28 -imp 'CsrAllocateMessagePointer' CsrAllocateMessagePointer ntdll 29 -imp 'CsrCaptureMessageBuffer' CsrCaptureMessageBuffer ntdll 30 -imp 'CsrCaptureMessageMultiUnicodeStringsInPlace' CsrCaptureMessageMultiUnicodeStringsInPlace ntdll 31 -imp 'CsrCaptureMessageString' CsrCaptureMessageString ntdll 32 -imp 'CsrCaptureTimeout' CsrCaptureTimeout ntdll 33 -imp 'CsrClientCallServer' CsrClientCallServer ntdll 34 4 -imp 'CsrClientConnectToServer' CsrClientConnectToServer ntdll 35 -imp 'CsrFreeCaptureBuffer' CsrFreeCaptureBuffer ntdll 36 -imp 'CsrGetProcessId' CsrGetProcessId ntdll 37 -imp 'CsrIdentifyAlertableThread' CsrIdentifyAlertableThread ntdll 38 -imp 'CsrSetPriorityClass' CsrSetPriorityClass ntdll 39 -imp 'CsrVerifyRegion' CsrVerifyRegion ntdll 40 -imp 'DbgBreakPoint' DbgBreakPoint ntdll 41 -imp 'DbgPrint' DbgPrint ntdll 42 -imp 'DbgPrintEx' DbgPrintEx ntdll 43 -imp 'DbgPrintReturnControlC' DbgPrintReturnControlC ntdll 44 -imp 'DbgPrompt' DbgPrompt ntdll 45 -imp 'DbgQueryDebugFilterState' DbgQueryDebugFilterState ntdll 46 -imp 'DbgSetDebugFilterState' DbgSetDebugFilterState ntdll 47 -imp 'DbgUiConnectToDbg' DbgUiConnectToDbg ntdll 48 -imp 'DbgUiContinue' DbgUiContinue ntdll 49 -imp 'DbgUiConvertStateChangeStructure' DbgUiConvertStateChangeStructure ntdll 50 -imp 'DbgUiConvertStateChangeStructureEx' DbgUiConvertStateChangeStructureEx ntdll 51 -imp 'DbgUiDebugActiveProcess' DbgUiDebugActiveProcess ntdll 52 -imp 'DbgUiGetThreadDebugObject' DbgUiGetThreadDebugObject ntdll 53 -imp 'DbgUiIssueRemoteBreakin' DbgUiIssueRemoteBreakin ntdll 54 -imp 'DbgUiRemoteBreakin' DbgUiRemoteBreakin ntdll 55 -imp 'DbgUiSetThreadDebugObject' DbgUiSetThreadDebugObject ntdll 56 -imp 'DbgUiStopDebugging' DbgUiStopDebugging ntdll 57 -imp 'DbgUiWaitStateChange' DbgUiWaitStateChange ntdll 58 -imp 'DbgUserBreakPoint' DbgUserBreakPoint ntdll 59 -imp 'EtwCheckCoverage' EtwCheckCoverage ntdll 60 -imp 'EtwCreateTraceInstanceId' EtwCreateTraceInstanceId ntdll 61 -imp 'EtwDeliverDataBlock' EtwDeliverDataBlock ntdll 62 -imp 'EtwEnumerateProcessRegGuids' EtwEnumerateProcessRegGuids ntdll 63 -imp 'EtwEventActivityIdControl' EtwEventActivityIdControl ntdll 64 -imp 'EtwEventEnabled' EtwEventEnabled ntdll 65 -imp 'EtwEventProviderEnabled' EtwEventProviderEnabled ntdll 66 -imp 'EtwEventRegister' EtwEventRegister ntdll 67 -imp 'EtwEventSetInformation' EtwEventSetInformation ntdll 68 -imp 'EtwEventUnregister' EtwEventUnregister ntdll 69 -imp 'EtwEventWrite' EtwEventWrite ntdll 70 -imp 'EtwEventWriteEndScenario' EtwEventWriteEndScenario ntdll 71 -imp 'EtwEventWriteEx' EtwEventWriteEx ntdll 72 -imp 'EtwEventWriteFull' EtwEventWriteFull ntdll 73 -imp 'EtwEventWriteNoRegistration' EtwEventWriteNoRegistration ntdll 74 -imp 'EtwEventWriteStartScenario' EtwEventWriteStartScenario ntdll 75 -imp 'EtwEventWriteString' EtwEventWriteString ntdll 76 -imp 'EtwEventWriteTransfer' EtwEventWriteTransfer ntdll 77 -imp 'EtwGetTraceEnableFlags' EtwGetTraceEnableFlags ntdll 78 -imp 'EtwGetTraceEnableLevel' EtwGetTraceEnableLevel ntdll 79 -imp 'EtwGetTraceLoggerHandle' EtwGetTraceLoggerHandle ntdll 80 -imp 'EtwLogTraceEvent' EtwLogTraceEvent ntdll 81 -imp 'EtwNotificationRegister' EtwNotificationRegister ntdll 82 -imp 'EtwNotificationUnregister' EtwNotificationUnregister ntdll 83 -imp 'EtwProcessPrivateLoggerRequest' EtwProcessPrivateLoggerRequest ntdll 84 -imp 'EtwRegisterSecurityProvider' EtwRegisterSecurityProvider ntdll 85 -imp 'EtwRegisterTraceGuids' EtwRegisterTraceGuidsW ntdll 87 -imp 'EtwReplyNotification' EtwReplyNotification ntdll 88 -imp 'EtwSendNotification' EtwSendNotification ntdll 89 -imp 'EtwSetMark' EtwSetMark ntdll 90 -imp 'EtwTraceEventInstance' EtwTraceEventInstance ntdll 91 -imp 'EtwTraceMessage' EtwTraceMessage ntdll 92 -imp 'EtwTraceMessageVa' EtwTraceMessageVa ntdll 93 -imp 'EtwUnregisterTraceGuids' EtwUnregisterTraceGuids ntdll 94 -imp 'EtwWriteUMSecurityEvent' EtwWriteUMSecurityEvent ntdll 95 -imp 'EtwpCreateEtwThread' EtwpCreateEtwThread ntdll 96 -imp 'EtwpGetCpuSpeed' EtwpGetCpuSpeed ntdll 97 -imp 'EvtIntReportAuthzEventAndSourceAsync' EvtIntReportAuthzEventAndSourceAsync ntdll 98 -imp 'EvtIntReportEventAndSourceAsync' EvtIntReportEventAndSourceAsync ntdll 99 -imp 'ExpInterlockedPopEntrySListEnd' ExpInterlockedPopEntrySListEnd ntdll 100 -imp 'ExpInterlockedPopEntrySListFault' ExpInterlockedPopEntrySListFault ntdll 101 -imp 'ExpInterlockedPopEntrySListResume' ExpInterlockedPopEntrySListResume ntdll 102 -imp 'KiRaiseUserExceptionDispatcher' KiRaiseUserExceptionDispatcher ntdll 103 -imp 'KiUserApcDispatcher' KiUserApcDispatcher ntdll 104 -imp 'KiUserCallbackDispatcher' KiUserCallbackDispatcher ntdll 105 -imp 'KiUserExceptionDispatcher' KiUserExceptionDispatcher ntdll 106 -imp 'KiUserInvertedFunctionTable' KiUserInvertedFunctionTable ntdll 107 -imp 'LdrAccessResource' LdrAccessResource ntdll 108 -imp 'LdrAddDllDirectory' LdrAddDllDirectory ntdll 109 -imp 'LdrAddLoadAsDataTable' LdrAddLoadAsDataTable ntdll 110 -imp 'LdrAddRefDll' LdrAddRefDll ntdll 111 -imp 'LdrAppxHandleIntegrityFailure' LdrAppxHandleIntegrityFailure ntdll 112 -imp 'LdrCallEnclave' LdrCallEnclave ntdll 113 -imp 'LdrControlFlowGuardEnforced' LdrControlFlowGuardEnforced ntdll 114 -imp 'LdrCreateEnclave' LdrCreateEnclave ntdll 115 -imp 'LdrDeleteEnclave' LdrDeleteEnclave ntdll 116 -imp 'LdrDisableThreadCalloutsForDll' LdrDisableThreadCalloutsForDll ntdll 117 -imp 'LdrEnumResources' LdrEnumResources ntdll 118 -imp 'LdrEnumerateLoadedModules' LdrEnumerateLoadedModules ntdll 119 -imp 'LdrFastFailInLoaderCallout' LdrFastFailInLoaderCallout ntdll 120 -imp 'LdrFindEntryForAddress' LdrFindEntryForAddress ntdll 121 -imp 'LdrFindResourceDirectory_U' LdrFindResourceDirectory_U ntdll 122 -imp 'LdrFindResourceEx_U' LdrFindResourceEx_U ntdll 123 -imp 'LdrFindResource_U' LdrFindResource_U ntdll 124 -imp 'LdrFlushAlternateResourceModules' LdrFlushAlternateResourceModules ntdll 125 -imp 'LdrGetDllDirectory' LdrGetDllDirectory ntdll 126 -imp 'LdrGetDllFullName' LdrGetDllFullName ntdll 127 -imp 'LdrGetDllHandle' LdrGetDllHandle ntdll 128 4 -imp 'LdrGetDllHandleByMapping' LdrGetDllHandleByMapping ntdll 129 -imp 'LdrGetDllHandleByName' LdrGetDllHandleByName ntdll 130 -imp 'LdrGetDllHandleEx' LdrGetDllHandleEx ntdll 131 -imp 'LdrGetDllPath' LdrGetDllPath ntdll 132 -imp 'LdrGetFailureData' LdrGetFailureData ntdll 133 -imp 'LdrGetFileNameFromLoadAsDataTable' LdrGetFileNameFromLoadAsDataTable ntdll 134 -imp 'LdrGetKnownDllSectionHandle' LdrGetKnownDllSectionHandle ntdll 135 -imp 'LdrGetProcedureAddress' LdrGetProcedureAddress ntdll 136 4 -imp 'LdrGetProcedureAddressEx' LdrGetProcedureAddressEx ntdll 137 -imp 'LdrGetProcedureAddressForCaller' LdrGetProcedureAddressForCaller ntdll 138 -imp 'LdrInitShimEngineDynamic' LdrInitShimEngineDynamic ntdll 139 -imp 'LdrInitializeEnclave' LdrInitializeEnclave ntdll 140 -imp 'LdrInitializeThunk' LdrInitializeThunk ntdll 141 -imp 'LdrLoadAlternateResourceModule' LdrLoadAlternateResourceModule ntdll 142 -imp 'LdrLoadAlternateResourceModuleEx' LdrLoadAlternateResourceModuleEx ntdll 143 -imp 'LdrLoadDll' LdrLoadDll ntdll 144 4 -imp 'LdrLoadEnclaveModule' LdrLoadEnclaveModule ntdll 145 -imp 'LdrLockLoaderLock' LdrLockLoaderLock ntdll 146 -imp 'LdrOpenImageFileOptionsKey' LdrOpenImageFileOptionsKey ntdll 147 -imp 'LdrProcessInitializationComplete' LdrProcessInitializationComplete ntdll 148 -imp 'LdrProcessRelocationBlock' LdrProcessRelocationBlock ntdll 149 -imp 'LdrProcessRelocationBlockEx' LdrProcessRelocationBlockEx ntdll 150 -imp 'LdrQueryImageFileExecutionOptions' LdrQueryImageFileExecutionOptions ntdll 151 -imp 'LdrQueryImageFileExecutionOptionsEx' LdrQueryImageFileExecutionOptionsEx ntdll 152 -imp 'LdrQueryImageFileKeyOption' LdrQueryImageFileKeyOption ntdll 153 -imp 'LdrQueryModuleServiceTags' LdrQueryModuleServiceTags ntdll 154 -imp 'LdrQueryOptionalDelayLoadedAPI' LdrQueryOptionalDelayLoadedAPI ntdll 155 -imp 'LdrQueryProcessModuleInformation' LdrQueryProcessModuleInformation ntdll 156 -imp 'LdrRegisterDllNotification' LdrRegisterDllNotification ntdll 157 -imp 'LdrRemoveDllDirectory' LdrRemoveDllDirectory ntdll 158 -imp 'LdrRemoveLoadAsDataTable' LdrRemoveLoadAsDataTable ntdll 159 -imp 'LdrResFindResource' LdrResFindResource ntdll 160 -imp 'LdrResFindResourceDirectory' LdrResFindResourceDirectory ntdll 161 -imp 'LdrResGetRCConfig' LdrResGetRCConfig ntdll 162 -imp 'LdrResRelease' LdrResRelease ntdll 163 -imp 'LdrResSearchResource' LdrResSearchResource ntdll 164 -imp 'LdrResolveDelayLoadedAPI' LdrResolveDelayLoadedAPI ntdll 165 -imp 'LdrResolveDelayLoadsFromDll' LdrResolveDelayLoadsFromDll ntdll 166 -imp 'LdrRscIsTypeExist' LdrRscIsTypeExist ntdll 167 -imp 'LdrSetAppCompatDllRedirectionCallback' LdrSetAppCompatDllRedirectionCallback ntdll 168 -imp 'LdrSetDefaultDllDirectories' LdrSetDefaultDllDirectories ntdll 169 -imp 'LdrSetDllDirectory' LdrSetDllDirectory ntdll 170 -imp 'LdrSetDllManifestProber' LdrSetDllManifestProber ntdll 171 -imp 'LdrSetImplicitPathOptions' LdrSetImplicitPathOptions ntdll 172 -imp 'LdrSetMUICacheType' LdrSetMUICacheType ntdll 173 -imp 'LdrShutdownProcess' LdrShutdownProcess ntdll 174 -imp 'LdrShutdownThread' LdrShutdownThread ntdll 175 -imp 'LdrStandardizeSystemPath' LdrStandardizeSystemPath ntdll 176 -imp 'LdrSystemDllInitBlock' LdrSystemDllInitBlock ntdll 177 -imp 'LdrUnloadAlternateResourceModule' LdrUnloadAlternateResourceModule ntdll 178 -imp 'LdrUnloadAlternateResourceModuleEx' LdrUnloadAlternateResourceModuleEx ntdll 179 -imp 'LdrUnloadDll' LdrUnloadDll ntdll 180 1 -imp 'LdrUnlockLoaderLock' LdrUnlockLoaderLock ntdll 181 -imp 'LdrUnregisterDllNotification' LdrUnregisterDllNotification ntdll 182 -imp 'LdrUpdatePackageSearchPath' LdrUpdatePackageSearchPath ntdll 183 -imp 'LdrVerifyImageMatchesChecksum' LdrVerifyImageMatchesChecksum ntdll 184 -imp 'LdrVerifyImageMatchesChecksumEx' LdrVerifyImageMatchesChecksumEx ntdll 185 -imp 'LdrpResGetMappingSize' LdrpResGetMappingSize ntdll 186 -imp 'LdrpResGetResourceDirectory' LdrpResGetResourceDirectory ntdll 187 -imp 'MD4Final' MD4Final ntdll 188 -imp 'MD4Init' MD4Init ntdll 189 -imp 'MD4Update' MD4Update ntdll 190 -imp 'NlsAnsiCodePage' NlsAnsiCodePage ntdll 194 -imp 'NlsMbCodePageTag' NlsMbCodePageTag ntdll 195 -imp 'NlsMbOemCodePageTag' NlsMbOemCodePageTag ntdll 196 -imp 'NtAcceptConnectPort' NtAcceptConnectPort ntdll 197 -imp 'NtAccessCheck' NtAccessCheck ntdll 198 -imp 'NtAccessCheckAndAuditAlarm' NtAccessCheckAndAuditAlarm ntdll 199 -imp 'NtAccessCheckByType' NtAccessCheckByType ntdll 200 -imp 'NtAccessCheckByTypeAndAuditAlarm' NtAccessCheckByTypeAndAuditAlarm ntdll 201 -imp 'NtAccessCheckByTypeResultList' NtAccessCheckByTypeResultList ntdll 202 -imp 'NtAccessCheckByTypeResultListAndAuditAlarm' NtAccessCheckByTypeResultListAndAuditAlarm ntdll 203 -imp 'NtAccessCheckByTypeResultListAndAuditAlarmByHandle' NtAccessCheckByTypeResultListAndAuditAlarmByHandle ntdll 204 -imp 'NtAcquireProcessActivityReference' NtAcquireProcessActivityReference ntdll 205 -imp 'NtAddAtom' NtAddAtom ntdll 206 -imp 'NtAddAtomEx' NtAddAtomEx ntdll 207 -imp 'NtAddBootEntry' NtAddBootEntry ntdll 208 -imp 'NtAddDriverEntry' NtAddDriverEntry ntdll 209 -imp 'NtAdjustGroupsToken' NtAdjustGroupsToken ntdll 210 -imp 'NtAdjustPrivilegesToken' NtAdjustPrivilegesToken ntdll 211 -imp 'NtAdjustTokenClaimsAndDeviceGroups' NtAdjustTokenClaimsAndDeviceGroups ntdll 212 -imp 'NtAlertResumeThread' NtAlertResumeThread ntdll 213 -imp 'NtAlertThread' NtAlertThread ntdll 214 -imp 'NtAlertThreadByThreadId' NtAlertThreadByThreadId ntdll 215 -imp 'NtAllocateLocallyUniqueId' NtAllocateLocallyUniqueId ntdll 216 -imp 'NtAllocateReserveObject' NtAllocateReserveObject ntdll 217 -imp 'NtAllocateUserPhysicalPages' NtAllocateUserPhysicalPages ntdll 218 -imp 'NtAllocateUuids' NtAllocateUuids ntdll 219 -imp 'NtAllocateVirtualMemory' NtAllocateVirtualMemory ntdll 220 6 -imp 'NtAllocateVirtualMemoryEx' NtAllocateVirtualMemoryEx ntdll 221 -imp 'NtAlpcAcceptConnectPort' NtAlpcAcceptConnectPort ntdll 222 -imp 'NtAlpcCancelMessage' NtAlpcCancelMessage ntdll 223 -imp 'NtAlpcConnectPort' NtAlpcConnectPort ntdll 224 -imp 'NtAlpcConnectPortEx' NtAlpcConnectPortEx ntdll 225 -imp 'NtAlpcCreatePort' NtAlpcCreatePort ntdll 226 -imp 'NtAlpcCreatePortSection' NtAlpcCreatePortSection ntdll 227 -imp 'NtAlpcCreateResourceReserve' NtAlpcCreateResourceReserve ntdll 228 -imp 'NtAlpcCreateSectionView' NtAlpcCreateSectionView ntdll 229 -imp 'NtAlpcCreateSecurityContext' NtAlpcCreateSecurityContext ntdll 230 -imp 'NtAlpcDeletePortSection' NtAlpcDeletePortSection ntdll 231 -imp 'NtAlpcDeleteResourceReserve' NtAlpcDeleteResourceReserve ntdll 232 -imp 'NtAlpcDeleteSectionView' NtAlpcDeleteSectionView ntdll 233 -imp 'NtAlpcDeleteSecurityContext' NtAlpcDeleteSecurityContext ntdll 234 -imp 'NtAlpcDisconnectPort' NtAlpcDisconnectPort ntdll 235 -imp 'NtAlpcImpersonateClientContainerOfPort' NtAlpcImpersonateClientContainerOfPort ntdll 236 -imp 'NtAlpcImpersonateClientOfPort' NtAlpcImpersonateClientOfPort ntdll 237 -imp 'NtAlpcOpenSenderProcess' NtAlpcOpenSenderProcess ntdll 238 -imp 'NtAlpcOpenSenderThread' NtAlpcOpenSenderThread ntdll 239 -imp 'NtAlpcQueryInformation' NtAlpcQueryInformation ntdll 240 -imp 'NtAlpcQueryInformationMessage' NtAlpcQueryInformationMessage ntdll 241 -imp 'NtAlpcRevokeSecurityContext' NtAlpcRevokeSecurityContext ntdll 242 -imp 'NtAlpcSendWaitReceivePort' NtAlpcSendWaitReceivePort ntdll 243 -imp 'NtAlpcSetInformation' NtAlpcSetInformation ntdll 244 -imp 'NtApphelpCacheControl' NtApphelpCacheControl ntdll 245 -imp 'NtAreMappedFilesTheSame' NtAreMappedFilesTheSame ntdll 246 -imp 'NtAssignProcessToJobObject' NtAssignProcessToJobObject ntdll 247 -imp 'NtAssociateWaitCompletionPacket' NtAssociateWaitCompletionPacket ntdll 248 -imp 'NtCallEnclave' NtCallEnclave ntdll 249 -imp 'NtCallbackReturn' NtCallbackReturn ntdll 250 3 -imp 'NtCancelIoFile' NtCancelIoFile ntdll 251 2 -imp 'NtCancelIoFileEx' NtCancelIoFileEx ntdll 252 3 -imp 'NtCancelSynchronousIoFile' NtCancelSynchronousIoFile ntdll 253 -imp 'NtCancelTimer' NtCancelTimer ntdll 254 -imp 'NtCancelTimer2' NtCancelTimer2 ntdll 255 -imp 'NtCancelWaitCompletionPacket' NtCancelWaitCompletionPacket ntdll 256 -imp 'NtClearEvent' NtClearEvent ntdll 257 1 -imp 'NtClose' NtClose ntdll 258 1 -imp 'NtCloseObjectAuditAlarm' NtCloseObjectAuditAlarm ntdll 259 -imp 'NtCommitComplete' NtCommitComplete ntdll 260 -imp 'NtCommitEnlistment' NtCommitEnlistment ntdll 261 -imp 'NtCommitRegistryTransaction' NtCommitRegistryTransaction ntdll 262 -imp 'NtCommitTransaction' NtCommitTransaction ntdll 263 -imp 'NtCompactKeys' NtCompactKeys ntdll 264 -imp 'NtCompareObjects' NtCompareObjects ntdll 265 -imp 'NtCompareSigningLevels' NtCompareSigningLevels ntdll 266 -imp 'NtCompareTokens' NtCompareTokens ntdll 267 -imp 'NtCompleteConnectPort' NtCompleteConnectPort ntdll 268 -imp 'NtCompressKey' NtCompressKey ntdll 269 -imp 'NtConnectPort' NtConnectPort ntdll 270 -imp 'NtContinue' NtContinue ntdll 271 2 -imp 'NtConvertBetweenAuxiliaryCounterAndPerformanceCounter' NtConvertBetweenAuxiliaryCounterAndPerformanceCounter ntdll 272 -imp 'NtCreateDebugObject' NtCreateDebugObject ntdll 273 -imp 'NtCreateDirectoryObject' NtCreateDirectoryObject ntdll 274 3 -imp 'NtCreateDirectoryObjectEx' NtCreateDirectoryObjectEx ntdll 275 -imp 'NtCreateEnclave' NtCreateEnclave ntdll 276 -imp 'NtCreateEnlistment' NtCreateEnlistment ntdll 277 -imp 'NtCreateEvent' NtCreateEvent ntdll 278 5 -imp 'NtCreateEventPair' NtCreateEventPair ntdll 279 -imp 'NtCreateFile' NtCreateFile ntdll 280 11 -imp 'NtCreateIRTimer' NtCreateIRTimer ntdll 281 -imp 'NtCreateIoCompletion' NtCreateIoCompletion ntdll 282 4 -imp 'NtCreateJobObject' NtCreateJobObject ntdll 283 -imp 'NtCreateJobSet' NtCreateJobSet ntdll 284 -imp 'NtCreateKey' NtCreateKey ntdll 285 7 -imp 'NtCreateKeyTransacted' NtCreateKeyTransacted ntdll 286 -imp 'NtCreateKeyedEvent' NtCreateKeyedEvent ntdll 287 4 -imp 'NtCreateLowBoxToken' NtCreateLowBoxToken ntdll 288 -imp 'NtCreateMailslotFile' NtCreateMailslotFile ntdll 289 -imp 'NtCreateMutant' NtCreateMutant ntdll 290 -imp 'NtCreateNamedPipeFile' NtCreateNamedPipeFile ntdll 291 14 -imp 'NtCreatePagingFile' NtCreatePagingFile ntdll 292 -imp 'NtCreatePartition' NtCreatePartition ntdll 293 -imp 'NtCreatePort' NtCreatePort ntdll 294 -imp 'NtCreatePrivateNamespace' NtCreatePrivateNamespace ntdll 295 -imp 'NtCreateProcess' NtCreateProcess ntdll 296 8 -imp 'NtCreateProcessEx' NtCreateProcessEx ntdll 297 -imp 'NtCreateProfile' NtCreateProfile ntdll 298 9 -imp 'NtCreateProfileEx' NtCreateProfileEx ntdll 299 -imp 'NtCreateRegistryTransaction' NtCreateRegistryTransaction ntdll 300 -imp 'NtCreateResourceManager' NtCreateResourceManager ntdll 301 -imp 'NtCreateSection' NtCreateSection ntdll 302 7 -imp 'NtCreateSemaphore' NtCreateSemaphore ntdll 303 -imp 'NtCreateSymbolicLinkObject' NtCreateSymbolicLinkObject ntdll 304 -imp 'NtCreateThread' NtCreateThread ntdll 305 8 -imp 'NtCreateThreadEx' NtCreateThreadEx ntdll 306 -imp 'NtCreateTimer' NtCreateTimer ntdll 307 4 -imp 'NtCreateTimer2' NtCreateTimer2 ntdll 308 -imp 'NtCreateToken' NtCreateToken ntdll 309 -imp 'NtCreateTokenEx' NtCreateTokenEx ntdll 310 -imp 'NtCreateTransaction' NtCreateTransaction ntdll 311 -imp 'NtCreateTransactionManager' NtCreateTransactionManager ntdll 312 -imp 'NtCreateUserProcess' NtCreateUserProcess ntdll 313 -imp 'NtCreateWaitCompletionPacket' NtCreateWaitCompletionPacket ntdll 314 -imp 'NtCreateWaitablePort' NtCreateWaitablePort ntdll 315 -imp 'NtCreateWnfStateName' NtCreateWnfStateName ntdll 316 -imp 'NtCreateWorkerFactory' NtCreateWorkerFactory ntdll 317 -imp 'NtDebugActiveProcess' NtDebugActiveProcess ntdll 318 -imp 'NtDebugContinue' NtDebugContinue ntdll 319 -imp 'NtDelayExecution' NtDelayExecution ntdll 320 2 -imp 'NtDeleteAtom' NtDeleteAtom ntdll 321 -imp 'NtDeleteBootEntry' NtDeleteBootEntry ntdll 322 -imp 'NtDeleteDriverEntry' NtDeleteDriverEntry ntdll 323 -imp 'NtDeleteFile' NtDeleteFile ntdll 324 1 -imp 'NtDeleteKey' NtDeleteKey ntdll 325 1 -imp 'NtDeleteObjectAuditAlarm' NtDeleteObjectAuditAlarm ntdll 326 -imp 'NtDeletePrivateNamespace' NtDeletePrivateNamespace ntdll 327 -imp 'NtDeleteValueKey' NtDeleteValueKey ntdll 328 -imp 'NtDeleteWnfStateData' NtDeleteWnfStateData ntdll 329 -imp 'NtDeleteWnfStateName' NtDeleteWnfStateName ntdll 330 -imp 'NtDeviceIoControlFile' NtDeviceIoControlFile ntdll 331 10 -imp 'NtDisableLastKnownGood' NtDisableLastKnownGood ntdll 332 -imp 'NtDisplayString' NtDisplayString ntdll 333 -imp 'NtDrawText' NtDrawText ntdll 334 -imp 'NtDuplicateObject' NtDuplicateObject ntdll 335 7 -imp 'NtDuplicateToken' NtDuplicateToken ntdll 336 -imp 'NtEnableLastKnownGood' NtEnableLastKnownGood ntdll 337 -imp 'NtEnumerateBootEntries' NtEnumerateBootEntries ntdll 338 -imp 'NtEnumerateDriverEntries' NtEnumerateDriverEntries ntdll 339 -imp 'NtEnumerateKey' NtEnumerateKey ntdll 340 6 -imp 'NtEnumerateSystemEnvironmentValuesEx' NtEnumerateSystemEnvironmentValuesEx ntdll 341 -imp 'NtEnumerateTransactionObject' NtEnumerateTransactionObject ntdll 342 -imp 'NtEnumerateValueKey' NtEnumerateValueKey ntdll 343 6 -imp 'NtExtendSection' NtExtendSection ntdll 344 -imp 'NtFilterBootOption' NtFilterBootOption ntdll 345 -imp 'NtFilterToken' NtFilterToken ntdll 346 -imp 'NtFilterTokenEx' NtFilterTokenEx ntdll 347 -imp 'NtFindAtom' NtFindAtom ntdll 348 -imp 'NtFlushBuffersFile' NtFlushBuffersFile ntdll 349 2 -imp 'NtFlushBuffersFileEx' NtFlushBuffersFileEx ntdll 350 -imp 'NtFlushInstallUILanguage' NtFlushInstallUILanguage ntdll 351 -imp 'NtFlushInstructionCache' NtFlushInstructionCache ntdll 352 3 -imp 'NtFlushKey' NtFlushKey ntdll 353 1 -imp 'NtFlushProcessWriteBuffers' NtFlushProcessWriteBuffers ntdll 354 -imp 'NtFlushVirtualMemory' NtFlushVirtualMemory ntdll 355 4 -imp 'NtFlushWriteBuffer' NtFlushWriteBuffer ntdll 356 -imp 'NtFreeUserPhysicalPages' NtFreeUserPhysicalPages ntdll 357 -imp 'NtFreeVirtualMemory' NtFreeVirtualMemory ntdll 358 4 -imp 'NtFreezeRegistry' NtFreezeRegistry ntdll 359 -imp 'NtFreezeTransactions' NtFreezeTransactions ntdll 360 -imp 'NtFsControlFile' NtFsControlFile ntdll 361 10 -imp 'NtGetCachedSigningLevel' NtGetCachedSigningLevel ntdll 362 -imp 'NtGetCompleteWnfStateSubscription' NtGetCompleteWnfStateSubscription ntdll 363 -imp 'NtGetContextThread' NtGetContextThread ntdll 364 2 -imp 'NtGetCurrentProcessorNumber' NtGetCurrentProcessorNumber ntdll 365 -imp 'NtGetCurrentProcessorNumberEx' NtGetCurrentProcessorNumberEx ntdll 366 -imp 'NtGetDevicePowerState' NtGetDevicePowerState ntdll 367 -imp 'NtGetMUIRegistryInfo' NtGetMUIRegistryInfo ntdll 368 -imp 'NtGetNextProcess' NtGetNextProcess ntdll 369 -imp 'NtGetNextThread' NtGetNextThread ntdll 370 -imp 'NtGetNlsSectionPtr' NtGetNlsSectionPtr ntdll 371 -imp 'NtGetNotificationResourceManager' NtGetNotificationResourceManager ntdll 372 -imp 'NtGetTickCount' NtGetTickCount ntdll 373 -imp 'NtGetWriteWatch' NtGetWriteWatch ntdll 374 -imp 'NtImpersonateAnonymousToken' NtImpersonateAnonymousToken ntdll 375 -imp 'NtImpersonateClientOfPort' NtImpersonateClientOfPort ntdll 376 -imp 'NtImpersonateThread' NtImpersonateThread ntdll 377 -imp 'NtInitializeEnclave' NtInitializeEnclave ntdll 378 -imp 'NtInitializeNlsFiles' NtInitializeNlsFiles ntdll 379 -imp 'NtInitializeRegistry' NtInitializeRegistry ntdll 380 -imp 'NtInitiatePowerAction' NtInitiatePowerAction ntdll 381 -imp 'NtIsProcessInJob' NtIsProcessInJob ntdll 382 -imp 'NtIsSystemResumeAutomatic' NtIsSystemResumeAutomatic ntdll 383 -imp 'NtIsUILanguageComitted' NtIsUILanguageComitted ntdll 384 -imp 'NtListenPort' NtListenPort ntdll 385 -imp 'NtLoadDriver' NtLoadDriver ntdll 386 -imp 'NtLoadEnclaveData' NtLoadEnclaveData ntdll 387 -imp 'NtLoadHotPatch' NtLoadHotPatch ntdll 388 -imp 'NtLoadKey' NtLoadKey ntdll 389 -imp 'NtLoadKey2' NtLoadKey2 ntdll 390 -imp 'NtLoadKeyEx' NtLoadKeyEx ntdll 391 -imp 'NtLockFile' NtLockFile ntdll 392 -imp 'NtLockProductActivationKeys' NtLockProductActivationKeys ntdll 393 -imp 'NtLockRegistryKey' NtLockRegistryKey ntdll 394 -imp 'NtLockVirtualMemory' NtLockVirtualMemory ntdll 395 -imp 'NtMakePermanentObject' NtMakePermanentObject ntdll 396 -imp 'NtMakeTemporaryObject' NtMakeTemporaryObject ntdll 397 -imp 'NtManagePartition' NtManagePartition ntdll 398 -imp 'NtMapCMFModule' NtMapCMFModule ntdll 399 -imp 'NtMapUserPhysicalPages' NtMapUserPhysicalPages ntdll 400 -imp 'NtMapUserPhysicalPagesScatter' NtMapUserPhysicalPagesScatter ntdll 401 -imp 'NtMapViewOfSection' NtMapViewOfSection ntdll 402 10 -imp 'NtMapViewOfSectionEx' NtMapViewOfSectionEx ntdll 403 -imp 'NtModifyBootEntry' NtModifyBootEntry ntdll 404 -imp 'NtModifyDriverEntry' NtModifyDriverEntry ntdll 405 -imp 'NtNotifyChangeDirectoryFile' NtNotifyChangeDirectoryFile ntdll 406 -imp 'NtNotifyChangeDirectoryFileEx' NtNotifyChangeDirectoryFileEx ntdll 407 -imp 'NtNotifyChangeKey' NtNotifyChangeKey ntdll 408 -imp 'NtNotifyChangeMultipleKeys' NtNotifyChangeMultipleKeys ntdll 409 -imp 'NtNotifyChangeSession' NtNotifyChangeSession ntdll 410 -imp 'NtOpenDirectoryObject' NtOpenDirectoryObject ntdll 411 3 -imp 'NtOpenEnlistment' NtOpenEnlistment ntdll 412 -imp 'NtOpenEvent' NtOpenEvent ntdll 413 -imp 'NtOpenEventPair' NtOpenEventPair ntdll 414 -imp 'NtOpenFile' NtOpenFile ntdll 415 6 -imp 'NtOpenIoCompletion' NtOpenIoCompletion ntdll 416 -imp 'NtOpenJobObject' NtOpenJobObject ntdll 417 -imp 'NtOpenKey' NtOpenKey ntdll 418 3 -imp 'NtOpenKeyEx' NtOpenKeyEx ntdll 419 -imp 'NtOpenKeyTransacted' NtOpenKeyTransacted ntdll 420 -imp 'NtOpenKeyTransactedEx' NtOpenKeyTransactedEx ntdll 421 -imp 'NtOpenKeyedEvent' NtOpenKeyedEvent ntdll 422 -imp 'NtOpenMutant' NtOpenMutant ntdll 423 -imp 'NtOpenObjectAuditAlarm' NtOpenObjectAuditAlarm ntdll 424 -imp 'NtOpenPartition' NtOpenPartition ntdll 425 -imp 'NtOpenPrivateNamespace' NtOpenPrivateNamespace ntdll 426 -imp 'NtOpenProcess' NtOpenProcess ntdll 427 4 -imp 'NtOpenProcessToken' NtOpenProcessToken ntdll 428 3 -imp 'NtOpenProcessTokenEx' NtOpenProcessTokenEx ntdll 429 -imp 'NtOpenRegistryTransaction' NtOpenRegistryTransaction ntdll 430 -imp 'NtOpenResourceManager' NtOpenResourceManager ntdll 431 -imp 'NtOpenSection' NtOpenSection ntdll 432 3 -imp 'NtOpenSemaphore' NtOpenSemaphore ntdll 433 -imp 'NtOpenSession' NtOpenSession ntdll 434 -imp 'NtOpenSymbolicLinkObject' NtOpenSymbolicLinkObject ntdll 435 3 -imp 'NtOpenThread' NtOpenThread ntdll 436 4 -imp 'NtOpenThreadToken' NtOpenThreadToken ntdll 437 4 -imp 'NtOpenThreadTokenEx' NtOpenThreadTokenEx ntdll 438 -imp 'NtOpenTimer' NtOpenTimer ntdll 439 -imp 'NtOpenTransaction' NtOpenTransaction ntdll 440 -imp 'NtOpenTransactionManager' NtOpenTransactionManager ntdll 441 -imp 'NtPlugPlayControl' NtPlugPlayControl ntdll 442 -imp 'NtPowerInformation' NtPowerInformation ntdll 443 -imp 'NtPrePrepareComplete' NtPrePrepareComplete ntdll 444 -imp 'NtPrePrepareEnlistment' NtPrePrepareEnlistment ntdll 445 -imp 'NtPrepareComplete' NtPrepareComplete ntdll 446 -imp 'NtPrepareEnlistment' NtPrepareEnlistment ntdll 447 -imp 'NtPrivilegeCheck' NtPrivilegeCheck ntdll 448 -imp 'NtPrivilegeObjectAuditAlarm' NtPrivilegeObjectAuditAlarm ntdll 449 -imp 'NtPrivilegedServiceAuditAlarm' NtPrivilegedServiceAuditAlarm ntdll 450 -imp 'NtPropagationComplete' NtPropagationComplete ntdll 451 -imp 'NtPropagationFailed' NtPropagationFailed ntdll 452 -imp 'NtProtectVirtualMemory' NtProtectVirtualMemory ntdll 453 5 -imp 'NtPulseEvent' NtPulseEvent ntdll 454 -imp 'NtQueryAttributesFile' NtQueryAttributesFile ntdll 455 2 -imp 'NtQueryAuxiliaryCounterFrequency' NtQueryAuxiliaryCounterFrequency ntdll 456 -imp 'NtQueryBootEntryOrder' NtQueryBootEntryOrder ntdll 457 -imp 'NtQueryBootOptions' NtQueryBootOptions ntdll 458 -imp 'NtQueryDebugFilterState' NtQueryDebugFilterState ntdll 459 -imp 'NtQueryDefaultLocale' NtQueryDefaultLocale ntdll 460 -imp 'NtQueryDefaultUILanguage' NtQueryDefaultUILanguage ntdll 461 -imp 'NtQueryDirectoryFile' NtQueryDirectoryFile ntdll 462 11 -imp 'NtQueryDirectoryFileEx' NtQueryDirectoryFileEx ntdll 463 -imp 'NtQueryDirectoryObject' NtQueryDirectoryObject ntdll 464 -imp 'NtQueryDriverEntryOrder' NtQueryDriverEntryOrder ntdll 465 -imp 'NtQueryEaFile' NtQueryEaFile ntdll 466 -imp 'NtQueryEvent' NtQueryEvent ntdll 467 -imp 'NtQueryFullAttributesFile' NtQueryFullAttributesFile ntdll 468 2 -imp 'NtQueryInformationAtom' NtQueryInformationAtom ntdll 469 -imp 'NtQueryInformationByName' NtQueryInformationByName ntdll 470 -imp 'NtQueryInformationEnlistment' NtQueryInformationEnlistment ntdll 471 -imp 'NtQueryInformationFile' NtQueryInformationFile ntdll 472 5 -imp 'NtQueryInformationJobObject' NtQueryInformationJobObject ntdll 473 5 -imp 'NtQueryInformationPort' NtQueryInformationPort ntdll 474 -imp 'NtQueryInformationProcess' NtQueryInformationProcess ntdll 475 5 -imp 'NtQueryInformationResourceManager' NtQueryInformationResourceManager ntdll 476 -imp 'NtQueryInformationThread' NtQueryInformationThread ntdll 477 5 -imp 'NtQueryInformationToken' NtQueryInformationToken ntdll 478 5 -imp 'NtQueryInformationTransaction' NtQueryInformationTransaction ntdll 479 -imp 'NtQueryInformationTransactionManager' NtQueryInformationTransactionManager ntdll 480 -imp 'NtQueryInformationWorkerFactory' NtQueryInformationWorkerFactory ntdll 481 -imp 'NtQueryInstallUILanguage' NtQueryInstallUILanguage ntdll 482 -imp 'NtQueryIntervalProfile' NtQueryIntervalProfile ntdll 483 2 -imp 'NtQueryIoCompletion' NtQueryIoCompletion ntdll 484 -imp 'NtQueryKey' NtQueryKey ntdll 485 -imp 'NtQueryLicenseValue' NtQueryLicenseValue ntdll 486 -imp 'NtQueryMultipleValueKey' NtQueryMultipleValueKey ntdll 487 -imp 'NtQueryMutant' NtQueryMutant ntdll 488 -imp 'NtQueryObject' NtQueryObject ntdll 489 5 -imp 'NtQueryOpenSubKeys' NtQueryOpenSubKeys ntdll 490 -imp 'NtQueryOpenSubKeysEx' NtQueryOpenSubKeysEx ntdll 491 -imp 'NtQueryPerformanceCounter' NtQueryPerformanceCounter ntdll 492 2 -imp 'NtQueryPortInformationProcess' NtQueryPortInformationProcess ntdll 493 -imp 'NtQueryQuotaInformationFile' NtQueryQuotaInformationFile ntdll 494 -imp 'NtQuerySection' NtQuerySection ntdll 495 5 -imp 'NtQuerySecurityAttributesToken' NtQuerySecurityAttributesToken ntdll 496 -imp 'NtQuerySecurityObject' NtQuerySecurityObject ntdll 497 5 -imp 'NtQuerySecurityPolicy' NtQuerySecurityPolicy ntdll 498 -imp 'NtQuerySemaphore' NtQuerySemaphore ntdll 499 -imp 'NtQuerySymbolicLinkObject' NtQuerySymbolicLinkObject ntdll 500 3 -imp 'NtQuerySystemEnvironmentValue' NtQuerySystemEnvironmentValue ntdll 501 -imp 'NtQuerySystemEnvironmentValueEx' NtQuerySystemEnvironmentValueEx ntdll 502 -imp 'NtQuerySystemInformation' NtQuerySystemInformation ntdll 503 4 -imp 'NtQuerySystemInformationEx' NtQuerySystemInformationEx ntdll 504 -imp 'NtQuerySystemTime' NtQuerySystemTime ntdll 505 1 -imp 'NtQueryTimer' NtQueryTimer ntdll 506 -imp 'NtQueryTimerResolution' NtQueryTimerResolution ntdll 507 -imp 'NtQueryValueKey' NtQueryValueKey ntdll 508 6 -imp 'NtQueryVirtualMemory' NtQueryVirtualMemory ntdll 509 6 -imp 'NtQueryVolumeInformationFile' NtQueryVolumeInformationFile ntdll 510 5 -imp 'NtQueryWnfStateData' NtQueryWnfStateData ntdll 511 -imp 'NtQueryWnfStateNameInformation' NtQueryWnfStateNameInformation ntdll 512 -imp 'NtQueueApcThread' NtQueueApcThread ntdll 513 5 -imp 'NtQueueApcThreadEx' NtQueueApcThreadEx ntdll 514 -imp 'NtRaiseException' NtRaiseException ntdll 515 3 -imp 'NtRaiseHardError' NtRaiseHardError ntdll 516 6 -imp 'NtReadFile' NtReadFile ntdll 517 9 -imp 'NtReadFileScatter' NtReadFileScatter ntdll 518 -imp 'NtReadOnlyEnlistment' NtReadOnlyEnlistment ntdll 519 -imp 'NtReadRequestData' NtReadRequestData ntdll 520 -imp 'NtReadVirtualMemory' NtReadVirtualMemory ntdll 521 5 -imp 'NtRecoverEnlistment' NtRecoverEnlistment ntdll 522 -imp 'NtRecoverResourceManager' NtRecoverResourceManager ntdll 523 -imp 'NtRecoverTransactionManager' NtRecoverTransactionManager ntdll 524 -imp 'NtRegisterProtocolAddressInformation' NtRegisterProtocolAddressInformation ntdll 525 -imp 'NtRegisterThreadTerminatePort' NtRegisterThreadTerminatePort ntdll 526 -imp 'NtReleaseKeyedEvent' NtReleaseKeyedEvent ntdll 527 4 -imp 'NtReleaseMutant' NtReleaseMutant ntdll 528 -imp 'NtReleaseSemaphore' NtReleaseSemaphore ntdll 529 -imp 'NtReleaseWorkerFactoryWorker' NtReleaseWorkerFactoryWorker ntdll 530 -imp 'NtRemoveIoCompletion' NtRemoveIoCompletion ntdll 531 -imp 'NtRemoveIoCompletionEx' NtRemoveIoCompletionEx ntdll 532 -imp 'NtRemoveProcessDebug' NtRemoveProcessDebug ntdll 533 -imp 'NtRenameKey' NtRenameKey ntdll 534 -imp 'NtRenameTransactionManager' NtRenameTransactionManager ntdll 535 -imp 'NtReplaceKey' NtReplaceKey ntdll 536 -imp 'NtReplacePartitionUnit' NtReplacePartitionUnit ntdll 537 -imp 'NtReplyPort' NtReplyPort ntdll 538 -imp 'NtReplyWaitReceivePort' NtReplyWaitReceivePort ntdll 539 -imp 'NtReplyWaitReceivePortEx' NtReplyWaitReceivePortEx ntdll 540 -imp 'NtReplyWaitReplyPort' NtReplyWaitReplyPort ntdll 541 -imp 'NtRequestPort' NtRequestPort ntdll 542 -imp 'NtRequestWaitReplyPort' NtRequestWaitReplyPort ntdll 543 -imp 'NtResetEvent' NtResetEvent ntdll 544 -imp 'NtResetWriteWatch' NtResetWriteWatch ntdll 545 -imp 'NtRestoreKey' NtRestoreKey ntdll 546 -imp 'NtResumeProcess' NtResumeProcess ntdll 547 -imp 'NtResumeThread' NtResumeThread ntdll 548 2 -imp 'NtRevertContainerImpersonation' NtRevertContainerImpersonation ntdll 549 -imp 'NtRollbackComplete' NtRollbackComplete ntdll 550 -imp 'NtRollbackEnlistment' NtRollbackEnlistment ntdll 551 -imp 'NtRollbackRegistryTransaction' NtRollbackRegistryTransaction ntdll 552 -imp 'NtRollbackTransaction' NtRollbackTransaction ntdll 553 -imp 'NtRollforwardTransactionManager' NtRollforwardTransactionManager ntdll 554 -imp 'NtSaveKey' NtSaveKey ntdll 555 -imp 'NtSaveKeyEx' NtSaveKeyEx ntdll 556 -imp 'NtSaveMergedKeys' NtSaveMergedKeys ntdll 557 -imp 'NtSecureConnectPort' NtSecureConnectPort ntdll 558 -imp 'NtSerializeBoot' NtSerializeBoot ntdll 559 -imp 'NtSetBootEntryOrder' NtSetBootEntryOrder ntdll 560 -imp 'NtSetBootOptions' NtSetBootOptions ntdll 561 -imp 'NtSetCachedSigningLevel' NtSetCachedSigningLevel ntdll 562 -imp 'NtSetCachedSigningLevel2' NtSetCachedSigningLevel2 ntdll 563 -imp 'NtSetContextThread' NtSetContextThread ntdll 564 2 -imp 'NtSetDebugFilterState' NtSetDebugFilterState ntdll 565 -imp 'NtSetDefaultHardErrorPort' NtSetDefaultHardErrorPort ntdll 566 -imp 'NtSetDefaultLocale' NtSetDefaultLocale ntdll 567 -imp 'NtSetDefaultUILanguage' NtSetDefaultUILanguage ntdll 568 -imp 'NtSetDriverEntryOrder' NtSetDriverEntryOrder ntdll 569 -imp 'NtSetEaFile' NtSetEaFile ntdll 570 -imp 'NtSetEvent' NtSetEvent ntdll 571 2 -imp 'NtSetEventBoostPriority' NtSetEventBoostPriority ntdll 572 -imp 'NtSetHighEventPair' NtSetHighEventPair ntdll 573 -imp 'NtSetHighWaitLowEventPair' NtSetHighWaitLowEventPair ntdll 574 -imp 'NtSetIRTimer' NtSetIRTimer ntdll 575 -imp 'NtSetInformationDebugObject' NtSetInformationDebugObject ntdll 576 -imp 'NtSetInformationEnlistment' NtSetInformationEnlistment ntdll 577 -imp 'NtSetInformationFile' NtSetInformationFile ntdll 578 5 -imp 'NtSetInformationJobObject' NtSetInformationJobObject ntdll 579 -imp 'NtSetInformationKey' NtSetInformationKey ntdll 580 -imp 'NtSetInformationObject' NtSetInformationObject ntdll 581 -imp 'NtSetInformationProcess' NtSetInformationProcess ntdll 582 -imp 'NtSetInformationResourceManager' NtSetInformationResourceManager ntdll 583 -imp 'NtSetInformationSymbolicLink' NtSetInformationSymbolicLink ntdll 584 -imp 'NtSetInformationThread' NtSetInformationThread ntdll 585 4 -imp 'NtSetInformationToken' NtSetInformationToken ntdll 586 -imp 'NtSetInformationTransaction' NtSetInformationTransaction ntdll 587 -imp 'NtSetInformationTransactionManager' NtSetInformationTransactionManager ntdll 588 -imp 'NtSetInformationVirtualMemory' NtSetInformationVirtualMemory ntdll 589 -imp 'NtSetInformationWorkerFactory' NtSetInformationWorkerFactory ntdll 590 -imp 'NtSetIntervalProfile' NtSetIntervalProfile ntdll 591 2 -imp 'NtSetIoCompletion' NtSetIoCompletion ntdll 592 -imp 'NtSetIoCompletionEx' NtSetIoCompletionEx ntdll 593 -imp 'NtSetLdtEntries' NtSetLdtEntries ntdll 594 -imp 'NtSetLowEventPair' NtSetLowEventPair ntdll 595 -imp 'NtSetLowWaitHighEventPair' NtSetLowWaitHighEventPair ntdll 596 -imp 'NtSetQuotaInformationFile' NtSetQuotaInformationFile ntdll 597 -imp 'NtSetSecurityObject' NtSetSecurityObject ntdll 598 -imp 'NtSetSystemEnvironmentValue' NtSetSystemEnvironmentValue ntdll 599 -imp 'NtSetSystemEnvironmentValueEx' NtSetSystemEnvironmentValueEx ntdll 600 -imp 'NtSetSystemInformation' NtSetSystemInformation ntdll 601 -imp 'NtSetSystemPowerState' NtSetSystemPowerState ntdll 602 -imp 'NtSetSystemTime' NtSetSystemTime ntdll 603 -imp 'NtSetThreadExecutionState' NtSetThreadExecutionState ntdll 604 -imp 'NtSetTimer' NtSetTimer ntdll 605 7 -imp 'NtSetTimer2' NtSetTimer2 ntdll 606 -imp 'NtSetTimerEx' NtSetTimerEx ntdll 607 -imp 'NtSetTimerResolution' NtSetTimerResolution ntdll 608 -imp 'NtSetUuidSeed' NtSetUuidSeed ntdll 609 -imp 'NtSetValueKey' NtSetValueKey ntdll 610 6 -imp 'NtSetVolumeInformationFile' NtSetVolumeInformationFile ntdll 611 -imp 'NtSetWnfProcessNotificationEvent' NtSetWnfProcessNotificationEvent ntdll 612 -imp 'NtShutdownSystem' NtShutdownSystem ntdll 613 -imp 'NtShutdownWorkerFactory' NtShutdownWorkerFactory ntdll 614 -imp 'NtSignalAndWaitForSingleObject' NtSignalAndWaitForSingleObject ntdll 615 4 -imp 'NtSinglePhaseReject' NtSinglePhaseReject ntdll 616 -imp 'NtStartProfile' NtStartProfile ntdll 617 1 -imp 'NtStopProfile' NtStopProfile ntdll 618 1 -imp 'NtSubscribeWnfStateChange' NtSubscribeWnfStateChange ntdll 619 -imp 'NtSuspendProcess' NtSuspendProcess ntdll 620 -imp 'NtSuspendThread' NtSuspendThread ntdll 621 2 -imp 'NtSystemDebugControl' NtSystemDebugControl ntdll 622 -imp 'NtTerminateEnclave' NtTerminateEnclave ntdll 623 -imp 'NtTerminateJobObject' NtTerminateJobObject ntdll 624 -imp 'NtTerminateProcess' NtTerminateProcess ntdll 625 2 -imp 'NtTerminateThread' NtTerminateThread ntdll 626 2 -imp 'NtTestAlert' NtTestAlert ntdll 627 0 -imp 'NtThawRegistry' NtThawRegistry ntdll 628 -imp 'NtThawTransactions' NtThawTransactions ntdll 629 -imp 'NtTraceControl' NtTraceControl ntdll 630 -imp 'NtTraceEvent' NtTraceEvent ntdll 631 -imp 'NtTranslateFilePath' NtTranslateFilePath ntdll 632 -imp 'NtUmsThreadYield' NtUmsThreadYield ntdll 633 -imp 'NtUnloadDriver' NtUnloadDriver ntdll 634 -imp 'NtUnloadKey' NtUnloadKey ntdll 635 -imp 'NtUnloadKey2' NtUnloadKey2 ntdll 636 -imp 'NtUnloadKeyEx' NtUnloadKeyEx ntdll 637 -imp 'NtUnlockFile' NtUnlockFile ntdll 638 -imp 'NtUnlockVirtualMemory' NtUnlockVirtualMemory ntdll 639 -imp 'NtUnmapViewOfSection' NtUnmapViewOfSection ntdll 640 2 -imp 'NtUnmapViewOfSectionEx' NtUnmapViewOfSectionEx ntdll 641 -imp 'NtUnsubscribeWnfStateChange' NtUnsubscribeWnfStateChange ntdll 642 -imp 'NtUpdateWnfStateData' NtUpdateWnfStateData ntdll 643 -imp 'NtVdm64CreateProcessInternal' NtVdm64CreateProcessInternalW kernel32 1016 -imp 'NtVdmControl' NtVdmControl ntdll 644 -imp 'NtWaitForAlertByThreadId' NtWaitForAlertByThreadId ntdll 645 -imp 'NtWaitForDebugEvent' NtWaitForDebugEvent ntdll 646 -imp 'NtWaitForKeyedEvent' NtWaitForKeyedEvent ntdll 647 4 -imp 'NtWaitForMultipleObjects' NtWaitForMultipleObjects ntdll 648 -imp 'NtWaitForMultipleObjects32' NtWaitForMultipleObjects32 ntdll 649 -imp 'NtWaitForSingleObject' NtWaitForSingleObject ntdll 650 3 -imp 'NtWaitForWorkViaWorkerFactory' NtWaitForWorkViaWorkerFactory ntdll 651 -imp 'NtWaitHighEventPair' NtWaitHighEventPair ntdll 652 -imp 'NtWaitLowEventPair' NtWaitLowEventPair ntdll 653 -imp 'NtWorkerFactoryWorkerReady' NtWorkerFactoryWorkerReady ntdll 654 -imp 'NtWriteFile' NtWriteFile ntdll 655 9 -imp 'NtWriteFileGather' NtWriteFileGather ntdll 656 -imp 'NtWriteRequestData' NtWriteRequestData ntdll 657 -imp 'NtWriteVirtualMemory' NtWriteVirtualMemory ntdll 658 5 -imp 'NtYieldExecution' NtYieldExecution ntdll 659 0 -imp 'NtdllDefWindowProc_W' NtdllDefWindowProc_W ntdll 661 -imp 'NtdllDialogWndProc_W' NtdllDialogWndProc_W ntdll 663 -imp 'PfxFindPrefix' PfxFindPrefix ntdll 664 -imp 'PfxInitialize' PfxInitialize ntdll 665 -imp 'PfxInsertPrefix' PfxInsertPrefix ntdll 666 -imp 'PfxRemovePrefix' PfxRemovePrefix ntdll 667 -imp 'PssNtCaptureSnapshot' PssNtCaptureSnapshot ntdll 668 -imp 'PssNtDuplicateSnapshot' PssNtDuplicateSnapshot ntdll 669 -imp 'PssNtFreeRemoteSnapshot' PssNtFreeRemoteSnapshot ntdll 670 -imp 'PssNtFreeSnapshot' PssNtFreeSnapshot ntdll 671 -imp 'PssNtFreeWalkMarker' PssNtFreeWalkMarker ntdll 672 -imp 'PssNtQuerySnapshot' PssNtQuerySnapshot ntdll 673 -imp 'PssNtValidateDescriptor' PssNtValidateDescriptor ntdll 674 -imp 'PssNtWalkSnapshot' PssNtWalkSnapshot ntdll 675 -imp 'RtlAbortRXact' RtlAbortRXact ntdll 676 -imp 'RtlAbsoluteToSelfRelativeSD' RtlAbsoluteToSelfRelativeSD ntdll 677 -imp 'RtlAcquirePebLock' RtlAcquirePebLock ntdll 678 -imp 'RtlAcquirePrivilege' RtlAcquirePrivilege ntdll 679 -imp 'RtlAcquireReleaseSRWLockExclusive' RtlAcquireReleaseSRWLockExclusive ntdll 680 -imp 'RtlAcquireResourceExclusive' RtlAcquireResourceExclusive ntdll 681 -imp 'RtlAcquireResourceShared' RtlAcquireResourceShared ntdll 682 -imp 'RtlAcquireSRWLockExclusive' RtlAcquireSRWLockExclusive ntdll 683 -imp 'RtlAcquireSRWLockShared' RtlAcquireSRWLockShared ntdll 684 -imp 'RtlActivateActivationContext' RtlActivateActivationContext ntdll 685 -imp 'RtlActivateActivationContextEx' RtlActivateActivationContextEx ntdll 686 -imp 'RtlActivateActivationContextUnsafeFast' RtlActivateActivationContextUnsafeFast ntdll 687 -imp 'RtlAddAccessAllowedAce' RtlAddAccessAllowedAce ntdll 688 -imp 'RtlAddAccessAllowedAceEx' RtlAddAccessAllowedAceEx ntdll 689 -imp 'RtlAddAccessAllowedObjectAce' RtlAddAccessAllowedObjectAce ntdll 690 -imp 'RtlAddAccessDeniedAce' RtlAddAccessDeniedAce ntdll 691 -imp 'RtlAddAccessDeniedAceEx' RtlAddAccessDeniedAceEx ntdll 692 -imp 'RtlAddAccessDeniedObjectAce' RtlAddAccessDeniedObjectAce ntdll 693 -imp 'RtlAddAccessFilterAce' RtlAddAccessFilterAce ntdll 694 -imp 'RtlAddAce' RtlAddAce ntdll 695 -imp 'RtlAddActionToRXact' RtlAddActionToRXact ntdll 696 -imp 'RtlAddAtomToAtomTable' RtlAddAtomToAtomTable ntdll 697 -imp 'RtlAddAttributeActionToRXact' RtlAddAttributeActionToRXact ntdll 698 -imp 'RtlAddAuditAccessAce' RtlAddAuditAccessAce ntdll 699 -imp 'RtlAddAuditAccessAceEx' RtlAddAuditAccessAceEx ntdll 700 -imp 'RtlAddAuditAccessObjectAce' RtlAddAuditAccessObjectAce ntdll 701 -imp 'RtlAddCompoundAce' RtlAddCompoundAce ntdll 702 -imp 'RtlAddFunctionTable' RtlAddFunctionTable ntdll 703 -imp 'RtlAddGrowableFunctionTable' RtlAddGrowableFunctionTable ntdll 704 -imp 'RtlAddIntegrityLabelToBoundaryDescriptor' RtlAddIntegrityLabelToBoundaryDescriptor ntdll 705 -imp 'RtlAddMandatoryAce' RtlAddMandatoryAce ntdll 706 -imp 'RtlAddProcessTrustLabelAce' RtlAddProcessTrustLabelAce ntdll 707 -imp 'RtlAddRefActivationContext' RtlAddRefActivationContext ntdll 708 -imp 'RtlAddRefMemoryStream' RtlAddRefMemoryStream ntdll 709 -imp 'RtlAddResourceAttributeAce' RtlAddResourceAttributeAce ntdll 710 -imp 'RtlAddSIDToBoundaryDescriptor' RtlAddSIDToBoundaryDescriptor ntdll 711 -imp 'RtlAddScopedPolicyIDAce' RtlAddScopedPolicyIDAce ntdll 712 -imp 'RtlAddVectoredContinueHandler' RtlAddVectoredContinueHandler ntdll 713 -imp 'RtlAddVectoredExceptionHandler' RtlAddVectoredExceptionHandler ntdll 714 -imp 'RtlAddressInSectionTable' RtlAddressInSectionTable ntdll 715 -imp 'RtlAdjustPrivilege' RtlAdjustPrivilege ntdll 716 -imp 'RtlAllocateActivationContextStack' RtlAllocateActivationContextStack ntdll 717 -imp 'RtlAllocateAndInitializeSid' RtlAllocateAndInitializeSid ntdll 718 -imp 'RtlAllocateAndInitializeSidEx' RtlAllocateAndInitializeSidEx ntdll 719 -imp 'RtlAllocateHandle' RtlAllocateHandle ntdll 720 -imp 'RtlAllocateHeap' RtlAllocateHeap ntdll 721 3 -imp 'RtlAllocateMemoryBlockLookaside' RtlAllocateMemoryBlockLookaside ntdll 722 -imp 'RtlAllocateMemoryZone' RtlAllocateMemoryZone ntdll 723 -imp 'RtlAllocateWnfSerializationGroup' RtlAllocateWnfSerializationGroup ntdll 724 -imp 'RtlAnsiCharToUnicodeChar' RtlAnsiCharToUnicodeChar ntdll 725 -imp 'RtlAnsiStringToUnicodeSize' RtlAnsiStringToUnicodeSize ntdll 726 -imp 'RtlAnsiStringToUnicodeString' RtlAnsiStringToUnicodeString ntdll 727 -imp 'RtlAppendAsciizToString' RtlAppendAsciizToString ntdll 728 -imp 'RtlAppendPathElement' RtlAppendPathElement ntdll 729 -imp 'RtlAppendStringToString' RtlAppendStringToString ntdll 730 -imp 'RtlAppendUnicodeStringToString' RtlAppendUnicodeStringToString ntdll 731 -imp 'RtlAppendUnicodeToString' RtlAppendUnicodeToString ntdll 732 -imp 'RtlApplicationVerifierStop' RtlApplicationVerifierStop ntdll 733 -imp 'RtlApplyRXact' RtlApplyRXact ntdll 734 -imp 'RtlApplyRXactNoFlush' RtlApplyRXactNoFlush ntdll 735 -imp 'RtlAppxIsFileOwnedByTrustedInstaller' RtlAppxIsFileOwnedByTrustedInstaller ntdll 736 -imp 'RtlAreAllAccessesGranted' RtlAreAllAccessesGranted ntdll 737 -imp 'RtlAreAnyAccessesGranted' RtlAreAnyAccessesGranted ntdll 738 -imp 'RtlAreBitsClear' RtlAreBitsClear ntdll 739 -imp 'RtlAreBitsSet' RtlAreBitsSet ntdll 740 -imp 'RtlAreLongPathsEnabled' RtlAreLongPathsEnabled ntdll 741 -imp 'RtlAssert' RtlAssert ntdll 742 -imp 'RtlAvlInsertNodeEx' RtlAvlInsertNodeEx ntdll 743 -imp 'RtlAvlRemoveNode' RtlAvlRemoveNode ntdll 744 -imp 'RtlBarrier' RtlBarrier ntdll 745 -imp 'RtlBarrierForDelete' RtlBarrierForDelete ntdll 746 -imp 'RtlCallEnclaveReturn' RtlCallEnclaveReturn ntdll 747 -imp 'RtlCancelTimer' RtlCancelTimer ntdll 748 -imp 'RtlCanonicalizeDomainName' RtlCanonicalizeDomainName ntdll 749 -imp 'RtlCapabilityCheck' RtlCapabilityCheck ntdll 750 -imp 'RtlCapabilityCheckForSingleSessionSku' RtlCapabilityCheckForSingleSessionSku ntdll 751 -imp 'RtlCaptureContext' RtlCaptureContext ntdll 752 -imp 'RtlCaptureStackBackTrace' RtlCaptureStackBackTrace ntdll 753 -imp 'RtlCharToInteger' RtlCharToInteger ntdll 754 -imp 'RtlCheckBootStatusIntegrity' RtlCheckBootStatusIntegrity ntdll 755 -imp 'RtlCheckForOrphanedCriticalSections' RtlCheckForOrphanedCriticalSections ntdll 756 -imp 'RtlCheckPortableOperatingSystem' RtlCheckPortableOperatingSystem ntdll 757 -imp 'RtlCheckRegistryKey' RtlCheckRegistryKey ntdll 758 -imp 'RtlCheckSandboxedToken' RtlCheckSandboxedToken ntdll 759 -imp 'RtlCheckSystemBootStatusIntegrity' RtlCheckSystemBootStatusIntegrity ntdll 760 -imp 'RtlCheckTokenCapability' RtlCheckTokenCapability ntdll 761 -imp 'RtlCheckTokenMembership' RtlCheckTokenMembership ntdll 762 -imp 'RtlCheckTokenMembershipEx' RtlCheckTokenMembershipEx ntdll 763 -imp 'RtlCleanUpTEBLangLists' RtlCleanUpTEBLangLists ntdll 764 -imp 'RtlClearAllBits' RtlClearAllBits ntdll 765 -imp 'RtlClearBit' RtlClearBit ntdll 766 -imp 'RtlClearBits' RtlClearBits ntdll 767 -imp 'RtlClearThreadWorkOnBehalfTicket' RtlClearThreadWorkOnBehalfTicket ntdll 768 -imp 'RtlCloneMemoryStream' RtlCloneMemoryStream ntdll 769 -imp 'RtlCloneUserProcess' RtlCloneUserProcess ntdll 770 5 -imp 'RtlCmDecodeMemIoResource' RtlCmDecodeMemIoResource ntdll 771 -imp 'RtlCmEncodeMemIoResource' RtlCmEncodeMemIoResource ntdll 772 -imp 'RtlCommitDebugInfo' RtlCommitDebugInfo ntdll 773 -imp 'RtlCommitMemoryStream' RtlCommitMemoryStream ntdll 774 -imp 'RtlCompactHeap' RtlCompactHeap ntdll 775 -imp 'RtlCompareAltitudes' RtlCompareAltitudes ntdll 776 -imp 'RtlCompareMemory' RtlCompareMemory ntdll 777 -imp 'RtlCompareMemoryUlong' RtlCompareMemoryUlong ntdll 778 -imp 'RtlCompareString' RtlCompareString ntdll 779 -imp 'RtlCompareUnicodeString' RtlCompareUnicodeString ntdll 780 -imp 'RtlCompareUnicodeStrings' RtlCompareUnicodeStrings ntdll 781 -imp 'RtlCompleteProcessCloning' RtlCompleteProcessCloning ntdll 782 -imp 'RtlCompressBuffer' RtlCompressBuffer ntdll 783 -imp 'RtlComputeCrc32' RtlComputeCrc32 ntdll 784 -imp 'RtlComputeImportTableHash' RtlComputeImportTableHash ntdll 785 -imp 'RtlComputePrivatizedDllName_U' RtlComputePrivatizedDllName_U ntdll 786 -imp 'RtlConnectToSm' RtlConnectToSm ntdll 787 -imp 'RtlConsoleMultiByteToUnicodeN' RtlConsoleMultiByteToUnicodeN ntdll 788 -imp 'RtlContractHashTable' RtlContractHashTable ntdll 789 -imp 'RtlConvertDeviceFamilyInfoToString' RtlConvertDeviceFamilyInfoToString ntdll 790 -imp 'RtlConvertExclusiveToShared' RtlConvertExclusiveToShared ntdll 791 -imp 'RtlConvertLCIDToString' RtlConvertLCIDToString ntdll 792 -imp 'RtlConvertSRWLockExclusiveToShared' RtlConvertSRWLockExclusiveToShared ntdll 793 -imp 'RtlConvertSharedToExclusive' RtlConvertSharedToExclusive ntdll 794 -imp 'RtlConvertSidToUnicodeString' RtlConvertSidToUnicodeString ntdll 795 3 -imp 'RtlConvertToAutoInheritSecurityObject' RtlConvertToAutoInheritSecurityObject ntdll 796 -imp 'RtlCopyBitMap' RtlCopyBitMap ntdll 797 -imp 'RtlCopyContext' RtlCopyContext ntdll 798 -imp 'RtlCopyExtendedContext' RtlCopyExtendedContext ntdll 799 -imp 'RtlCopyLuid' RtlCopyLuid ntdll 800 -imp 'RtlCopyLuidAndAttributesArray' RtlCopyLuidAndAttributesArray ntdll 801 -imp 'RtlCopyMappedMemory' RtlCopyMappedMemory ntdll 802 -imp 'RtlCopyMemory' RtlCopyMemory ntdll 803 -imp 'RtlCopyMemoryNonTemporal' RtlCopyMemoryNonTemporal ntdll 804 -imp 'RtlCopyMemoryStreamTo' RtlCopyMemoryStreamTo ntdll 805 -imp 'RtlCopyOutOfProcessMemoryStreamTo' RtlCopyOutOfProcessMemoryStreamTo ntdll 806 -imp 'RtlCopySecurityDescriptor' RtlCopySecurityDescriptor ntdll 807 -imp 'RtlCopySid' RtlCopySid ntdll 808 -imp 'RtlCopySidAndAttributesArray' RtlCopySidAndAttributesArray ntdll 809 -imp 'RtlCopyString' RtlCopyString ntdll 810 -imp 'RtlCopyUnicodeString' RtlCopyUnicodeString ntdll 811 -imp 'RtlCrc32' RtlCrc32 ntdll 812 -imp 'RtlCrc64' RtlCrc64 ntdll 813 -imp 'RtlCreateAcl' RtlCreateAcl ntdll 814 -imp 'RtlCreateActivationContext' RtlCreateActivationContext ntdll 815 -imp 'RtlCreateAndSetSD' RtlCreateAndSetSD ntdll 816 -imp 'RtlCreateAtomTable' RtlCreateAtomTable ntdll 817 -imp 'RtlCreateBootStatusDataFile' RtlCreateBootStatusDataFile ntdll 818 -imp 'RtlCreateBoundaryDescriptor' RtlCreateBoundaryDescriptor ntdll 819 -imp 'RtlCreateEnvironment' RtlCreateEnvironment ntdll 820 -imp 'RtlCreateEnvironmentEx' RtlCreateEnvironmentEx ntdll 821 -imp 'RtlCreateHashTable' RtlCreateHashTable ntdll 822 -imp 'RtlCreateHashTableEx' RtlCreateHashTableEx ntdll 823 -imp 'RtlCreateHeap' RtlCreateHeap ntdll 824 6 -imp 'RtlCreateMemoryBlockLookaside' RtlCreateMemoryBlockLookaside ntdll 825 -imp 'RtlCreateMemoryZone' RtlCreateMemoryZone ntdll 826 -imp 'RtlCreateProcessParameters' RtlCreateProcessParameters ntdll 827 10 -imp 'RtlCreateProcessParametersEx' RtlCreateProcessParametersEx ntdll 828 -imp 'RtlCreateProcessReflection' RtlCreateProcessReflection ntdll 829 -imp 'RtlCreateQueryDebugBuffer' RtlCreateQueryDebugBuffer ntdll 830 -imp 'RtlCreateRegistryKey' RtlCreateRegistryKey ntdll 831 -imp 'RtlCreateSecurityDescriptor' RtlCreateSecurityDescriptor ntdll 832 -imp 'RtlCreateServiceSid' RtlCreateServiceSid ntdll 833 -imp 'RtlCreateSystemVolumeInformationFolder' RtlCreateSystemVolumeInformationFolder ntdll 834 -imp 'RtlCreateTagHeap' RtlCreateTagHeap ntdll 835 -imp 'RtlCreateTimer' RtlCreateTimer ntdll 836 -imp 'RtlCreateTimerQueue' RtlCreateTimerQueue ntdll 837 -imp 'RtlCreateUmsCompletionList' RtlCreateUmsCompletionList ntdll 838 -imp 'RtlCreateUmsThreadContext' RtlCreateUmsThreadContext ntdll 839 -imp 'RtlCreateUnicodeString' RtlCreateUnicodeString ntdll 840 -imp 'RtlCreateUnicodeStringFromAsciiz' RtlCreateUnicodeStringFromAsciiz ntdll 841 -imp 'RtlCreateUserProcess' RtlCreateUserProcess ntdll 842 -imp 'RtlCreateUserProcessEx' RtlCreateUserProcessEx ntdll 843 -imp 'RtlCreateUserSecurityObject' RtlCreateUserSecurityObject ntdll 844 -imp 'RtlCreateUserStack' RtlCreateUserStack ntdll 845 -imp 'RtlCreateUserThread' RtlCreateUserThread ntdll 846 -imp 'RtlCreateVirtualAccountSid' RtlCreateVirtualAccountSid ntdll 847 -imp 'RtlCultureNameToLCID' RtlCultureNameToLCID ntdll 848 -imp 'RtlCustomCPToUnicodeN' RtlCustomCPToUnicodeN ntdll 849 -imp 'RtlCutoverTimeToSystemTime' RtlCutoverTimeToSystemTime ntdll 850 -imp 'RtlDeCommitDebugInfo' RtlDeCommitDebugInfo ntdll 851 -imp 'RtlDeNormalizeProcessParams' RtlDeNormalizeProcessParams ntdll 852 -imp 'RtlDeactivateActivationContext' RtlDeactivateActivationContext ntdll 853 -imp 'RtlDeactivateActivationContextUnsafeFast' RtlDeactivateActivationContextUnsafeFast ntdll 854 -imp 'RtlDebugPrintTimes' RtlDebugPrintTimes ntdll 855 -imp 'RtlDecodePointer' RtlDecodePointer ntdll 856 -imp 'RtlDecodeRemotePointer' RtlDecodeRemotePointer ntdll 857 -imp 'RtlDecodeSystemPointer' RtlDecodeSystemPointer ntdll 858 -imp 'RtlDecompressBuffer' RtlDecompressBuffer ntdll 859 -imp 'RtlDecompressBufferEx' RtlDecompressBufferEx ntdll 860 -imp 'RtlDecompressFragment' RtlDecompressFragment ntdll 861 -imp 'RtlDefaultNpAcl' RtlDefaultNpAcl ntdll 862 -imp 'RtlDelete' RtlDelete ntdll 863 -imp 'RtlDeleteAce' RtlDeleteAce ntdll 864 -imp 'RtlDeleteAtomFromAtomTable' RtlDeleteAtomFromAtomTable ntdll 865 -imp 'RtlDeleteBarrier' RtlDeleteBarrier ntdll 866 -imp 'RtlDeleteBoundaryDescriptor' RtlDeleteBoundaryDescriptor ntdll 867 -imp 'RtlDeleteCriticalSection' RtlDeleteCriticalSection ntdll 868 1 -imp 'RtlDeleteElementGenericTable' RtlDeleteElementGenericTable ntdll 869 -imp 'RtlDeleteElementGenericTableAvl' RtlDeleteElementGenericTableAvl ntdll 870 -imp 'RtlDeleteElementGenericTableAvlEx' RtlDeleteElementGenericTableAvlEx ntdll 871 -imp 'RtlDeleteFunctionTable' RtlDeleteFunctionTable ntdll 872 -imp 'RtlDeleteGrowableFunctionTable' RtlDeleteGrowableFunctionTable ntdll 873 -imp 'RtlDeleteHashTable' RtlDeleteHashTable ntdll 874 -imp 'RtlDeleteNoSplay' RtlDeleteNoSplay ntdll 875 -imp 'RtlDeleteRegistryValue' RtlDeleteRegistryValue ntdll 876 -imp 'RtlDeleteResource' RtlDeleteResource ntdll 877 -imp 'RtlDeleteSecurityObject' RtlDeleteSecurityObject ntdll 878 -imp 'RtlDeleteTimer' RtlDeleteTimer ntdll 879 -imp 'RtlDeleteTimerQueue' RtlDeleteTimerQueue ntdll 880 -imp 'RtlDeleteTimerQueueEx' RtlDeleteTimerQueueEx ntdll 881 -imp 'RtlDeleteUmsCompletionList' RtlDeleteUmsCompletionList ntdll 882 -imp 'RtlDeleteUmsThreadContext' RtlDeleteUmsThreadContext ntdll 883 -imp 'RtlDequeueUmsCompletionListItems' RtlDequeueUmsCompletionListItems ntdll 884 -imp 'RtlDeregisterSecureMemoryCacheCallback' RtlDeregisterSecureMemoryCacheCallback ntdll 885 -imp 'RtlDeregisterWait' RtlDeregisterWait ntdll 886 -imp 'RtlDeregisterWaitEx' RtlDeregisterWaitEx ntdll 887 -imp 'RtlDeriveCapabilitySidsFromName' RtlDeriveCapabilitySidsFromName ntdll 888 -imp 'RtlDestroyAtomTable' RtlDestroyAtomTable ntdll 889 -imp 'RtlDestroyEnvironment' RtlDestroyEnvironment ntdll 890 -imp 'RtlDestroyHandleTable' RtlDestroyHandleTable ntdll 891 -imp 'RtlDestroyHeap' RtlDestroyHeap ntdll 892 1 -imp 'RtlDestroyMemoryBlockLookaside' RtlDestroyMemoryBlockLookaside ntdll 893 -imp 'RtlDestroyMemoryZone' RtlDestroyMemoryZone ntdll 894 -imp 'RtlDestroyProcessParameters' RtlDestroyProcessParameters ntdll 895 1 -imp 'RtlDestroyQueryDebugBuffer' RtlDestroyQueryDebugBuffer ntdll 896 -imp 'RtlDetectHeapLeaks' RtlDetectHeapLeaks ntdll 897 -imp 'RtlDetermineDosPathNameType_U' RtlDetermineDosPathNameType_U ntdll 898 -imp 'RtlDisableThreadProfiling' RtlDisableThreadProfiling ntdll 899 -imp 'RtlDllShutdownInProgress' RtlDllShutdownInProgress ntdll 900 -imp 'RtlDnsHostNameToComputerName' RtlDnsHostNameToComputerName ntdll 901 -imp 'RtlDoesFileExists_U' RtlDoesFileExists_U ntdll 902 -imp 'RtlDosApplyFileIsolationRedirection_Ustr' RtlDosApplyFileIsolationRedirection_Ustr ntdll 903 -imp 'RtlDosLongPathNameToNtPathName_U_WithStatus' RtlDosLongPathNameToNtPathName_U_WithStatus ntdll 904 -imp 'RtlDosLongPathNameToRelativeNtPathName_U_WithStatus' RtlDosLongPathNameToRelativeNtPathName_U_WithStatus ntdll 905 -imp 'RtlDosPathNameToNtPathName_U' RtlDosPathNameToNtPathName_U ntdll 906 -imp 'RtlDosPathNameToNtPathName_U_WithStatus' RtlDosPathNameToNtPathName_U_WithStatus ntdll 907 -imp 'RtlDosPathNameToRelativeNtPathName_U' RtlDosPathNameToRelativeNtPathName_U ntdll 908 -imp 'RtlDosPathNameToRelativeNtPathName_U_WithStatus' RtlDosPathNameToRelativeNtPathName_U_WithStatus ntdll 909 -imp 'RtlDosSearchPath_U' RtlDosSearchPath_U ntdll 910 -imp 'RtlDosSearchPath_Ustr' RtlDosSearchPath_Ustr ntdll 911 -imp 'RtlDowncaseUnicodeChar' RtlDowncaseUnicodeChar ntdll 912 -imp 'RtlDowncaseUnicodeString' RtlDowncaseUnicodeString ntdll 913 -imp 'RtlDrainNonVolatileFlush' RtlDrainNonVolatileFlush ntdll 914 -imp 'RtlDumpResource' RtlDumpResource ntdll 915 -imp 'RtlDuplicateUnicodeString' RtlDuplicateUnicodeString ntdll 916 -imp 'RtlEmptyAtomTable' RtlEmptyAtomTable ntdll 917 -imp 'RtlEnableEarlyCriticalSectionEventCreation' RtlEnableEarlyCriticalSectionEventCreation ntdll 918 -imp 'RtlEnableThreadProfiling' RtlEnableThreadProfiling ntdll 919 -imp 'RtlEnclaveCallDispatch' RtlEnclaveCallDispatch ntdll 920 -imp 'RtlEnclaveCallDispatchReturn' RtlEnclaveCallDispatchReturn ntdll 921 -imp 'RtlEncodePointer' RtlEncodePointer ntdll 922 -imp 'RtlEncodeRemotePointer' RtlEncodeRemotePointer ntdll 923 -imp 'RtlEncodeSystemPointer' RtlEncodeSystemPointer ntdll 924 -imp 'RtlEndEnumerationHashTable' RtlEndEnumerationHashTable ntdll 925 -imp 'RtlEndStrongEnumerationHashTable' RtlEndStrongEnumerationHashTable ntdll 926 -imp 'RtlEndWeakEnumerationHashTable' RtlEndWeakEnumerationHashTable ntdll 927 -imp 'RtlEnterCriticalSection' RtlEnterCriticalSection ntdll 928 1 -imp 'RtlEnterUmsSchedulingMode' RtlEnterUmsSchedulingMode ntdll 929 -imp 'RtlEnumProcessHeaps' RtlEnumProcessHeaps ntdll 930 -imp 'RtlEnumerateEntryHashTable' RtlEnumerateEntryHashTable ntdll 931 -imp 'RtlEnumerateGenericTable' RtlEnumerateGenericTable ntdll 932 -imp 'RtlEnumerateGenericTableAvl' RtlEnumerateGenericTableAvl ntdll 933 -imp 'RtlEnumerateGenericTableLikeADirectory' RtlEnumerateGenericTableLikeADirectory ntdll 934 -imp 'RtlEnumerateGenericTableWithoutSplaying' RtlEnumerateGenericTableWithoutSplaying ntdll 935 -imp 'RtlEnumerateGenericTableWithoutSplayingAvl' RtlEnumerateGenericTableWithoutSplayingAvl ntdll 936 -imp 'RtlEqualComputerName' RtlEqualComputerName ntdll 937 -imp 'RtlEqualDomainName' RtlEqualDomainName ntdll 938 -imp 'RtlEqualLuid' RtlEqualLuid ntdll 939 -imp 'RtlEqualPrefixSid' RtlEqualPrefixSid ntdll 940 -imp 'RtlEqualSid' RtlEqualSid ntdll 941 -imp 'RtlEqualString' RtlEqualString ntdll 942 -imp 'RtlEqualUnicodeString' RtlEqualUnicodeString ntdll 943 -imp 'RtlEqualWnfChangeStamps' RtlEqualWnfChangeStamps ntdll 944 -imp 'RtlEraseUnicodeString' RtlEraseUnicodeString ntdll 945 -imp 'RtlEthernetAddressToString' RtlEthernetAddressToStringW ntdll 947 -imp 'RtlEthernetStringToAddress' RtlEthernetStringToAddressW ntdll 949 -imp 'RtlExecuteUmsThread' RtlExecuteUmsThread ntdll 950 -imp 'RtlExitUserProcess' RtlExitUserProcess ntdll 951 -imp 'RtlExitUserThread' RtlExitUserThread ntdll 952 -imp 'RtlExpandEnvironmentStrings' RtlExpandEnvironmentStrings ntdll 953 -imp 'RtlExpandEnvironmentStrings_U' RtlExpandEnvironmentStrings_U ntdll 954 -imp 'RtlExpandHashTable' RtlExpandHashTable ntdll 955 -imp 'RtlExtendCorrelationVector' RtlExtendCorrelationVector ntdll 956 -imp 'RtlExtendMemoryBlockLookaside' RtlExtendMemoryBlockLookaside ntdll 957 -imp 'RtlExtendMemoryZone' RtlExtendMemoryZone ntdll 958 -imp 'RtlExtractBitMap' RtlExtractBitMap ntdll 959 -imp 'RtlFillMemory' RtlFillMemory ntdll 960 -imp 'RtlFinalReleaseOutOfProcessMemoryStream' RtlFinalReleaseOutOfProcessMemoryStream ntdll 961 -imp 'RtlFindAceByType' RtlFindAceByType ntdll 962 -imp 'RtlFindActivationContextSectionGuid' RtlFindActivationContextSectionGuid ntdll 963 -imp 'RtlFindActivationContextSectionString' RtlFindActivationContextSectionString ntdll 964 -imp 'RtlFindCharInUnicodeString' RtlFindCharInUnicodeString ntdll 965 -imp 'RtlFindClearBits' RtlFindClearBits ntdll 966 -imp 'RtlFindClearBitsAndSet' RtlFindClearBitsAndSet ntdll 967 -imp 'RtlFindClearRuns' RtlFindClearRuns ntdll 968 -imp 'RtlFindClosestEncodableLength' RtlFindClosestEncodableLength ntdll 969 -imp 'RtlFindExportedRoutineByName' RtlFindExportedRoutineByName ntdll 970 -imp 'RtlFindLastBackwardRunClear' RtlFindLastBackwardRunClear ntdll 971 -imp 'RtlFindLeastSignificantBit' RtlFindLeastSignificantBit ntdll 972 -imp 'RtlFindLongestRunClear' RtlFindLongestRunClear ntdll 973 -imp 'RtlFindMessage' RtlFindMessage ntdll 974 -imp 'RtlFindMostSignificantBit' RtlFindMostSignificantBit ntdll 975 -imp 'RtlFindNextForwardRunClear' RtlFindNextForwardRunClear ntdll 976 -imp 'RtlFindSetBits' RtlFindSetBits ntdll 977 -imp 'RtlFindSetBitsAndClear' RtlFindSetBitsAndClear ntdll 978 -imp 'RtlFindUnicodeSubstring' RtlFindUnicodeSubstring ntdll 979 -imp 'RtlFirstEntrySList' RtlFirstEntrySList ntdll 980 -imp 'RtlFirstFreeAce' RtlFirstFreeAce ntdll 981 -imp 'RtlFlsAlloc' RtlFlsAlloc ntdll 982 -imp 'RtlFlsFree' RtlFlsFree ntdll 983 -imp 'RtlFlushHeaps' RtlFlushHeaps ntdll 984 -imp 'RtlFlushNonVolatileMemory' RtlFlushNonVolatileMemory ntdll 985 -imp 'RtlFlushNonVolatileMemoryRanges' RtlFlushNonVolatileMemoryRanges ntdll 986 -imp 'RtlFlushSecureMemoryCache' RtlFlushSecureMemoryCache ntdll 987 -imp 'RtlFormatCurrentUserKeyPath' RtlFormatCurrentUserKeyPath ntdll 988 -imp 'RtlFormatMessage' RtlFormatMessage ntdll 989 -imp 'RtlFormatMessageEx' RtlFormatMessageEx ntdll 990 -imp 'RtlFreeActivationContextStack' RtlFreeActivationContextStack ntdll 991 -imp 'RtlFreeAnsiString' RtlFreeAnsiString ntdll 992 -imp 'RtlFreeHandle' RtlFreeHandle ntdll 993 -imp 'RtlFreeHeap' RtlFreeHeap ntdll 994 3 -imp 'RtlFreeMemoryBlockLookaside' RtlFreeMemoryBlockLookaside ntdll 995 -imp 'RtlFreeNonVolatileToken' RtlFreeNonVolatileToken ntdll 996 -imp 'RtlFreeOemString' RtlFreeOemString ntdll 997 -imp 'RtlFreeSid' RtlFreeSid ntdll 998 -imp 'RtlFreeThreadActivationContextStack' RtlFreeThreadActivationContextStack ntdll 999 -imp 'RtlFreeUnicodeString' RtlFreeUnicodeString ntdll 1000 1 -imp 'RtlFreeUserStack' RtlFreeUserStack ntdll 1001 -imp 'RtlGUIDFromString' RtlGUIDFromString ntdll 1002 -imp 'RtlGenerate8dot3Name' RtlGenerate8dot3Name ntdll 1003 -imp 'RtlGetAce' RtlGetAce ntdll 1004 -imp 'RtlGetActiveActivationContext' RtlGetActiveActivationContext ntdll 1005 -imp 'RtlGetActiveConsoleId' RtlGetActiveConsoleId ntdll 1006 -imp 'RtlGetAppContainerNamedObjectPath' RtlGetAppContainerNamedObjectPath ntdll 1007 -imp 'RtlGetAppContainerParent' RtlGetAppContainerParent ntdll 1008 -imp 'RtlGetAppContainerSidType' RtlGetAppContainerSidType ntdll 1009 -imp 'RtlGetCallersAddress' RtlGetCallersAddress ntdll 1010 -imp 'RtlGetCompressionWorkSpaceSize' RtlGetCompressionWorkSpaceSize ntdll 1011 -imp 'RtlGetConsoleSessionForegroundProcessId' RtlGetConsoleSessionForegroundProcessId ntdll 1012 -imp 'RtlGetControlSecurityDescriptor' RtlGetControlSecurityDescriptor ntdll 1013 -imp 'RtlGetCriticalSectionRecursionCount' RtlGetCriticalSectionRecursionCount ntdll 1014 -imp 'RtlGetCurrentDirectory_U' RtlGetCurrentDirectory_U ntdll 1015 -imp 'RtlGetCurrentPeb' RtlGetCurrentPeb ntdll 1016 -imp 'RtlGetCurrentProcessorNumber' RtlGetCurrentProcessorNumber ntdll 1017 -imp 'RtlGetCurrentProcessorNumberEx' RtlGetCurrentProcessorNumberEx ntdll 1018 -imp 'RtlGetCurrentServiceSessionId' RtlGetCurrentServiceSessionId ntdll 1019 -imp 'RtlGetCurrentTransaction' RtlGetCurrentTransaction ntdll 1020 -imp 'RtlGetCurrentUmsThread' RtlGetCurrentUmsThread ntdll 1021 -imp 'RtlGetDaclSecurityDescriptor' RtlGetDaclSecurityDescriptor ntdll 1022 -imp 'RtlGetDeviceFamilyInfoEnum' RtlGetDeviceFamilyInfoEnum ntdll 1023 -imp 'RtlGetElementGenericTable' RtlGetElementGenericTable ntdll 1024 -imp 'RtlGetElementGenericTableAvl' RtlGetElementGenericTableAvl ntdll 1025 -imp 'RtlGetEnabledExtendedFeatures' RtlGetEnabledExtendedFeatures ntdll 1026 -imp 'RtlGetExePath' RtlGetExePath ntdll 1027 -imp 'RtlGetExtendedContextLength' RtlGetExtendedContextLength ntdll 1028 -imp 'RtlGetExtendedFeaturesMask' RtlGetExtendedFeaturesMask ntdll 1029 -imp 'RtlGetFileMUIPath' RtlGetFileMUIPath ntdll 1030 -imp 'RtlGetFrame' RtlGetFrame ntdll 1031 -imp 'RtlGetFullPathName_U' RtlGetFullPathName_U ntdll 1032 -imp 'RtlGetFullPathName_UEx' RtlGetFullPathName_UEx ntdll 1033 -imp 'RtlGetFullPathName_UstrEx' RtlGetFullPathName_UstrEx ntdll 1034 -imp 'RtlGetFunctionTableListHead' RtlGetFunctionTableListHead ntdll 1035 -imp 'RtlGetGroupSecurityDescriptor' RtlGetGroupSecurityDescriptor ntdll 1036 -imp 'RtlGetIntegerAtom' RtlGetIntegerAtom ntdll 1037 -imp 'RtlGetInterruptTimePrecise' RtlGetInterruptTimePrecise ntdll 1038 -imp 'RtlGetLastNtStatus' RtlGetLastNtStatus ntdll 1039 -imp 'RtlGetLastWin32Error' RtlGetLastWin32Error ntdll 1040 -imp 'RtlGetLengthWithoutLastFullDosOrNtPathElement' RtlGetLengthWithoutLastFullDosOrNtPathElement ntdll 1041 -imp 'RtlGetLengthWithoutTrailingPathSeperators' RtlGetLengthWithoutTrailingPathSeperators ntdll 1042 -imp 'RtlGetLocaleFileMappingAddress' RtlGetLocaleFileMappingAddress ntdll 1043 -imp 'RtlGetLongestNtPathLength' RtlGetLongestNtPathLength ntdll 1044 -imp 'RtlGetNativeSystemInformation' RtlGetNativeSystemInformation ntdll 1045 -imp 'RtlGetNextEntryHashTable' RtlGetNextEntryHashTable ntdll 1046 -imp 'RtlGetNextUmsListItem' RtlGetNextUmsListItem ntdll 1047 -imp 'RtlGetNonVolatileToken' RtlGetNonVolatileToken ntdll 1048 -imp 'RtlGetNtGlobalFlags' RtlGetNtGlobalFlags ntdll 1049 -imp 'RtlGetNtProductType' RtlGetNtProductType ntdll 1050 -imp 'RtlGetNtSystemRoot' RtlGetNtSystemRoot ntdll 1051 -imp 'RtlGetNtVersionNumbers' RtlGetNtVersionNumbers ntdll 1052 -imp 'RtlGetOwnerSecurityDescriptor' RtlGetOwnerSecurityDescriptor ntdll 1053 -imp 'RtlGetParentLocaleName' RtlGetParentLocaleName ntdll 1054 -imp 'RtlGetPersistedStateLocation' RtlGetPersistedStateLocation ntdll 1055 -imp 'RtlGetProcessHeaps' RtlGetProcessHeaps ntdll 1056 2 -imp 'RtlGetProcessPreferredUILanguages' RtlGetProcessPreferredUILanguages ntdll 1057 -imp 'RtlGetProductInfo' RtlGetProductInfo ntdll 1058 -imp 'RtlGetSaclSecurityDescriptor' RtlGetSaclSecurityDescriptor ntdll 1059 -imp 'RtlGetSearchPath' RtlGetSearchPath ntdll 1060 -imp 'RtlGetSecurityDescriptorRMControl' RtlGetSecurityDescriptorRMControl ntdll 1061 -imp 'RtlGetSessionProperties' RtlGetSessionProperties ntdll 1062 -imp 'RtlGetSetBootStatusData' RtlGetSetBootStatusData ntdll 1063 -imp 'RtlGetSuiteMask' RtlGetSuiteMask ntdll 1064 -imp 'RtlGetSystemBootStatus' RtlGetSystemBootStatus ntdll 1065 -imp 'RtlGetSystemBootStatusEx' RtlGetSystemBootStatusEx ntdll 1066 -imp 'RtlGetSystemPreferredUILanguages' RtlGetSystemPreferredUILanguages ntdll 1067 -imp 'RtlGetSystemTimePrecise' RtlGetSystemTimePrecise ntdll 1068 -imp 'RtlGetThreadErrorMode' RtlGetThreadErrorMode ntdll 1069 -imp 'RtlGetThreadLangIdByIndex' RtlGetThreadLangIdByIndex ntdll 1070 -imp 'RtlGetThreadPreferredUILanguages' RtlGetThreadPreferredUILanguages ntdll 1071 -imp 'RtlGetThreadWorkOnBehalfTicket' RtlGetThreadWorkOnBehalfTicket ntdll 1072 -imp 'RtlGetTokenNamedObjectPath' RtlGetTokenNamedObjectPath ntdll 1073 -imp 'RtlGetUILanguageInfo' RtlGetUILanguageInfo ntdll 1074 -imp 'RtlGetUmsCompletionListEvent' RtlGetUmsCompletionListEvent ntdll 1075 -imp 'RtlGetUnloadEventTrace' RtlGetUnloadEventTrace ntdll 1076 -imp 'RtlGetUnloadEventTraceEx' RtlGetUnloadEventTraceEx ntdll 1077 -imp 'RtlGetUserInfoHeap' RtlGetUserInfoHeap ntdll 1078 -imp 'RtlGetUserPreferredUILanguages' RtlGetUserPreferredUILanguages ntdll 1079 -imp 'RtlGetVersion' RtlGetVersion ntdll 1080 -imp 'RtlGrowFunctionTable' RtlGrowFunctionTable ntdll 1081 -imp 'RtlGuardCheckLongJumpTarget' RtlGuardCheckLongJumpTarget ntdll 1082 -imp 'RtlHashUnicodeString' RtlHashUnicodeString ntdll 1083 -imp 'RtlHeapTrkInitialize' RtlHeapTrkInitialize ntdll 1084 -imp 'RtlIdentifierAuthoritySid' RtlIdentifierAuthoritySid ntdll 1085 -imp 'RtlIdnToAscii' RtlIdnToAscii ntdll 1086 -imp 'RtlIdnToNameprepUnicode' RtlIdnToNameprepUnicode ntdll 1087 -imp 'RtlIdnToUnicode' RtlIdnToUnicode ntdll 1088 -imp 'RtlImageDirectoryEntryToData' RtlImageDirectoryEntryToData ntdll 1089 -imp 'RtlImageNtHeader' RtlImageNtHeader ntdll 1090 -imp 'RtlImageNtHeaderEx' RtlImageNtHeaderEx ntdll 1091 -imp 'RtlImageRvaToSection' RtlImageRvaToSection ntdll 1092 -imp 'RtlImageRvaToVa' RtlImageRvaToVa ntdll 1093 -imp 'RtlImpersonateSelf' RtlImpersonateSelf ntdll 1094 -imp 'RtlImpersonateSelfEx' RtlImpersonateSelfEx ntdll 1095 -imp 'RtlIncrementCorrelationVector' RtlIncrementCorrelationVector ntdll 1096 -imp 'RtlInitAnsiString' RtlInitAnsiString ntdll 1097 -imp 'RtlInitAnsiStringEx' RtlInitAnsiStringEx ntdll 1098 -imp 'RtlInitBarrier' RtlInitBarrier ntdll 1099 -imp 'RtlInitCodePageTable' RtlInitCodePageTable ntdll 1100 -imp 'RtlInitEnumerationHashTable' RtlInitEnumerationHashTable ntdll 1101 -imp 'RtlInitMemoryStream' RtlInitMemoryStream ntdll 1102 -imp 'RtlInitNlsTables' RtlInitNlsTables ntdll 1103 -imp 'RtlInitOutOfProcessMemoryStream' RtlInitOutOfProcessMemoryStream ntdll 1104 -imp 'RtlInitString' RtlInitString ntdll 1105 -imp 'RtlInitStringEx' RtlInitStringEx ntdll 1106 -imp 'RtlInitStrongEnumerationHashTable' RtlInitStrongEnumerationHashTable ntdll 1107 -imp 'RtlInitUnicodeString' RtlInitUnicodeString ntdll 1108 2 -imp 'RtlInitUnicodeStringEx' RtlInitUnicodeStringEx ntdll 1109 -imp 'RtlInitWeakEnumerationHashTable' RtlInitWeakEnumerationHashTable ntdll 1110 -imp 'RtlInitializeAtomPackage' RtlInitializeAtomPackage ntdll 1111 -imp 'RtlInitializeBitMap' RtlInitializeBitMap ntdll 1112 -imp 'RtlInitializeBitMapEx' RtlInitializeBitMapEx ntdll 1113 -imp 'RtlInitializeConditionVariable' RtlInitializeConditionVariable ntdll 1114 -imp 'RtlInitializeContext' RtlInitializeContext ntdll 1115 -imp 'RtlInitializeCorrelationVector' RtlInitializeCorrelationVector ntdll 1116 -imp 'RtlInitializeCriticalSection' RtlInitializeCriticalSection ntdll 1117 1 -imp 'RtlInitializeCriticalSectionAndSpinCount' RtlInitializeCriticalSectionAndSpinCount ntdll 1118 -imp 'RtlInitializeCriticalSectionEx' RtlInitializeCriticalSectionEx ntdll 1119 -imp 'RtlInitializeExtendedContext' RtlInitializeExtendedContext ntdll 1120 -imp 'RtlInitializeGenericTable' RtlInitializeGenericTable ntdll 1121 -imp 'RtlInitializeGenericTableAvl' RtlInitializeGenericTableAvl ntdll 1122 -imp 'RtlInitializeHandleTable' RtlInitializeHandleTable ntdll 1123 -imp 'RtlInitializeNtUserPfn' RtlInitializeNtUserPfn ntdll 1124 -imp 'RtlInitializeRXact' RtlInitializeRXact ntdll 1125 -imp 'RtlInitializeResource' RtlInitializeResource ntdll 1126 -imp 'RtlInitializeSListHead' RtlInitializeSListHead ntdll 1127 -imp 'RtlInitializeSRWLock' RtlInitializeSRWLock ntdll 1128 -imp 'RtlInitializeSid' RtlInitializeSid ntdll 1129 -imp 'RtlInitializeSidEx' RtlInitializeSidEx ntdll 1130 -imp 'RtlInsertElementGenericTable' RtlInsertElementGenericTable ntdll 1131 -imp 'RtlInsertElementGenericTableAvl' RtlInsertElementGenericTableAvl ntdll 1132 -imp 'RtlInsertElementGenericTableFull' RtlInsertElementGenericTableFull ntdll 1133 -imp 'RtlInsertElementGenericTableFullAvl' RtlInsertElementGenericTableFullAvl ntdll 1134 -imp 'RtlInsertEntryHashTable' RtlInsertEntryHashTable ntdll 1135 -imp 'RtlInstallFunctionTableCallback' RtlInstallFunctionTableCallback ntdll 1136 -imp 'RtlInt64ToUnicodeString' RtlInt64ToUnicodeString ntdll 1137 -imp 'RtlIntegerToChar' RtlIntegerToChar ntdll 1138 -imp 'RtlIntegerToUnicodeString' RtlIntegerToUnicodeString ntdll 1139 -imp 'RtlInterlockedClearBitRun' RtlInterlockedClearBitRun ntdll 1140 -imp 'RtlInterlockedFlushSList' RtlInterlockedFlushSList ntdll 1141 -imp 'RtlInterlockedPopEntrySList' RtlInterlockedPopEntrySList ntdll 1142 -imp 'RtlInterlockedPushEntrySList' RtlInterlockedPushEntrySList ntdll 1143 -imp 'RtlInterlockedPushListSList' RtlInterlockedPushListSList ntdll 1144 -imp 'RtlInterlockedPushListSListEx' RtlInterlockedPushListSListEx ntdll 1145 -imp 'RtlInterlockedSetBitRun' RtlInterlockedSetBitRun ntdll 1146 -imp 'RtlIoDecodeMemIoResource' RtlIoDecodeMemIoResource ntdll 1147 -imp 'RtlIoEncodeMemIoResource' RtlIoEncodeMemIoResource ntdll 1148 -imp 'RtlIpv4AddressToString' RtlIpv4AddressToStringW ntdll 1152 -imp 'RtlIpv4AddressToStringEx' RtlIpv4AddressToStringExW ntdll 1151 -imp 'RtlIpv4StringToAddress' RtlIpv4StringToAddressW ntdll 1156 -imp 'RtlIpv4StringToAddressEx' RtlIpv4StringToAddressExW ntdll 1155 -imp 'RtlIpv6AddressToString' RtlIpv6AddressToStringW ntdll 1160 -imp 'RtlIpv6AddressToStringEx' RtlIpv6AddressToStringExW ntdll 1159 -imp 'RtlIpv6StringToAddress' RtlIpv6StringToAddressW ntdll 1164 -imp 'RtlIpv6StringToAddressEx' RtlIpv6StringToAddressExW ntdll 1163 -imp 'RtlIsActivationContextActive' RtlIsActivationContextActive ntdll 1165 -imp 'RtlIsCapabilitySid' RtlIsCapabilitySid ntdll 1166 -imp 'RtlIsCloudFilesPlaceholder' RtlIsCloudFilesPlaceholder ntdll 1167 -imp 'RtlIsCriticalSectionLocked' RtlIsCriticalSectionLocked ntdll 1168 -imp 'RtlIsCriticalSectionLockedByThread' RtlIsCriticalSectionLockedByThread ntdll 1169 -imp 'RtlIsCurrentProcess' RtlIsCurrentProcess ntdll 1170 -imp 'RtlIsCurrentThread' RtlIsCurrentThread ntdll 1171 -imp 'RtlIsCurrentThreadAttachExempt' RtlIsCurrentThreadAttachExempt ntdll 1172 -imp 'RtlIsDosDeviceName_U' RtlIsDosDeviceName_U ntdll 1173 -imp 'RtlIsElevatedRid' RtlIsElevatedRid ntdll 1174 -imp 'RtlIsGenericTableEmpty' RtlIsGenericTableEmpty ntdll 1175 -imp 'RtlIsGenericTableEmptyAvl' RtlIsGenericTableEmptyAvl ntdll 1176 -imp 'RtlIsMultiSessionSku' RtlIsMultiSessionSku ntdll 1177 -imp 'RtlIsMultiUsersInSessionSku' RtlIsMultiUsersInSessionSku ntdll 1178 -imp 'RtlIsNameInExpression' RtlIsNameInExpression ntdll 1179 -imp 'RtlIsNameInUnUpcasedExpression' RtlIsNameInUnUpcasedExpression ntdll 1180 -imp 'RtlIsNameLegalDOS8Dot3' RtlIsNameLegalDOS8Dot3 ntdll 1181 -imp 'RtlIsNonEmptyDirectoryReparsePointAllowed' RtlIsNonEmptyDirectoryReparsePointAllowed ntdll 1182 -imp 'RtlIsNormalizedString' RtlIsNormalizedString ntdll 1183 -imp 'RtlIsPackageSid' RtlIsPackageSid ntdll 1184 -imp 'RtlIsParentOfChildAppContainer' RtlIsParentOfChildAppContainer ntdll 1185 -imp 'RtlIsPartialPlaceholder' RtlIsPartialPlaceholder ntdll 1186 -imp 'RtlIsPartialPlaceholderFileHandle' RtlIsPartialPlaceholderFileHandle ntdll 1187 -imp 'RtlIsPartialPlaceholderFileInfo' RtlIsPartialPlaceholderFileInfo ntdll 1188 -imp 'RtlIsProcessorFeaturePresent' RtlIsProcessorFeaturePresent ntdll 1189 -imp 'RtlIsStateSeparationEnabled' RtlIsStateSeparationEnabled ntdll 1190 -imp 'RtlIsTextUnicode' RtlIsTextUnicode ntdll 1191 -imp 'RtlIsThreadWithinLoaderCallout' RtlIsThreadWithinLoaderCallout ntdll 1192 -imp 'RtlIsUntrustedObject' RtlIsUntrustedObject ntdll 1193 -imp 'RtlIsValidHandle' RtlIsValidHandle ntdll 1194 -imp 'RtlIsValidIndexHandle' RtlIsValidIndexHandle ntdll 1195 -imp 'RtlIsValidLocaleName' RtlIsValidLocaleName ntdll 1196 -imp 'RtlIsValidProcessTrustLabelSid' RtlIsValidProcessTrustLabelSid ntdll 1197 -imp 'RtlKnownExceptionFilter' RtlKnownExceptionFilter ntdll 1198 -imp 'RtlLCIDToCultureName' RtlLCIDToCultureName ntdll 1199 -imp 'RtlLargeIntegerToChar' RtlLargeIntegerToChar ntdll 1200 -imp 'RtlLcidToLocaleName' RtlLcidToLocaleName ntdll 1201 -imp 'RtlLeaveCriticalSection' RtlLeaveCriticalSection ntdll 1202 1 -imp 'RtlLengthRequiredSid' RtlLengthRequiredSid ntdll 1203 -imp 'RtlLengthSecurityDescriptor' RtlLengthSecurityDescriptor ntdll 1204 -imp 'RtlLengthSid' RtlLengthSid ntdll 1205 -imp 'RtlLengthSidAsUnicodeString' RtlLengthSidAsUnicodeString ntdll 1206 -imp 'RtlLoadString' RtlLoadString ntdll 1207 -imp 'RtlLocalTimeToSystemTime' RtlLocalTimeToSystemTime ntdll 1208 -imp 'RtlLocaleNameToLcid' RtlLocaleNameToLcid ntdll 1209 -imp 'RtlLocateExtendedFeature' RtlLocateExtendedFeature ntdll 1210 -imp 'RtlLocateExtendedFeature2' RtlLocateExtendedFeature2 ntdll 1211 -imp 'RtlLocateLegacyContext' RtlLocateLegacyContext ntdll 1212 -imp 'RtlLockBootStatusData' RtlLockBootStatusData ntdll 1213 -imp 'RtlLockCurrentThread' RtlLockCurrentThread ntdll 1214 -imp 'RtlLockHeap' RtlLockHeap ntdll 1215 1 -imp 'RtlLockMemoryBlockLookaside' RtlLockMemoryBlockLookaside ntdll 1216 -imp 'RtlLockMemoryStreamRegion' RtlLockMemoryStreamRegion ntdll 1217 -imp 'RtlLockMemoryZone' RtlLockMemoryZone ntdll 1218 -imp 'RtlLockModuleSection' RtlLockModuleSection ntdll 1219 -imp 'RtlLogStackBackTrace' RtlLogStackBackTrace ntdll 1220 -imp 'RtlLookupAtomInAtomTable' RtlLookupAtomInAtomTable ntdll 1221 -imp 'RtlLookupElementGenericTable' RtlLookupElementGenericTable ntdll 1222 -imp 'RtlLookupElementGenericTableAvl' RtlLookupElementGenericTableAvl ntdll 1223 -imp 'RtlLookupElementGenericTableFull' RtlLookupElementGenericTableFull ntdll 1224 -imp 'RtlLookupElementGenericTableFullAvl' RtlLookupElementGenericTableFullAvl ntdll 1225 -imp 'RtlLookupEntryHashTable' RtlLookupEntryHashTable ntdll 1226 -imp 'RtlLookupFirstMatchingElementGenericTableAvl' RtlLookupFirstMatchingElementGenericTableAvl ntdll 1227 -imp 'RtlLookupFunctionEntry' RtlLookupFunctionEntry ntdll 1228 -imp 'RtlLookupFunctionTable' RtlLookupFunctionTable ntdll 1229 -imp 'RtlMakeSelfRelativeSD' RtlMakeSelfRelativeSD ntdll 1230 -imp 'RtlMapGenericMask' RtlMapGenericMask ntdll 1231 -imp 'RtlMapSecurityErrorToNtStatus' RtlMapSecurityErrorToNtStatus ntdll 1232 -imp 'RtlMoveMemory' RtlMoveMemory ntdll 1233 -imp 'RtlMultiAppendUnicodeStringBuffer' RtlMultiAppendUnicodeStringBuffer ntdll 1234 -imp 'RtlMultiByteToUnicodeN' RtlMultiByteToUnicodeN ntdll 1235 -imp 'RtlMultiByteToUnicodeSize' RtlMultiByteToUnicodeSize ntdll 1236 -imp 'RtlMultipleAllocateHeap' RtlMultipleAllocateHeap ntdll 1237 -imp 'RtlMultipleFreeHeap' RtlMultipleFreeHeap ntdll 1238 -imp 'RtlNewInstanceSecurityObject' RtlNewInstanceSecurityObject ntdll 1239 -imp 'RtlNewSecurityGrantedAccess' RtlNewSecurityGrantedAccess ntdll 1240 -imp 'RtlNewSecurityObject' RtlNewSecurityObject ntdll 1241 -imp 'RtlNewSecurityObjectEx' RtlNewSecurityObjectEx ntdll 1242 -imp 'RtlNewSecurityObjectWithMultipleInheritance' RtlNewSecurityObjectWithMultipleInheritance ntdll 1243 -imp 'RtlNormalizeProcessParams' RtlNormalizeProcessParams ntdll 1244 -imp 'RtlNormalizeString' RtlNormalizeString ntdll 1245 -imp 'RtlNtPathNameToDosPathName' RtlNtPathNameToDosPathName ntdll 1246 -imp 'RtlNtStatusToDosError' RtlNtStatusToDosError ntdll 1247 1 -imp 'RtlNtStatusToDosErrorNoTeb' RtlNtStatusToDosErrorNoTeb ntdll 1248 -imp 'RtlNtdllName' RtlNtdllName ntdll 1249 -imp 'RtlNumberGenericTableElements' RtlNumberGenericTableElements ntdll 1250 -imp 'RtlNumberGenericTableElementsAvl' RtlNumberGenericTableElementsAvl ntdll 1251 -imp 'RtlNumberOfClearBits' RtlNumberOfClearBits ntdll 1252 -imp 'RtlNumberOfClearBitsInRange' RtlNumberOfClearBitsInRange ntdll 1253 -imp 'RtlNumberOfSetBits' RtlNumberOfSetBits ntdll 1254 -imp 'RtlNumberOfSetBitsInRange' RtlNumberOfSetBitsInRange ntdll 1255 -imp 'RtlNumberOfSetBitsUlongPtr' RtlNumberOfSetBitsUlongPtr ntdll 1256 -imp 'RtlOemStringToUnicodeSize' RtlOemStringToUnicodeSize ntdll 1257 -imp 'RtlOemStringToUnicodeString' RtlOemStringToUnicodeString ntdll 1258 -imp 'RtlOemToUnicodeN' RtlOemToUnicodeN ntdll 1259 -imp 'RtlOpenCurrentUser' RtlOpenCurrentUser ntdll 1260 -imp 'RtlOsDeploymentState' RtlOsDeploymentState ntdll 1261 -imp 'RtlOwnerAcesPresent' RtlOwnerAcesPresent ntdll 1262 -imp 'RtlPcToFileHeader' RtlPcToFileHeader ntdll 1263 -imp 'RtlPinAtomInAtomTable' RtlPinAtomInAtomTable ntdll 1264 -imp 'RtlPopFrame' RtlPopFrame ntdll 1265 -imp 'RtlPrefixString' RtlPrefixString ntdll 1266 -imp 'RtlPrefixUnicodeString' RtlPrefixUnicodeString ntdll 1267 -imp 'RtlPrepareForProcessCloning' RtlPrepareForProcessCloning ntdll 1268 -imp 'RtlProcessFlsData' RtlProcessFlsData ntdll 1269 -imp 'RtlProtectHeap' RtlProtectHeap ntdll 1270 -imp 'RtlPublishWnfStateData' RtlPublishWnfStateData ntdll 1271 -imp 'RtlPushFrame' RtlPushFrame ntdll 1272 -imp 'RtlQueryActivationContextApplicationSettings' RtlQueryActivationContextApplicationSettings ntdll 1273 -imp 'RtlQueryAtomInAtomTable' RtlQueryAtomInAtomTable ntdll 1274 -imp 'RtlQueryCriticalSectionOwner' RtlQueryCriticalSectionOwner ntdll 1275 -imp 'RtlQueryDepthSList' RtlQueryDepthSList ntdll 1276 -imp 'RtlQueryDynamicTimeZoneInformation' RtlQueryDynamicTimeZoneInformation ntdll 1277 -imp 'RtlQueryElevationFlags' RtlQueryElevationFlags ntdll 1278 -imp 'RtlQueryEnvironmentVariable' RtlQueryEnvironmentVariable ntdll 1279 3 -imp 'RtlQueryEnvironmentVariable_U' RtlQueryEnvironmentVariable_U ntdll 1280 -imp 'RtlQueryHeapInformation' RtlQueryHeapInformation ntdll 1281 -imp 'RtlQueryImageMitigationPolicy' RtlQueryImageMitigationPolicy ntdll 1282 -imp 'RtlQueryInformationAcl' RtlQueryInformationAcl ntdll 1283 -imp 'RtlQueryInformationActivationContext' RtlQueryInformationActivationContext ntdll 1284 -imp 'RtlQueryInformationActiveActivationContext' RtlQueryInformationActiveActivationContext ntdll 1285 -imp 'RtlQueryInterfaceMemoryStream' RtlQueryInterfaceMemoryStream ntdll 1286 -imp 'RtlQueryModuleInformation' RtlQueryModuleInformation ntdll 1287 -imp 'RtlQueryPackageClaims' RtlQueryPackageClaims ntdll 1288 -imp 'RtlQueryPackageIdentity' RtlQueryPackageIdentity ntdll 1289 -imp 'RtlQueryPackageIdentityEx' RtlQueryPackageIdentityEx ntdll 1290 -imp 'RtlQueryPerformanceCounter' RtlQueryPerformanceCounter ntdll 1291 -imp 'RtlQueryPerformanceFrequency' RtlQueryPerformanceFrequency ntdll 1292 -imp 'RtlQueryProcessBackTraceInformation' RtlQueryProcessBackTraceInformation ntdll 1293 -imp 'RtlQueryProcessDebugInformation' RtlQueryProcessDebugInformation ntdll 1294 -imp 'RtlQueryProcessHeapInformation' RtlQueryProcessHeapInformation ntdll 1295 -imp 'RtlQueryProcessLockInformation' RtlQueryProcessLockInformation ntdll 1296 -imp 'RtlQueryProcessPlaceholderCompatibilityMode' RtlQueryProcessPlaceholderCompatibilityMode ntdll 1297 -imp 'RtlQueryProtectedPolicy' RtlQueryProtectedPolicy ntdll 1298 -imp 'RtlQueryRegistryValueWithFallback' RtlQueryRegistryValueWithFallback ntdll 1299 -imp 'RtlQueryRegistryValues' RtlQueryRegistryValues ntdll 1300 -imp 'RtlQueryRegistryValuesEx' RtlQueryRegistryValuesEx ntdll 1301 -imp 'RtlQueryResourcePolicy' RtlQueryResourcePolicy ntdll 1302 -imp 'RtlQuerySecurityObject' RtlQuerySecurityObject ntdll 1303 -imp 'RtlQueryTagHeap' RtlQueryTagHeap ntdll 1304 -imp 'RtlQueryThreadPlaceholderCompatibilityMode' RtlQueryThreadPlaceholderCompatibilityMode ntdll 1305 -imp 'RtlQueryThreadProfiling' RtlQueryThreadProfiling ntdll 1306 -imp 'RtlQueryTimeZoneInformation' RtlQueryTimeZoneInformation ntdll 1307 -imp 'RtlQueryTokenHostIdAsUlong64' RtlQueryTokenHostIdAsUlong64 ntdll 1308 -imp 'RtlQueryUmsThreadInformation' RtlQueryUmsThreadInformation ntdll 1309 -imp 'RtlQueryUnbiasedInterruptTime' RtlQueryUnbiasedInterruptTime ntdll 1310 -imp 'RtlQueryValidationRunlevel' RtlQueryValidationRunlevel ntdll 1311 -imp 'RtlQueryWnfMetaNotification' RtlQueryWnfMetaNotification ntdll 1312 -imp 'RtlQueryWnfStateData' RtlQueryWnfStateData ntdll 1313 -imp 'RtlQueryWnfStateDataWithExplicitScope' RtlQueryWnfStateDataWithExplicitScope ntdll 1314 -imp 'RtlQueueWorkItem' RtlQueueWorkItem ntdll 1316 -imp 'RtlRaiseCustomSystemEventTrigger' RtlRaiseCustomSystemEventTrigger ntdll 1317 -imp 'RtlRaiseException' RtlRaiseException ntdll 1318 -imp 'RtlRaiseStatus' RtlRaiseStatus ntdll 1319 -imp 'RtlRandom' RtlRandom ntdll 1320 -imp 'RtlRandomEx' RtlRandomEx ntdll 1321 -imp 'RtlRbInsertNodeEx' RtlRbInsertNodeEx ntdll 1322 -imp 'RtlRbRemoveNode' RtlRbRemoveNode ntdll 1323 -imp 'RtlReAllocateHeap' RtlReAllocateHeap ntdll 1324 4 -imp 'RtlReadMemoryStream' RtlReadMemoryStream ntdll 1325 -imp 'RtlReadOutOfProcessMemoryStream' RtlReadOutOfProcessMemoryStream ntdll 1326 -imp 'RtlReadThreadProfilingData' RtlReadThreadProfilingData ntdll 1327 -imp 'RtlRealPredecessor' RtlRealPredecessor ntdll 1328 -imp 'RtlRealSuccessor' RtlRealSuccessor ntdll 1329 -imp 'RtlRegisterForWnfMetaNotification' RtlRegisterForWnfMetaNotification ntdll 1330 -imp 'RtlRegisterSecureMemoryCacheCallback' RtlRegisterSecureMemoryCacheCallback ntdll 1331 -imp 'RtlRegisterThreadWithCsrss' RtlRegisterThreadWithCsrss ntdll 1332 -imp 'RtlRegisterWait' RtlRegisterWait ntdll 1333 -imp 'RtlReleaseActivationContext' RtlReleaseActivationContext ntdll 1334 -imp 'RtlReleaseMemoryStream' RtlReleaseMemoryStream ntdll 1335 -imp 'RtlReleasePath' RtlReleasePath ntdll 1336 -imp 'RtlReleasePebLock' RtlReleasePebLock ntdll 1337 -imp 'RtlReleasePrivilege' RtlReleasePrivilege ntdll 1338 -imp 'RtlReleaseRelativeName' RtlReleaseRelativeName ntdll 1339 -imp 'RtlReleaseResource' RtlReleaseResource ntdll 1340 -imp 'RtlReleaseSRWLockExclusive' RtlReleaseSRWLockExclusive ntdll 1341 -imp 'RtlReleaseSRWLockShared' RtlReleaseSRWLockShared ntdll 1342 -imp 'RtlRemoteCall' RtlRemoteCall ntdll 1343 -imp 'RtlRemoveEntryHashTable' RtlRemoveEntryHashTable ntdll 1344 -imp 'RtlRemovePrivileges' RtlRemovePrivileges ntdll 1345 -imp 'RtlRemoveVectoredContinueHandler' RtlRemoveVectoredContinueHandler ntdll 1346 -imp 'RtlRemoveVectoredExceptionHandler' RtlRemoveVectoredExceptionHandler ntdll 1347 -imp 'RtlReplaceSidInSd' RtlReplaceSidInSd ntdll 1348 -imp 'RtlReplaceSystemDirectoryInPath' RtlReplaceSystemDirectoryInPath ntdll 1349 -imp 'RtlReportException' RtlReportException ntdll 1350 -imp 'RtlReportExceptionEx' RtlReportExceptionEx ntdll 1351 -imp 'RtlReportSilentProcessExit' RtlReportSilentProcessExit ntdll 1352 -imp 'RtlReportSqmEscalation' RtlReportSqmEscalation ntdll 1353 -imp 'RtlResetMemoryBlockLookaside' RtlResetMemoryBlockLookaside ntdll 1354 -imp 'RtlResetMemoryZone' RtlResetMemoryZone ntdll 1355 -imp 'RtlResetNtUserPfn' RtlResetNtUserPfn ntdll 1356 -imp 'RtlResetRtlTranslations' RtlResetRtlTranslations ntdll 1357 -imp 'RtlRestoreBootStatusDefaults' RtlRestoreBootStatusDefaults ntdll 1358 -imp 'RtlRestoreContext' RtlRestoreContext ntdll 1359 -imp 'RtlRestoreLastWin32Error' RtlRestoreLastWin32Error ntdll 1360 -imp 'RtlRestoreSystemBootStatusDefaults' RtlRestoreSystemBootStatusDefaults ntdll 1361 -imp 'RtlRetrieveNtUserPfn' RtlRetrieveNtUserPfn ntdll 1362 -imp 'RtlRevertMemoryStream' RtlRevertMemoryStream ntdll 1363 -imp 'RtlRunDecodeUnicodeString' RtlRunDecodeUnicodeString ntdll 1364 -imp 'RtlRunEncodeUnicodeString' RtlRunEncodeUnicodeString ntdll 1365 -imp 'RtlRunOnceBeginInitialize' RtlRunOnceBeginInitialize ntdll 1366 -imp 'RtlRunOnceComplete' RtlRunOnceComplete ntdll 1367 -imp 'RtlRunOnceExecuteOnce' RtlRunOnceExecuteOnce ntdll 1368 -imp 'RtlRunOnceInitialize' RtlRunOnceInitialize ntdll 1369 -imp 'RtlSecondsSince1970ToTime' RtlSecondsSince1970ToTime ntdll 1370 -imp 'RtlSecondsSince1980ToTime' RtlSecondsSince1980ToTime ntdll 1371 -imp 'RtlSeekMemoryStream' RtlSeekMemoryStream ntdll 1372 -imp 'RtlSelfRelativeToAbsoluteSD' RtlSelfRelativeToAbsoluteSD ntdll 1373 -imp 'RtlSelfRelativeToAbsoluteSD2' RtlSelfRelativeToAbsoluteSD2 ntdll 1374 -imp 'RtlSendMsgToSm' RtlSendMsgToSm ntdll 1375 -imp 'RtlSetAllBits' RtlSetAllBits ntdll 1376 -imp 'RtlSetAttributesSecurityDescriptor' RtlSetAttributesSecurityDescriptor ntdll 1377 -imp 'RtlSetBit' RtlSetBit ntdll 1378 -imp 'RtlSetBits' RtlSetBits ntdll 1379 -imp 'RtlSetControlSecurityDescriptor' RtlSetControlSecurityDescriptor ntdll 1380 -imp 'RtlSetCriticalSectionSpinCount' RtlSetCriticalSectionSpinCount ntdll 1381 -imp 'RtlSetCurrentDirectory_U' RtlSetCurrentDirectory_U ntdll 1382 -imp 'RtlSetCurrentEnvironment' RtlSetCurrentEnvironment ntdll 1383 -imp 'RtlSetCurrentTransaction' RtlSetCurrentTransaction ntdll 1384 -imp 'RtlSetDaclSecurityDescriptor' RtlSetDaclSecurityDescriptor ntdll 1385 -imp 'RtlSetDynamicTimeZoneInformation' RtlSetDynamicTimeZoneInformation ntdll 1386 -imp 'RtlSetEnvironmentStrings' RtlSetEnvironmentStrings ntdll 1387 -imp 'RtlSetEnvironmentVar' RtlSetEnvironmentVar ntdll 1388 -imp 'RtlSetEnvironmentVariable' RtlSetEnvironmentVariable ntdll 1389 -imp 'RtlSetExtendedFeaturesMask' RtlSetExtendedFeaturesMask ntdll 1390 -imp 'RtlSetGroupSecurityDescriptor' RtlSetGroupSecurityDescriptor ntdll 1391 -imp 'RtlSetHeapInformation' RtlSetHeapInformation ntdll 1392 -imp 'RtlSetImageMitigationPolicy' RtlSetImageMitigationPolicy ntdll 1393 -imp 'RtlSetInformationAcl' RtlSetInformationAcl ntdll 1394 -imp 'RtlSetIoCompletionCallback' RtlSetIoCompletionCallback ntdll 1395 -imp 'RtlSetLastWin32Error' RtlSetLastWin32Error ntdll 1396 -imp 'RtlSetLastWin32ErrorAndNtStatusFromNtStatus' RtlSetLastWin32ErrorAndNtStatusFromNtStatus ntdll 1397 -imp 'RtlSetMemoryStreamSize' RtlSetMemoryStreamSize ntdll 1398 -imp 'RtlSetOwnerSecurityDescriptor' RtlSetOwnerSecurityDescriptor ntdll 1399 -imp 'RtlSetPortableOperatingSystem' RtlSetPortableOperatingSystem ntdll 1400 -imp 'RtlSetProcessDebugInformation' RtlSetProcessDebugInformation ntdll 1401 -imp 'RtlSetProcessIsCritical' RtlSetProcessIsCritical ntdll 1402 -imp 'RtlSetProcessPlaceholderCompatibilityMode' RtlSetProcessPlaceholderCompatibilityMode ntdll 1403 -imp 'RtlSetProcessPreferredUILanguages' RtlSetProcessPreferredUILanguages ntdll 1404 -imp 'RtlSetProtectedPolicy' RtlSetProtectedPolicy ntdll 1405 -imp 'RtlSetProxiedProcessId' RtlSetProxiedProcessId ntdll 1406 -imp 'RtlSetSaclSecurityDescriptor' RtlSetSaclSecurityDescriptor ntdll 1407 -imp 'RtlSetSearchPathMode' RtlSetSearchPathMode ntdll 1408 -imp 'RtlSetSecurityDescriptorRMControl' RtlSetSecurityDescriptorRMControl ntdll 1409 -imp 'RtlSetSecurityObject' RtlSetSecurityObject ntdll 1410 -imp 'RtlSetSecurityObjectEx' RtlSetSecurityObjectEx ntdll 1411 -imp 'RtlSetSystemBootStatus' RtlSetSystemBootStatus ntdll 1412 -imp 'RtlSetSystemBootStatusEx' RtlSetSystemBootStatusEx ntdll 1413 -imp 'RtlSetThreadErrorMode' RtlSetThreadErrorMode ntdll 1414 -imp 'RtlSetThreadIsCritical' RtlSetThreadIsCritical ntdll 1415 -imp 'RtlSetThreadPlaceholderCompatibilityMode' RtlSetThreadPlaceholderCompatibilityMode ntdll 1416 -imp 'RtlSetThreadPoolStartFunc' RtlSetThreadPoolStartFunc ntdll 1417 -imp 'RtlSetThreadPreferredUILanguages' RtlSetThreadPreferredUILanguages ntdll 1418 -imp 'RtlSetThreadSubProcessTag' RtlSetThreadSubProcessTag ntdll 1419 -imp 'RtlSetThreadWorkOnBehalfTicket' RtlSetThreadWorkOnBehalfTicket ntdll 1420 -imp 'RtlSetTimeZoneInformation' RtlSetTimeZoneInformation ntdll 1421 -imp 'RtlSetTimer' RtlSetTimer ntdll 1422 -imp 'RtlSetUmsThreadInformation' RtlSetUmsThreadInformation ntdll 1423 -imp 'RtlSetUnhandledExceptionFilter' RtlSetUnhandledExceptionFilter ntdll 1424 -imp 'RtlSetUserFlagsHeap' RtlSetUserFlagsHeap ntdll 1425 -imp 'RtlSetUserValueHeap' RtlSetUserValueHeap ntdll 1426 -imp 'RtlSidDominates' RtlSidDominates ntdll 1427 -imp 'RtlSidDominatesForTrust' RtlSidDominatesForTrust ntdll 1428 -imp 'RtlSidEqualLevel' RtlSidEqualLevel ntdll 1429 -imp 'RtlSidHashInitialize' RtlSidHashInitialize ntdll 1430 -imp 'RtlSidHashLookup' RtlSidHashLookup ntdll 1431 -imp 'RtlSidIsHigherLevel' RtlSidIsHigherLevel ntdll 1432 -imp 'RtlSizeHeap' RtlSizeHeap ntdll 1433 3 -imp 'RtlSleepConditionVariableCS' RtlSleepConditionVariableCS ntdll 1434 -imp 'RtlSleepConditionVariableSRW' RtlSleepConditionVariableSRW ntdll 1435 -imp 'RtlSplay' RtlSplay ntdll 1436 -imp 'RtlStartRXact' RtlStartRXact ntdll 1437 -imp 'RtlStatMemoryStream' RtlStatMemoryStream ntdll 1438 -imp 'RtlStringFromGUID' RtlStringFromGUID ntdll 1439 -imp 'RtlStringFromGUIDEx' RtlStringFromGUIDEx ntdll 1440 -imp 'RtlStronglyEnumerateEntryHashTable' RtlStronglyEnumerateEntryHashTable ntdll 1441 -imp 'RtlSubAuthorityCountSid' RtlSubAuthorityCountSid ntdll 1442 -imp 'RtlSubAuthoritySid' RtlSubAuthoritySid ntdll 1443 -imp 'RtlSubscribeWnfStateChangeNotification' RtlSubscribeWnfStateChangeNotification ntdll 1444 -imp 'RtlSubtreePredecessor' RtlSubtreePredecessor ntdll 1445 -imp 'RtlSubtreeSuccessor' RtlSubtreeSuccessor ntdll 1446 -imp 'RtlSwitchedVVI' RtlSwitchedVVI ntdll 1447 -imp 'RtlSystemTimeToLocalTime' RtlSystemTimeToLocalTime ntdll 1448 -imp 'RtlTestAndPublishWnfStateData' RtlTestAndPublishWnfStateData ntdll 1449 -imp 'RtlTestBit' RtlTestBit ntdll 1450 -imp 'RtlTestBitEx' RtlTestBitEx ntdll 1451 -imp 'RtlTestProtectedAccess' RtlTestProtectedAccess ntdll 1452 -imp 'RtlTimeFieldsToTime' RtlTimeFieldsToTime ntdll 1453 -imp 'RtlTimeToElapsedTimeFields' RtlTimeToElapsedTimeFields ntdll 1454 -imp 'RtlTimeToSecondsSince1970' RtlTimeToSecondsSince1970 ntdll 1455 -imp 'RtlTimeToSecondsSince1980' RtlTimeToSecondsSince1980 ntdll 1456 -imp 'RtlTimeToTimeFields' RtlTimeToTimeFields ntdll 1457 -imp 'RtlTraceDatabaseAdd' RtlTraceDatabaseAdd ntdll 1458 -imp 'RtlTraceDatabaseCreate' RtlTraceDatabaseCreate ntdll 1459 -imp 'RtlTraceDatabaseDestroy' RtlTraceDatabaseDestroy ntdll 1460 -imp 'RtlTraceDatabaseEnumerate' RtlTraceDatabaseEnumerate ntdll 1461 -imp 'RtlTraceDatabaseFind' RtlTraceDatabaseFind ntdll 1462 -imp 'RtlTraceDatabaseLock' RtlTraceDatabaseLock ntdll 1463 -imp 'RtlTraceDatabaseUnlock' RtlTraceDatabaseUnlock ntdll 1464 -imp 'RtlTraceDatabaseValidate' RtlTraceDatabaseValidate ntdll 1465 -imp 'RtlTryAcquirePebLock' RtlTryAcquirePebLock ntdll 1466 -imp 'RtlTryAcquireSRWLockExclusive' RtlTryAcquireSRWLockExclusive ntdll 1467 -imp 'RtlTryAcquireSRWLockShared' RtlTryAcquireSRWLockShared ntdll 1468 -imp 'RtlTryConvertSRWLockSharedToExclusiveOrRelease' RtlTryConvertSRWLockSharedToExclusiveOrRelease ntdll 1469 -imp 'RtlTryEnterCriticalSection' RtlTryEnterCriticalSection ntdll 1470 1 -imp 'RtlUTF8ToUnicodeN' RtlUTF8ToUnicodeN ntdll 1471 -imp 'RtlUmsThreadYield' RtlUmsThreadYield ntdll 1472 -imp 'RtlUnhandledExceptionFilter' RtlUnhandledExceptionFilter ntdll 1473 -imp 'RtlUnhandledExceptionFilter2' RtlUnhandledExceptionFilter2 ntdll 1474 -imp 'RtlUnicodeStringToAnsiSize' RtlUnicodeStringToAnsiSize ntdll 1475 -imp 'RtlUnicodeStringToAnsiString' RtlUnicodeStringToAnsiString ntdll 1476 -imp 'RtlUnicodeStringToCountedOemString' RtlUnicodeStringToCountedOemString ntdll 1477 -imp 'RtlUnicodeStringToInteger' RtlUnicodeStringToInteger ntdll 1478 -imp 'RtlUnicodeStringToOemSize' RtlUnicodeStringToOemSize ntdll 1479 -imp 'RtlUnicodeStringToOemString' RtlUnicodeStringToOemString ntdll 1480 -imp 'RtlUnicodeToCustomCPN' RtlUnicodeToCustomCPN ntdll 1481 -imp 'RtlUnicodeToMultiByteN' RtlUnicodeToMultiByteN ntdll 1482 -imp 'RtlUnicodeToMultiByteSize' RtlUnicodeToMultiByteSize ntdll 1483 -imp 'RtlUnicodeToOemN' RtlUnicodeToOemN ntdll 1484 -imp 'RtlUnicodeToUTF8N' RtlUnicodeToUTF8N ntdll 1485 -imp 'RtlUniform' RtlUniform ntdll 1486 -imp 'RtlUnlockBootStatusData' RtlUnlockBootStatusData ntdll 1487 -imp 'RtlUnlockCurrentThread' RtlUnlockCurrentThread ntdll 1488 -imp 'RtlUnlockHeap' RtlUnlockHeap ntdll 1489 1 -imp 'RtlUnlockMemoryBlockLookaside' RtlUnlockMemoryBlockLookaside ntdll 1490 -imp 'RtlUnlockMemoryStreamRegion' RtlUnlockMemoryStreamRegion ntdll 1491 -imp 'RtlUnlockMemoryZone' RtlUnlockMemoryZone ntdll 1492 -imp 'RtlUnlockModuleSection' RtlUnlockModuleSection ntdll 1493 -imp 'RtlUnsubscribeWnfNotificationWaitForCompletion' RtlUnsubscribeWnfNotificationWaitForCompletion ntdll 1494 -imp 'RtlUnsubscribeWnfNotificationWithCompletionCallback' RtlUnsubscribeWnfNotificationWithCompletionCallback ntdll 1495 -imp 'RtlUnsubscribeWnfStateChangeNotification' RtlUnsubscribeWnfStateChangeNotification ntdll 1496 -imp 'RtlUnwind' RtlUnwind ntdll 1497 -imp 'RtlUnwindEx' RtlUnwindEx ntdll 1498 -imp 'RtlUpcaseUnicodeChar' RtlUpcaseUnicodeChar ntdll 1499 -imp 'RtlUpcaseUnicodeString' RtlUpcaseUnicodeString ntdll 1500 -imp 'RtlUpcaseUnicodeStringToAnsiString' RtlUpcaseUnicodeStringToAnsiString ntdll 1501 -imp 'RtlUpcaseUnicodeStringToCountedOemString' RtlUpcaseUnicodeStringToCountedOemString ntdll 1502 -imp 'RtlUpcaseUnicodeStringToOemString' RtlUpcaseUnicodeStringToOemString ntdll 1503 -imp 'RtlUpcaseUnicodeToCustomCPN' RtlUpcaseUnicodeToCustomCPN ntdll 1504 -imp 'RtlUpcaseUnicodeToMultiByteN' RtlUpcaseUnicodeToMultiByteN ntdll 1505 -imp 'RtlUpcaseUnicodeToOemN' RtlUpcaseUnicodeToOemN ntdll 1506 -imp 'RtlUpdateClonedCriticalSection' RtlUpdateClonedCriticalSection ntdll 1507 -imp 'RtlUpdateClonedSRWLock' RtlUpdateClonedSRWLock ntdll 1508 -imp 'RtlUpdateTimer' RtlUpdateTimer ntdll 1509 -imp 'RtlUpperChar' RtlUpperChar ntdll 1510 -imp 'RtlUpperString' RtlUpperString ntdll 1511 -imp 'RtlUserThreadStart' RtlUserThreadStart ntdll 1512 -imp 'RtlValidAcl' RtlValidAcl ntdll 1513 -imp 'RtlValidProcessProtection' RtlValidProcessProtection ntdll 1514 -imp 'RtlValidRelativeSecurityDescriptor' RtlValidRelativeSecurityDescriptor ntdll 1515 -imp 'RtlValidSecurityDescriptor' RtlValidSecurityDescriptor ntdll 1516 -imp 'RtlValidSid' RtlValidSid ntdll 1517 -imp 'RtlValidateCorrelationVector' RtlValidateCorrelationVector ntdll 1518 -imp 'RtlValidateHeap' RtlValidateHeap ntdll 1519 3 -imp 'RtlValidateProcessHeaps' RtlValidateProcessHeaps ntdll 1520 -imp 'RtlValidateUnicodeString' RtlValidateUnicodeString ntdll 1521 -imp 'RtlVerifyVersionInfo' RtlVerifyVersionInfo ntdll 1522 -imp 'RtlVirtualUnwind' RtlVirtualUnwind ntdll 1523 -imp 'RtlWaitForWnfMetaNotification' RtlWaitForWnfMetaNotification ntdll 1524 -imp 'RtlWaitOnAddress' RtlWaitOnAddress ntdll 1525 -imp 'RtlWakeAddressAll' RtlWakeAddressAll ntdll 1526 -imp 'RtlWakeAddressAllNoFence' RtlWakeAddressAllNoFence ntdll 1527 -imp 'RtlWakeAddressSingle' RtlWakeAddressSingle ntdll 1528 -imp 'RtlWakeAddressSingleNoFence' RtlWakeAddressSingleNoFence ntdll 1529 -imp 'RtlWakeAllConditionVariable' RtlWakeAllConditionVariable ntdll 1530 -imp 'RtlWakeConditionVariable' RtlWakeConditionVariable ntdll 1531 -imp 'RtlWalkFrameChain' RtlWalkFrameChain ntdll 1532 -imp 'RtlWalkHeap' RtlWalkHeap ntdll 1533 2 -imp 'RtlWeaklyEnumerateEntryHashTable' RtlWeaklyEnumerateEntryHashTable ntdll 1534 -imp 'RtlWerpReportException' RtlWerpReportException ntdll 1535 -imp 'RtlWnfCompareChangeStamp' RtlWnfCompareChangeStamp ntdll 1536 -imp 'RtlWnfDllUnloadCallback' RtlWnfDllUnloadCallback ntdll 1537 -imp 'RtlWriteMemoryStream' RtlWriteMemoryStream ntdll 1556 -imp 'RtlWriteNonVolatileMemory' RtlWriteNonVolatileMemory ntdll 1557 -imp 'RtlWriteRegistryValue' RtlWriteRegistryValue ntdll 1558 -imp 'RtlZeroHeap' RtlZeroHeap ntdll 1559 -imp 'RtlZeroMemory' RtlZeroMemory ntdll 1560 -imp 'RtlZombifyActivationContext' RtlZombifyActivationContext ntdll 1561 -imp 'RtlpApplyLengthFunction' RtlpApplyLengthFunction ntdll 1562 -imp 'RtlpCheckDynamicTimeZoneInformation' RtlpCheckDynamicTimeZoneInformation ntdll 1563 -imp 'RtlpCleanupRegistryKeys' RtlpCleanupRegistryKeys ntdll 1564 -imp 'RtlpConvertAbsoluteToRelativeSecurityAttribute' RtlpConvertAbsoluteToRelativeSecurityAttribute ntdll 1565 -imp 'RtlpConvertCultureNamesToLCIDs' RtlpConvertCultureNamesToLCIDs ntdll 1566 -imp 'RtlpConvertLCIDsToCultureNames' RtlpConvertLCIDsToCultureNames ntdll 1567 -imp 'RtlpConvertRelativeToAbsoluteSecurityAttribute' RtlpConvertRelativeToAbsoluteSecurityAttribute ntdll 1568 -imp 'RtlpCreateProcessRegistryInfo' RtlpCreateProcessRegistryInfo ntdll 1569 -imp 'RtlpEnsureBufferSize' RtlpEnsureBufferSize ntdll 1570 -imp 'RtlpExecuteUmsThread' RtlpExecuteUmsThread ntdll 1571 -imp 'RtlpFreezeTimeBias' RtlpFreezeTimeBias ntdll 1572 -imp 'RtlpGetDeviceFamilyInfoEnum' RtlpGetDeviceFamilyInfoEnum ntdll 1573 -imp 'RtlpGetLCIDFromLangInfoNode' RtlpGetLCIDFromLangInfoNode ntdll 1574 -imp 'RtlpGetNameFromLangInfoNode' RtlpGetNameFromLangInfoNode ntdll 1575 -imp 'RtlpGetSystemDefaultUILanguage' RtlpGetSystemDefaultUILanguage ntdll 1576 -imp 'RtlpGetUserOrMachineUILanguage4NLS' RtlpGetUserOrMachineUILanguage4NLS ntdll 1577 -imp 'RtlpInitializeLangRegistryInfo' RtlpInitializeLangRegistryInfo ntdll 1578 -imp 'RtlpIsQualifiedLanguage' RtlpIsQualifiedLanguage ntdll 1579 -imp 'RtlpLoadMachineUIByPolicy' RtlpLoadMachineUIByPolicy ntdll 1580 -imp 'RtlpLoadUserUIByPolicy' RtlpLoadUserUIByPolicy ntdll 1581 -imp 'RtlpMergeSecurityAttributeInformation' RtlpMergeSecurityAttributeInformation ntdll 1582 -imp 'RtlpMuiFreeLangRegistryInfo' RtlpMuiFreeLangRegistryInfo ntdll 1583 -imp 'RtlpMuiRegCreateRegistryInfo' RtlpMuiRegCreateRegistryInfo ntdll 1584 -imp 'RtlpMuiRegFreeRegistryInfo' RtlpMuiRegFreeRegistryInfo ntdll 1585 -imp 'RtlpMuiRegLoadRegistryInfo' RtlpMuiRegLoadRegistryInfo ntdll 1586 -imp 'RtlpNotOwnerCriticalSection' RtlpNotOwnerCriticalSection ntdll 1587 -imp 'RtlpNtCreateKey' RtlpNtCreateKey ntdll 1588 -imp 'RtlpNtEnumerateSubKey' RtlpNtEnumerateSubKey ntdll 1589 -imp 'RtlpNtMakeTemporaryKey' RtlpNtMakeTemporaryKey ntdll 1590 -imp 'RtlpNtOpenKey' RtlpNtOpenKey ntdll 1591 -imp 'RtlpNtQueryValueKey' RtlpNtQueryValueKey ntdll 1592 -imp 'RtlpNtSetValueKey' RtlpNtSetValueKey ntdll 1593 -imp 'RtlpQueryDefaultUILanguage' RtlpQueryDefaultUILanguage ntdll 1594 -imp 'RtlpQueryProcessDebugInformationRemote' RtlpQueryProcessDebugInformationRemote ntdll 1596 -imp 'RtlpRefreshCachedUILanguage' RtlpRefreshCachedUILanguage ntdll 1597 -imp 'RtlpSetInstallLanguage' RtlpSetInstallLanguage ntdll 1598 -imp 'RtlpSetPreferredUILanguages' RtlpSetPreferredUILanguages ntdll 1599 -imp 'RtlpSetUserPreferredUILanguages' RtlpSetUserPreferredUILanguages ntdll 1600 -imp 'RtlpUmsExecuteYieldThreadEnd' RtlpUmsExecuteYieldThreadEnd ntdll 1601 -imp 'RtlpUmsThreadYield' RtlpUmsThreadYield ntdll 1602 -imp 'RtlpUnWaitCriticalSection' RtlpUnWaitCriticalSection ntdll 1603 -imp 'RtlpVerifyAndCommitUILanguageSettings' RtlpVerifyAndCommitUILanguageSettings ntdll 1604 -imp 'RtlpWaitForCriticalSection' RtlpWaitForCriticalSection ntdll 1605 -imp 'RtlxAnsiStringToUnicodeSize' RtlxAnsiStringToUnicodeSize ntdll 1606 -imp 'RtlxOemStringToUnicodeSize' RtlxOemStringToUnicodeSize ntdll 1607 -imp 'RtlxUnicodeStringToAnsiSize' RtlxUnicodeStringToAnsiSize ntdll 1608 -imp 'RtlxUnicodeStringToOemSize' RtlxUnicodeStringToOemSize ntdll 1609 -imp 'SbExecuteProcedure' SbExecuteProcedure ntdll 1610 -imp 'SbSelectProcedure' SbSelectProcedure ntdll 1611 -imp 'ShipAssert' ShipAssert ntdll 1612 -imp 'ShipAssertGetBufferInfo' ShipAssertGetBufferInfo ntdll 1613 -imp 'ShipAssertMsg' ShipAssertMsgW ntdll 1615 -imp 'TpAllocAlpcCompletion' TpAllocAlpcCompletion ntdll 1616 -imp 'TpAllocAlpcCompletionEx' TpAllocAlpcCompletionEx ntdll 1617 -imp 'TpAllocCleanupGroup' TpAllocCleanupGroup ntdll 1618 -imp 'TpAllocIoCompletion' TpAllocIoCompletion ntdll 1619 -imp 'TpAllocJobNotification' TpAllocJobNotification ntdll 1620 -imp 'TpAllocPool' TpAllocPool ntdll 1621 -imp 'TpAllocTimer' TpAllocTimer ntdll 1622 -imp 'TpAllocWait' TpAllocWait ntdll 1623 -imp 'TpAllocWork' TpAllocWork ntdll 1624 -imp 'TpAlpcRegisterCompletionList' TpAlpcRegisterCompletionList ntdll 1625 -imp 'TpAlpcUnregisterCompletionList' TpAlpcUnregisterCompletionList ntdll 1626 -imp 'TpCallbackDetectedUnrecoverableError' TpCallbackDetectedUnrecoverableError ntdll 1627 -imp 'TpCallbackIndependent' TpCallbackIndependent ntdll 1628 -imp 'TpCallbackLeaveCriticalSectionOnCompletion' TpCallbackLeaveCriticalSectionOnCompletion ntdll 1629 -imp 'TpCallbackMayRunLong' TpCallbackMayRunLong ntdll 1630 -imp 'TpCallbackReleaseMutexOnCompletion' TpCallbackReleaseMutexOnCompletion ntdll 1631 -imp 'TpCallbackReleaseSemaphoreOnCompletion' TpCallbackReleaseSemaphoreOnCompletion ntdll 1632 -imp 'TpCallbackSendAlpcMessageOnCompletion' TpCallbackSendAlpcMessageOnCompletion ntdll 1633 -imp 'TpCallbackSendPendingAlpcMessage' TpCallbackSendPendingAlpcMessage ntdll 1634 -imp 'TpCallbackSetEventOnCompletion' TpCallbackSetEventOnCompletion ntdll 1635 -imp 'TpCallbackUnloadDllOnCompletion' TpCallbackUnloadDllOnCompletion ntdll 1636 -imp 'TpCancelAsyncIoOperation' TpCancelAsyncIoOperation ntdll 1637 -imp 'TpCaptureCaller' TpCaptureCaller ntdll 1638 -imp 'TpCheckTerminateWorker' TpCheckTerminateWorker ntdll 1639 -imp 'TpDbgDumpHeapUsage' TpDbgDumpHeapUsage ntdll 1640 -imp 'TpDbgSetLogRoutine' TpDbgSetLogRoutine ntdll 1641 -imp 'TpDisablePoolCallbackChecks' TpDisablePoolCallbackChecks ntdll 1642 -imp 'TpDisassociateCallback' TpDisassociateCallback ntdll 1643 -imp 'TpIsTimerSet' TpIsTimerSet ntdll 1644 -imp 'TpPostWork' TpPostWork ntdll 1645 -imp 'TpQueryPoolStackInformation' TpQueryPoolStackInformation ntdll 1646 -imp 'TpReleaseAlpcCompletion' TpReleaseAlpcCompletion ntdll 1647 -imp 'TpReleaseCleanupGroup' TpReleaseCleanupGroup ntdll 1648 -imp 'TpReleaseCleanupGroupMembers' TpReleaseCleanupGroupMembers ntdll 1649 -imp 'TpReleaseIoCompletion' TpReleaseIoCompletion ntdll 1650 -imp 'TpReleaseJobNotification' TpReleaseJobNotification ntdll 1651 -imp 'TpReleasePool' TpReleasePool ntdll 1652 -imp 'TpReleaseTimer' TpReleaseTimer ntdll 1653 -imp 'TpReleaseWait' TpReleaseWait ntdll 1654 -imp 'TpReleaseWork' TpReleaseWork ntdll 1655 -imp 'TpSetDefaultPoolMaxThreads' TpSetDefaultPoolMaxThreads ntdll 1656 -imp 'TpSetDefaultPoolStackInformation' TpSetDefaultPoolStackInformation ntdll 1657 -imp 'TpSetPoolMaxThreads' TpSetPoolMaxThreads ntdll 1658 -imp 'TpSetPoolMaxThreadsSoftLimit' TpSetPoolMaxThreadsSoftLimit ntdll 1659 -imp 'TpSetPoolMinThreads' TpSetPoolMinThreads ntdll 1660 -imp 'TpSetPoolStackInformation' TpSetPoolStackInformation ntdll 1661 -imp 'TpSetPoolThreadBasePriority' TpSetPoolThreadBasePriority ntdll 1662 -imp 'TpSetPoolWorkerThreadIdleTimeout' TpSetPoolWorkerThreadIdleTimeout ntdll 1663 -imp 'TpSetTimer' TpSetTimer ntdll 1664 -imp 'TpSetTimerEx' TpSetTimerEx ntdll 1665 -imp 'TpSetWait' TpSetWait ntdll 1666 -imp 'TpSetWaitEx' TpSetWaitEx ntdll 1667 -imp 'TpSimpleTryPost' TpSimpleTryPost ntdll 1668 -imp 'TpStartAsyncIoOperation' TpStartAsyncIoOperation ntdll 1669 -imp 'TpTimerOutstandingCallbackCount' TpTimerOutstandingCallbackCount ntdll 1670 -imp 'TpTrimPools' TpTrimPools ntdll 1671 -imp 'TpWaitForAlpcCompletion' TpWaitForAlpcCompletion ntdll 1672 -imp 'TpWaitForIoCompletion' TpWaitForIoCompletion ntdll 1673 -imp 'TpWaitForJobNotification' TpWaitForJobNotification ntdll 1674 -imp 'TpWaitForTimer' TpWaitForTimer ntdll 1675 -imp 'TpWaitForWait' TpWaitForWait ntdll 1676 -imp 'TpWaitForWork' TpWaitForWork ntdll 1677 -imp 'VerSetConditionMask' VerSetConditionMask ntdll 1678 -imp 'WerReportExceptionWorker' WerReportExceptionWorker ntdll 1679 -imp 'WerReportSQMEvent' WerReportSQMEvent ntdll 1680 -imp 'WinSqmAddToAverageDWORD' WinSqmAddToAverageDWORD ntdll 1681 -imp 'WinSqmAddToStream' WinSqmAddToStream ntdll 1682 -imp 'WinSqmAddToStreamEx' WinSqmAddToStreamEx ntdll 1683 -imp 'WinSqmCheckEscalationAddToStreamEx' WinSqmCheckEscalationAddToStreamEx ntdll 1684 -imp 'WinSqmCheckEscalationSetDWORD' WinSqmCheckEscalationSetDWORD ntdll 1685 -imp 'WinSqmCheckEscalationSetDWORD64' WinSqmCheckEscalationSetDWORD64 ntdll 1686 -imp 'WinSqmCheckEscalationSetString' WinSqmCheckEscalationSetString ntdll 1687 -imp 'WinSqmCommonDatapointDelete' WinSqmCommonDatapointDelete ntdll 1688 -imp 'WinSqmCommonDatapointSetDWORD' WinSqmCommonDatapointSetDWORD ntdll 1689 -imp 'WinSqmCommonDatapointSetDWORD64' WinSqmCommonDatapointSetDWORD64 ntdll 1690 -imp 'WinSqmCommonDatapointSetStreamEx' WinSqmCommonDatapointSetStreamEx ntdll 1691 -imp 'WinSqmCommonDatapointSetString' WinSqmCommonDatapointSetString ntdll 1692 -imp 'WinSqmEndSession' WinSqmEndSession ntdll 1693 -imp 'WinSqmEventEnabled' WinSqmEventEnabled ntdll 1694 -imp 'WinSqmEventWrite' WinSqmEventWrite ntdll 1695 -imp 'WinSqmGetEscalationRuleStatus' WinSqmGetEscalationRuleStatus ntdll 1696 -imp 'WinSqmGetInstrumentationProperty' WinSqmGetInstrumentationProperty ntdll 1697 -imp 'WinSqmIncrementDWORD' WinSqmIncrementDWORD ntdll 1698 -imp 'WinSqmIsOptedIn' WinSqmIsOptedIn ntdll 1699 -imp 'WinSqmIsOptedInEx' WinSqmIsOptedInEx ntdll 1700 -imp 'WinSqmIsSessionDisabled' WinSqmIsSessionDisabled ntdll 1701 -imp 'WinSqmSetDWORD' WinSqmSetDWORD ntdll 1702 -imp 'WinSqmSetDWORD64' WinSqmSetDWORD64 ntdll 1703 -imp 'WinSqmSetEscalationInfo' WinSqmSetEscalationInfo ntdll 1704 -imp 'WinSqmSetIfMaxDWORD' WinSqmSetIfMaxDWORD ntdll 1705 -imp 'WinSqmSetIfMinDWORD' WinSqmSetIfMinDWORD ntdll 1706 -imp 'WinSqmSetString' WinSqmSetString ntdll 1707 -imp 'WinSqmStartSession' WinSqmStartSession ntdll 1708 -imp 'WinSqmStartSessionForPartner' WinSqmStartSessionForPartner ntdll 1709 -imp 'WinSqmStartSqmOptinListener' WinSqmStartSqmOptinListener ntdll 1710 -imp 'ZwAcceptConnectPort' ZwAcceptConnectPort ntdll 1711 -imp 'ZwAccessCheck' ZwAccessCheck ntdll 1712 -imp 'ZwAccessCheckAndAuditAlarm' ZwAccessCheckAndAuditAlarm ntdll 1713 -imp 'ZwAccessCheckByType' ZwAccessCheckByType ntdll 1714 -imp 'ZwAccessCheckByTypeAndAuditAlarm' ZwAccessCheckByTypeAndAuditAlarm ntdll 1715 -imp 'ZwAccessCheckByTypeResultList' ZwAccessCheckByTypeResultList ntdll 1716 -imp 'ZwAccessCheckByTypeResultListAndAuditAlarm' ZwAccessCheckByTypeResultListAndAuditAlarm ntdll 1717 -imp 'ZwAccessCheckByTypeResultListAndAuditAlarmByHandle' ZwAccessCheckByTypeResultListAndAuditAlarmByHandle ntdll 1718 -imp 'ZwAcquireProcessActivityReference' ZwAcquireProcessActivityReference ntdll 1719 -imp 'ZwAddAtom' ZwAddAtom ntdll 1720 -imp 'ZwAddAtomEx' ZwAddAtomEx ntdll 1721 -imp 'ZwAddBootEntry' ZwAddBootEntry ntdll 1722 -imp 'ZwAddDriverEntry' ZwAddDriverEntry ntdll 1723 -imp 'ZwAdjustGroupsToken' ZwAdjustGroupsToken ntdll 1724 -imp 'ZwAdjustPrivilegesToken' ZwAdjustPrivilegesToken ntdll 1725 -imp 'ZwAdjustTokenClaimsAndDeviceGroups' ZwAdjustTokenClaimsAndDeviceGroups ntdll 1726 -imp 'ZwAlertResumeThread' ZwAlertResumeThread ntdll 1727 -imp 'ZwAlertThread' ZwAlertThread ntdll 1728 -imp 'ZwAlertThreadByThreadId' ZwAlertThreadByThreadId ntdll 1729 -imp 'ZwAllocateLocallyUniqueId' ZwAllocateLocallyUniqueId ntdll 1730 -imp 'ZwAllocateReserveObject' ZwAllocateReserveObject ntdll 1731 -imp 'ZwAllocateUserPhysicalPages' ZwAllocateUserPhysicalPages ntdll 1732 -imp 'ZwAllocateUuids' ZwAllocateUuids ntdll 1733 -imp 'ZwAllocateVirtualMemory' ZwAllocateVirtualMemory ntdll 1734 -imp 'ZwAllocateVirtualMemoryEx' ZwAllocateVirtualMemoryEx ntdll 1735 -imp 'ZwAlpcAcceptConnectPort' ZwAlpcAcceptConnectPort ntdll 1736 -imp 'ZwAlpcCancelMessage' ZwAlpcCancelMessage ntdll 1737 -imp 'ZwAlpcConnectPort' ZwAlpcConnectPort ntdll 1738 -imp 'ZwAlpcConnectPortEx' ZwAlpcConnectPortEx ntdll 1739 -imp 'ZwAlpcCreatePort' ZwAlpcCreatePort ntdll 1740 -imp 'ZwAlpcCreatePortSection' ZwAlpcCreatePortSection ntdll 1741 -imp 'ZwAlpcCreateResourceReserve' ZwAlpcCreateResourceReserve ntdll 1742 -imp 'ZwAlpcCreateSectionView' ZwAlpcCreateSectionView ntdll 1743 -imp 'ZwAlpcCreateSecurityContext' ZwAlpcCreateSecurityContext ntdll 1744 -imp 'ZwAlpcDeletePortSection' ZwAlpcDeletePortSection ntdll 1745 -imp 'ZwAlpcDeleteResourceReserve' ZwAlpcDeleteResourceReserve ntdll 1746 -imp 'ZwAlpcDeleteSectionView' ZwAlpcDeleteSectionView ntdll 1747 -imp 'ZwAlpcDeleteSecurityContext' ZwAlpcDeleteSecurityContext ntdll 1748 -imp 'ZwAlpcDisconnectPort' ZwAlpcDisconnectPort ntdll 1749 -imp 'ZwAlpcImpersonateClientContainerOfPort' ZwAlpcImpersonateClientContainerOfPort ntdll 1750 -imp 'ZwAlpcImpersonateClientOfPort' ZwAlpcImpersonateClientOfPort ntdll 1751 -imp 'ZwAlpcOpenSenderProcess' ZwAlpcOpenSenderProcess ntdll 1752 -imp 'ZwAlpcOpenSenderThread' ZwAlpcOpenSenderThread ntdll 1753 -imp 'ZwAlpcQueryInformation' ZwAlpcQueryInformation ntdll 1754 -imp 'ZwAlpcQueryInformationMessage' ZwAlpcQueryInformationMessage ntdll 1755 -imp 'ZwAlpcRevokeSecurityContext' ZwAlpcRevokeSecurityContext ntdll 1756 -imp 'ZwAlpcSendWaitReceivePort' ZwAlpcSendWaitReceivePort ntdll 1757 -imp 'ZwAlpcSetInformation' ZwAlpcSetInformation ntdll 1758 -imp 'ZwApphelpCacheControl' ZwApphelpCacheControl ntdll 1759 -imp 'ZwAreMappedFilesTheSame' ZwAreMappedFilesTheSame ntdll 1760 2 -imp 'ZwAssignProcessToJobObject' ZwAssignProcessToJobObject ntdll 1761 -imp 'ZwAssociateWaitCompletionPacket' ZwAssociateWaitCompletionPacket ntdll 1762 -imp 'ZwCallEnclave' ZwCallEnclave ntdll 1763 -imp 'ZwCallbackReturn' ZwCallbackReturn ntdll 1764 -imp 'ZwCancelIoFile' ZwCancelIoFile ntdll 1765 -imp 'ZwCancelIoFileEx' ZwCancelIoFileEx ntdll 1766 -imp 'ZwCancelSynchronousIoFile' ZwCancelSynchronousIoFile ntdll 1767 -imp 'ZwCancelTimer' ZwCancelTimer ntdll 1768 -imp 'ZwCancelTimer2' ZwCancelTimer2 ntdll 1769 -imp 'ZwCancelWaitCompletionPacket' ZwCancelWaitCompletionPacket ntdll 1770 -imp 'ZwClearEvent' ZwClearEvent ntdll 1771 -imp 'ZwClose' ZwClose ntdll 1772 -imp 'ZwCloseObjectAuditAlarm' ZwCloseObjectAuditAlarm ntdll 1773 -imp 'ZwCommitComplete' ZwCommitComplete ntdll 1774 -imp 'ZwCommitEnlistment' ZwCommitEnlistment ntdll 1775 -imp 'ZwCommitRegistryTransaction' ZwCommitRegistryTransaction ntdll 1776 -imp 'ZwCommitTransaction' ZwCommitTransaction ntdll 1777 -imp 'ZwCompactKeys' ZwCompactKeys ntdll 1778 -imp 'ZwCompareObjects' ZwCompareObjects ntdll 1779 -imp 'ZwCompareSigningLevels' ZwCompareSigningLevels ntdll 1780 -imp 'ZwCompareTokens' ZwCompareTokens ntdll 1781 -imp 'ZwCompleteConnectPort' ZwCompleteConnectPort ntdll 1782 -imp 'ZwCompressKey' ZwCompressKey ntdll 1783 -imp 'ZwConnectPort' ZwConnectPort ntdll 1784 -imp 'ZwContinue' ZwContinue ntdll 1785 -imp 'ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter' ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter ntdll 1786 -imp 'ZwCreateDebugObject' ZwCreateDebugObject ntdll 1787 -imp 'ZwCreateDirectoryObject' ZwCreateDirectoryObject ntdll 1788 -imp 'ZwCreateDirectoryObjectEx' ZwCreateDirectoryObjectEx ntdll 1789 -imp 'ZwCreateEnclave' ZwCreateEnclave ntdll 1790 -imp 'ZwCreateEnlistment' ZwCreateEnlistment ntdll 1791 -imp 'ZwCreateEvent' ZwCreateEvent ntdll 1792 -imp 'ZwCreateEventPair' ZwCreateEventPair ntdll 1793 -imp 'ZwCreateFile' ZwCreateFile ntdll 1794 -imp 'ZwCreateIRTimer' ZwCreateIRTimer ntdll 1795 -imp 'ZwCreateIoCompletion' ZwCreateIoCompletion ntdll 1796 -imp 'ZwCreateJobObject' ZwCreateJobObject ntdll 1797 -imp 'ZwCreateJobSet' ZwCreateJobSet ntdll 1798 -imp 'ZwCreateKey' ZwCreateKey ntdll 1799 -imp 'ZwCreateKeyTransacted' ZwCreateKeyTransacted ntdll 1800 -imp 'ZwCreateKeyedEvent' ZwCreateKeyedEvent ntdll 1801 -imp 'ZwCreateLowBoxToken' ZwCreateLowBoxToken ntdll 1802 -imp 'ZwCreateMailslotFile' ZwCreateMailslotFile ntdll 1803 -imp 'ZwCreateMutant' ZwCreateMutant ntdll 1804 -imp 'ZwCreateNamedPipeFile' ZwCreateNamedPipeFile ntdll 1805 -imp 'ZwCreatePagingFile' ZwCreatePagingFile ntdll 1806 -imp 'ZwCreatePartition' ZwCreatePartition ntdll 1807 -imp 'ZwCreatePort' ZwCreatePort ntdll 1808 -imp 'ZwCreatePrivateNamespace' ZwCreatePrivateNamespace ntdll 1809 -imp 'ZwCreateProcess' ZwCreateProcess ntdll 1810 -imp 'ZwCreateProcessEx' ZwCreateProcessEx ntdll 1811 -imp 'ZwCreateProfile' ZwCreateProfile ntdll 1812 -imp 'ZwCreateProfileEx' ZwCreateProfileEx ntdll 1813 -imp 'ZwCreateRegistryTransaction' ZwCreateRegistryTransaction ntdll 1814 -imp 'ZwCreateResourceManager' ZwCreateResourceManager ntdll 1815 -imp 'ZwCreateSection' ZwCreateSection ntdll 1816 -imp 'ZwCreateSemaphore' ZwCreateSemaphore ntdll 1817 -imp 'ZwCreateSymbolicLinkObject' ZwCreateSymbolicLinkObject ntdll 1818 -imp 'ZwCreateThread' ZwCreateThread ntdll 1819 -imp 'ZwCreateThreadEx' ZwCreateThreadEx ntdll 1820 -imp 'ZwCreateTimer' ZwCreateTimer ntdll 1821 -imp 'ZwCreateTimer2' ZwCreateTimer2 ntdll 1822 -imp 'ZwCreateToken' ZwCreateToken ntdll 1823 -imp 'ZwCreateTokenEx' ZwCreateTokenEx ntdll 1824 -imp 'ZwCreateTransaction' ZwCreateTransaction ntdll 1825 -imp 'ZwCreateTransactionManager' ZwCreateTransactionManager ntdll 1826 -imp 'ZwCreateUserProcess' ZwCreateUserProcess ntdll 1827 -imp 'ZwCreateWaitCompletionPacket' ZwCreateWaitCompletionPacket ntdll 1828 -imp 'ZwCreateWaitablePort' ZwCreateWaitablePort ntdll 1829 -imp 'ZwCreateWnfStateName' ZwCreateWnfStateName ntdll 1830 -imp 'ZwCreateWorkerFactory' ZwCreateWorkerFactory ntdll 1831 -imp 'ZwDebugActiveProcess' ZwDebugActiveProcess ntdll 1832 -imp 'ZwDebugContinue' ZwDebugContinue ntdll 1833 -imp 'ZwDelayExecution' ZwDelayExecution ntdll 1834 -imp 'ZwDeleteAtom' ZwDeleteAtom ntdll 1835 -imp 'ZwDeleteBootEntry' ZwDeleteBootEntry ntdll 1836 -imp 'ZwDeleteDriverEntry' ZwDeleteDriverEntry ntdll 1837 -imp 'ZwDeleteFile' ZwDeleteFile ntdll 1838 -imp 'ZwDeleteKey' ZwDeleteKey ntdll 1839 -imp 'ZwDeleteObjectAuditAlarm' ZwDeleteObjectAuditAlarm ntdll 1840 -imp 'ZwDeletePrivateNamespace' ZwDeletePrivateNamespace ntdll 1841 -imp 'ZwDeleteValueKey' ZwDeleteValueKey ntdll 1842 -imp 'ZwDeleteWnfStateData' ZwDeleteWnfStateData ntdll 1843 -imp 'ZwDeleteWnfStateName' ZwDeleteWnfStateName ntdll 1844 -imp 'ZwDeviceIoControlFile' ZwDeviceIoControlFile ntdll 1845 -imp 'ZwDisableLastKnownGood' ZwDisableLastKnownGood ntdll 1846 -imp 'ZwDisplayString' ZwDisplayString ntdll 1847 -imp 'ZwDrawText' ZwDrawText ntdll 1848 -imp 'ZwDuplicateObject' ZwDuplicateObject ntdll 1849 -imp 'ZwDuplicateToken' ZwDuplicateToken ntdll 1850 -imp 'ZwEnableLastKnownGood' ZwEnableLastKnownGood ntdll 1851 -imp 'ZwEnumerateBootEntries' ZwEnumerateBootEntries ntdll 1852 -imp 'ZwEnumerateDriverEntries' ZwEnumerateDriverEntries ntdll 1853 -imp 'ZwEnumerateKey' ZwEnumerateKey ntdll 1854 -imp 'ZwEnumerateSystemEnvironmentValuesEx' ZwEnumerateSystemEnvironmentValuesEx ntdll 1855 -imp 'ZwEnumerateTransactionObject' ZwEnumerateTransactionObject ntdll 1856 -imp 'ZwEnumerateValueKey' ZwEnumerateValueKey ntdll 1857 -imp 'ZwExtendSection' ZwExtendSection ntdll 1858 -imp 'ZwFilterBootOption' ZwFilterBootOption ntdll 1859 -imp 'ZwFilterToken' ZwFilterToken ntdll 1860 -imp 'ZwFilterTokenEx' ZwFilterTokenEx ntdll 1861 -imp 'ZwFindAtom' ZwFindAtom ntdll 1862 -imp 'ZwFlushBuffersFile' ZwFlushBuffersFile ntdll 1863 -imp 'ZwFlushBuffersFileEx' ZwFlushBuffersFileEx ntdll 1864 -imp 'ZwFlushInstallUILanguage' ZwFlushInstallUILanguage ntdll 1865 -imp 'ZwFlushInstructionCache' ZwFlushInstructionCache ntdll 1866 -imp 'ZwFlushKey' ZwFlushKey ntdll 1867 -imp 'ZwFlushProcessWriteBuffers' ZwFlushProcessWriteBuffers ntdll 1868 -imp 'ZwFlushVirtualMemory' ZwFlushVirtualMemory ntdll 1869 -imp 'ZwFlushWriteBuffer' ZwFlushWriteBuffer ntdll 1870 -imp 'ZwFreeUserPhysicalPages' ZwFreeUserPhysicalPages ntdll 1871 -imp 'ZwFreeVirtualMemory' ZwFreeVirtualMemory ntdll 1872 -imp 'ZwFreezeRegistry' ZwFreezeRegistry ntdll 1873 -imp 'ZwFreezeTransactions' ZwFreezeTransactions ntdll 1874 -imp 'ZwFsControlFile' ZwFsControlFile ntdll 1875 -imp 'ZwGetCachedSigningLevel' ZwGetCachedSigningLevel ntdll 1876 -imp 'ZwGetCompleteWnfStateSubscription' ZwGetCompleteWnfStateSubscription ntdll 1877 -imp 'ZwGetContextThread' ZwGetContextThread ntdll 1878 -imp 'ZwGetCurrentProcessorNumber' ZwGetCurrentProcessorNumber ntdll 1879 -imp 'ZwGetCurrentProcessorNumberEx' ZwGetCurrentProcessorNumberEx ntdll 1880 -imp 'ZwGetDevicePowerState' ZwGetDevicePowerState ntdll 1881 -imp 'ZwGetMUIRegistryInfo' ZwGetMUIRegistryInfo ntdll 1882 -imp 'ZwGetNextProcess' ZwGetNextProcess ntdll 1883 -imp 'ZwGetNextThread' ZwGetNextThread ntdll 1884 -imp 'ZwGetNlsSectionPtr' ZwGetNlsSectionPtr ntdll 1885 -imp 'ZwGetNotificationResourceManager' ZwGetNotificationResourceManager ntdll 1886 -imp 'ZwGetWriteWatch' ZwGetWriteWatch ntdll 1887 -imp 'ZwImpersonateAnonymousToken' ZwImpersonateAnonymousToken ntdll 1888 -imp 'ZwImpersonateClientOfPort' ZwImpersonateClientOfPort ntdll 1889 -imp 'ZwImpersonateThread' ZwImpersonateThread ntdll 1890 -imp 'ZwInitializeEnclave' ZwInitializeEnclave ntdll 1891 -imp 'ZwInitializeNlsFiles' ZwInitializeNlsFiles ntdll 1892 -imp 'ZwInitializeRegistry' ZwInitializeRegistry ntdll 1893 -imp 'ZwInitiatePowerAction' ZwInitiatePowerAction ntdll 1894 -imp 'ZwIsProcessInJob' ZwIsProcessInJob ntdll 1895 -imp 'ZwIsSystemResumeAutomatic' ZwIsSystemResumeAutomatic ntdll 1896 -imp 'ZwIsUILanguageComitted' ZwIsUILanguageComitted ntdll 1897 -imp 'ZwListenPort' ZwListenPort ntdll 1898 -imp 'ZwLoadDriver' ZwLoadDriver ntdll 1899 -imp 'ZwLoadEnclaveData' ZwLoadEnclaveData ntdll 1900 -imp 'ZwLoadHotPatch' ZwLoadHotPatch ntdll 1901 -imp 'ZwLoadKey' ZwLoadKey ntdll 1902 -imp 'ZwLoadKey2' ZwLoadKey2 ntdll 1903 -imp 'ZwLoadKeyEx' ZwLoadKeyEx ntdll 1904 -imp 'ZwLockFile' ZwLockFile ntdll 1905 -imp 'ZwLockProductActivationKeys' ZwLockProductActivationKeys ntdll 1906 -imp 'ZwLockRegistryKey' ZwLockRegistryKey ntdll 1907 -imp 'ZwLockVirtualMemory' ZwLockVirtualMemory ntdll 1908 -imp 'ZwMakePermanentObject' ZwMakePermanentObject ntdll 1909 -imp 'ZwMakeTemporaryObject' ZwMakeTemporaryObject ntdll 1910 -imp 'ZwManagePartition' ZwManagePartition ntdll 1911 -imp 'ZwMapCMFModule' ZwMapCMFModule ntdll 1912 -imp 'ZwMapUserPhysicalPages' ZwMapUserPhysicalPages ntdll 1913 -imp 'ZwMapUserPhysicalPagesScatter' ZwMapUserPhysicalPagesScatter ntdll 1914 -imp 'ZwMapViewOfSection' ZwMapViewOfSection ntdll 1915 -imp 'ZwMapViewOfSectionEx' ZwMapViewOfSectionEx ntdll 1916 -imp 'ZwModifyBootEntry' ZwModifyBootEntry ntdll 1917 -imp 'ZwModifyDriverEntry' ZwModifyDriverEntry ntdll 1918 -imp 'ZwNotifyChangeDirectoryFile' ZwNotifyChangeDirectoryFile ntdll 1919 -imp 'ZwNotifyChangeDirectoryFileEx' ZwNotifyChangeDirectoryFileEx ntdll 1920 -imp 'ZwNotifyChangeKey' ZwNotifyChangeKey ntdll 1921 -imp 'ZwNotifyChangeMultipleKeys' ZwNotifyChangeMultipleKeys ntdll 1922 -imp 'ZwNotifyChangeSession' ZwNotifyChangeSession ntdll 1923 -imp 'ZwOpenDirectoryObject' ZwOpenDirectoryObject ntdll 1924 -imp 'ZwOpenEnlistment' ZwOpenEnlistment ntdll 1925 -imp 'ZwOpenEvent' ZwOpenEvent ntdll 1926 -imp 'ZwOpenEventPair' ZwOpenEventPair ntdll 1927 -imp 'ZwOpenFile' ZwOpenFile ntdll 1928 -imp 'ZwOpenIoCompletion' ZwOpenIoCompletion ntdll 1929 -imp 'ZwOpenJobObject' ZwOpenJobObject ntdll 1930 -imp 'ZwOpenKey' ZwOpenKey ntdll 1931 -imp 'ZwOpenKeyEx' ZwOpenKeyEx ntdll 1932 -imp 'ZwOpenKeyTransacted' ZwOpenKeyTransacted ntdll 1933 -imp 'ZwOpenKeyTransactedEx' ZwOpenKeyTransactedEx ntdll 1934 -imp 'ZwOpenKeyedEvent' ZwOpenKeyedEvent ntdll 1935 -imp 'ZwOpenMutant' ZwOpenMutant ntdll 1936 -imp 'ZwOpenObjectAuditAlarm' ZwOpenObjectAuditAlarm ntdll 1937 -imp 'ZwOpenPartition' ZwOpenPartition ntdll 1938 -imp 'ZwOpenPrivateNamespace' ZwOpenPrivateNamespace ntdll 1939 -imp 'ZwOpenProcess' ZwOpenProcess ntdll 1940 -imp 'ZwOpenProcessToken' ZwOpenProcessToken ntdll 1941 -imp 'ZwOpenProcessTokenEx' ZwOpenProcessTokenEx ntdll 1942 -imp 'ZwOpenRegistryTransaction' ZwOpenRegistryTransaction ntdll 1943 -imp 'ZwOpenResourceManager' ZwOpenResourceManager ntdll 1944 -imp 'ZwOpenSection' ZwOpenSection ntdll 1945 -imp 'ZwOpenSemaphore' ZwOpenSemaphore ntdll 1946 -imp 'ZwOpenSession' ZwOpenSession ntdll 1947 -imp 'ZwOpenSymbolicLinkObject' ZwOpenSymbolicLinkObject ntdll 1948 -imp 'ZwOpenThread' ZwOpenThread ntdll 1949 -imp 'ZwOpenThreadToken' ZwOpenThreadToken ntdll 1950 -imp 'ZwOpenThreadTokenEx' ZwOpenThreadTokenEx ntdll 1951 -imp 'ZwOpenTimer' ZwOpenTimer ntdll 1952 -imp 'ZwOpenTransaction' ZwOpenTransaction ntdll 1953 -imp 'ZwOpenTransactionManager' ZwOpenTransactionManager ntdll 1954 -imp 'ZwPlugPlayControl' ZwPlugPlayControl ntdll 1955 -imp 'ZwPowerInformation' ZwPowerInformation ntdll 1956 -imp 'ZwPrePrepareComplete' ZwPrePrepareComplete ntdll 1957 -imp 'ZwPrePrepareEnlistment' ZwPrePrepareEnlistment ntdll 1958 -imp 'ZwPrepareComplete' ZwPrepareComplete ntdll 1959 -imp 'ZwPrepareEnlistment' ZwPrepareEnlistment ntdll 1960 -imp 'ZwPrivilegeCheck' ZwPrivilegeCheck ntdll 1961 -imp 'ZwPrivilegeObjectAuditAlarm' ZwPrivilegeObjectAuditAlarm ntdll 1962 -imp 'ZwPrivilegedServiceAuditAlarm' ZwPrivilegedServiceAuditAlarm ntdll 1963 -imp 'ZwPropagationComplete' ZwPropagationComplete ntdll 1964 -imp 'ZwPropagationFailed' ZwPropagationFailed ntdll 1965 -imp 'ZwProtectVirtualMemory' ZwProtectVirtualMemory ntdll 1966 -imp 'ZwPulseEvent' ZwPulseEvent ntdll 1967 -imp 'ZwQueryAttributesFile' ZwQueryAttributesFile ntdll 1968 -imp 'ZwQueryAuxiliaryCounterFrequency' ZwQueryAuxiliaryCounterFrequency ntdll 1969 -imp 'ZwQueryBootEntryOrder' ZwQueryBootEntryOrder ntdll 1970 -imp 'ZwQueryBootOptions' ZwQueryBootOptions ntdll 1971 -imp 'ZwQueryDebugFilterState' ZwQueryDebugFilterState ntdll 1972 -imp 'ZwQueryDefaultLocale' ZwQueryDefaultLocale ntdll 1973 -imp 'ZwQueryDefaultUILanguage' ZwQueryDefaultUILanguage ntdll 1974 -imp 'ZwQueryDirectoryFile' ZwQueryDirectoryFile ntdll 1975 -imp 'ZwQueryDirectoryFileEx' ZwQueryDirectoryFileEx ntdll 1976 -imp 'ZwQueryDirectoryObject' ZwQueryDirectoryObject ntdll 1977 -imp 'ZwQueryDriverEntryOrder' ZwQueryDriverEntryOrder ntdll 1978 -imp 'ZwQueryEaFile' ZwQueryEaFile ntdll 1979 -imp 'ZwQueryEvent' ZwQueryEvent ntdll 1980 -imp 'ZwQueryFullAttributesFile' ZwQueryFullAttributesFile ntdll 1981 -imp 'ZwQueryInformationAtom' ZwQueryInformationAtom ntdll 1982 -imp 'ZwQueryInformationByName' ZwQueryInformationByName ntdll 1983 -imp 'ZwQueryInformationEnlistment' ZwQueryInformationEnlistment ntdll 1984 -imp 'ZwQueryInformationFile' ZwQueryInformationFile ntdll 1985 -imp 'ZwQueryInformationJobObject' ZwQueryInformationJobObject ntdll 1986 -imp 'ZwQueryInformationPort' ZwQueryInformationPort ntdll 1987 -imp 'ZwQueryInformationProcess' ZwQueryInformationProcess ntdll 1988 -imp 'ZwQueryInformationResourceManager' ZwQueryInformationResourceManager ntdll 1989 -imp 'ZwQueryInformationThread' ZwQueryInformationThread ntdll 1990 -imp 'ZwQueryInformationToken' ZwQueryInformationToken ntdll 1991 -imp 'ZwQueryInformationTransaction' ZwQueryInformationTransaction ntdll 1992 -imp 'ZwQueryInformationTransactionManager' ZwQueryInformationTransactionManager ntdll 1993 -imp 'ZwQueryInformationWorkerFactory' ZwQueryInformationWorkerFactory ntdll 1994 -imp 'ZwQueryInstallUILanguage' ZwQueryInstallUILanguage ntdll 1995 -imp 'ZwQueryIntervalProfile' ZwQueryIntervalProfile ntdll 1996 -imp 'ZwQueryIoCompletion' ZwQueryIoCompletion ntdll 1997 -imp 'ZwQueryKey' ZwQueryKey ntdll 1998 -imp 'ZwQueryLicenseValue' ZwQueryLicenseValue ntdll 1999 -imp 'ZwQueryMultipleValueKey' ZwQueryMultipleValueKey ntdll 2000 -imp 'ZwQueryMutant' ZwQueryMutant ntdll 2001 -imp 'ZwQueryObject' ZwQueryObject ntdll 2002 -imp 'ZwQueryOpenSubKeys' ZwQueryOpenSubKeys ntdll 2003 -imp 'ZwQueryOpenSubKeysEx' ZwQueryOpenSubKeysEx ntdll 2004 -imp 'ZwQueryPerformanceCounter' ZwQueryPerformanceCounter ntdll 2005 -imp 'ZwQueryPortInformationProcess' ZwQueryPortInformationProcess ntdll 2006 -imp 'ZwQueryQuotaInformationFile' ZwQueryQuotaInformationFile ntdll 2007 -imp 'ZwQuerySection' ZwQuerySection ntdll 2008 -imp 'ZwQuerySecurityAttributesToken' ZwQuerySecurityAttributesToken ntdll 2009 -imp 'ZwQuerySecurityObject' ZwQuerySecurityObject ntdll 2010 -imp 'ZwQuerySecurityPolicy' ZwQuerySecurityPolicy ntdll 2011 -imp 'ZwQuerySemaphore' ZwQuerySemaphore ntdll 2012 -imp 'ZwQuerySymbolicLinkObject' ZwQuerySymbolicLinkObject ntdll 2013 -imp 'ZwQuerySystemEnvironmentValue' ZwQuerySystemEnvironmentValue ntdll 2014 -imp 'ZwQuerySystemEnvironmentValueEx' ZwQuerySystemEnvironmentValueEx ntdll 2015 -imp 'ZwQuerySystemInformation' ZwQuerySystemInformation ntdll 2016 -imp 'ZwQuerySystemInformationEx' ZwQuerySystemInformationEx ntdll 2017 -imp 'ZwQuerySystemTime' ZwQuerySystemTime ntdll 2018 -imp 'ZwQueryTimer' ZwQueryTimer ntdll 2019 -imp 'ZwQueryTimerResolution' ZwQueryTimerResolution ntdll 2020 -imp 'ZwQueryValueKey' ZwQueryValueKey ntdll 2021 -imp 'ZwQueryVirtualMemory' ZwQueryVirtualMemory ntdll 2022 -imp 'ZwQueryVolumeInformationFile' ZwQueryVolumeInformationFile ntdll 2023 -imp 'ZwQueryWnfStateData' ZwQueryWnfStateData ntdll 2024 -imp 'ZwQueryWnfStateNameInformation' ZwQueryWnfStateNameInformation ntdll 2025 -imp 'ZwQueueApcThread' ZwQueueApcThread ntdll 2026 -imp 'ZwQueueApcThreadEx' ZwQueueApcThreadEx ntdll 2027 -imp 'ZwRaiseException' ZwRaiseException ntdll 2028 -imp 'ZwRaiseHardError' ZwRaiseHardError ntdll 2029 -imp 'ZwReadFile' ZwReadFile ntdll 2030 -imp 'ZwReadFileScatter' ZwReadFileScatter ntdll 2031 -imp 'ZwReadOnlyEnlistment' ZwReadOnlyEnlistment ntdll 2032 -imp 'ZwReadRequestData' ZwReadRequestData ntdll 2033 -imp 'ZwReadVirtualMemory' ZwReadVirtualMemory ntdll 2034 -imp 'ZwRecoverEnlistment' ZwRecoverEnlistment ntdll 2035 -imp 'ZwRecoverResourceManager' ZwRecoverResourceManager ntdll 2036 -imp 'ZwRecoverTransactionManager' ZwRecoverTransactionManager ntdll 2037 -imp 'ZwRegisterProtocolAddressInformation' ZwRegisterProtocolAddressInformation ntdll 2038 -imp 'ZwRegisterThreadTerminatePort' ZwRegisterThreadTerminatePort ntdll 2039 -imp 'ZwReleaseKeyedEvent' ZwReleaseKeyedEvent ntdll 2040 -imp 'ZwReleaseMutant' ZwReleaseMutant ntdll 2041 -imp 'ZwReleaseSemaphore' ZwReleaseSemaphore ntdll 2042 -imp 'ZwReleaseWorkerFactoryWorker' ZwReleaseWorkerFactoryWorker ntdll 2043 -imp 'ZwRemoveIoCompletion' ZwRemoveIoCompletion ntdll 2044 -imp 'ZwRemoveIoCompletionEx' ZwRemoveIoCompletionEx ntdll 2045 -imp 'ZwRemoveProcessDebug' ZwRemoveProcessDebug ntdll 2046 -imp 'ZwRenameKey' ZwRenameKey ntdll 2047 -imp 'ZwRenameTransactionManager' ZwRenameTransactionManager ntdll 2048 -imp 'ZwReplaceKey' ZwReplaceKey ntdll 2049 -imp 'ZwReplacePartitionUnit' ZwReplacePartitionUnit ntdll 2050 -imp 'ZwReplyPort' ZwReplyPort ntdll 2051 -imp 'ZwReplyWaitReceivePort' ZwReplyWaitReceivePort ntdll 2052 -imp 'ZwReplyWaitReceivePortEx' ZwReplyWaitReceivePortEx ntdll 2053 -imp 'ZwReplyWaitReplyPort' ZwReplyWaitReplyPort ntdll 2054 -imp 'ZwRequestPort' ZwRequestPort ntdll 2055 -imp 'ZwRequestWaitReplyPort' ZwRequestWaitReplyPort ntdll 2056 -imp 'ZwResetEvent' ZwResetEvent ntdll 2057 -imp 'ZwResetWriteWatch' ZwResetWriteWatch ntdll 2058 -imp 'ZwRestoreKey' ZwRestoreKey ntdll 2059 -imp 'ZwResumeProcess' ZwResumeProcess ntdll 2060 -imp 'ZwResumeThread' ZwResumeThread ntdll 2061 -imp 'ZwRevertContainerImpersonation' ZwRevertContainerImpersonation ntdll 2062 -imp 'ZwRollbackComplete' ZwRollbackComplete ntdll 2063 -imp 'ZwRollbackEnlistment' ZwRollbackEnlistment ntdll 2064 -imp 'ZwRollbackRegistryTransaction' ZwRollbackRegistryTransaction ntdll 2065 -imp 'ZwRollbackTransaction' ZwRollbackTransaction ntdll 2066 -imp 'ZwRollforwardTransactionManager' ZwRollforwardTransactionManager ntdll 2067 -imp 'ZwSaveKey' ZwSaveKey ntdll 2068 -imp 'ZwSaveKeyEx' ZwSaveKeyEx ntdll 2069 -imp 'ZwSaveMergedKeys' ZwSaveMergedKeys ntdll 2070 -imp 'ZwSecureConnectPort' ZwSecureConnectPort ntdll 2071 -imp 'ZwSerializeBoot' ZwSerializeBoot ntdll 2072 -imp 'ZwSetBootEntryOrder' ZwSetBootEntryOrder ntdll 2073 -imp 'ZwSetBootOptions' ZwSetBootOptions ntdll 2074 -imp 'ZwSetCachedSigningLevel' ZwSetCachedSigningLevel ntdll 2075 -imp 'ZwSetCachedSigningLevel2' ZwSetCachedSigningLevel2 ntdll 2076 -imp 'ZwSetContextThread' ZwSetContextThread ntdll 2077 -imp 'ZwSetDebugFilterState' ZwSetDebugFilterState ntdll 2078 -imp 'ZwSetDefaultHardErrorPort' ZwSetDefaultHardErrorPort ntdll 2079 -imp 'ZwSetDefaultLocale' ZwSetDefaultLocale ntdll 2080 -imp 'ZwSetDefaultUILanguage' ZwSetDefaultUILanguage ntdll 2081 -imp 'ZwSetDriverEntryOrder' ZwSetDriverEntryOrder ntdll 2082 -imp 'ZwSetEaFile' ZwSetEaFile ntdll 2083 -imp 'ZwSetEvent' ZwSetEvent ntdll 2084 -imp 'ZwSetEventBoostPriority' ZwSetEventBoostPriority ntdll 2085 -imp 'ZwSetHighEventPair' ZwSetHighEventPair ntdll 2086 -imp 'ZwSetHighWaitLowEventPair' ZwSetHighWaitLowEventPair ntdll 2087 -imp 'ZwSetIRTimer' ZwSetIRTimer ntdll 2088 -imp 'ZwSetInformationDebugObject' ZwSetInformationDebugObject ntdll 2089 -imp 'ZwSetInformationEnlistment' ZwSetInformationEnlistment ntdll 2090 -imp 'ZwSetInformationFile' ZwSetInformationFile ntdll 2091 -imp 'ZwSetInformationJobObject' ZwSetInformationJobObject ntdll 2092 -imp 'ZwSetInformationKey' ZwSetInformationKey ntdll 2093 -imp 'ZwSetInformationObject' ZwSetInformationObject ntdll 2094 -imp 'ZwSetInformationProcess' ZwSetInformationProcess ntdll 2095 -imp 'ZwSetInformationResourceManager' ZwSetInformationResourceManager ntdll 2096 -imp 'ZwSetInformationSymbolicLink' ZwSetInformationSymbolicLink ntdll 2097 -imp 'ZwSetInformationThread' ZwSetInformationThread ntdll 2098 -imp 'ZwSetInformationToken' ZwSetInformationToken ntdll 2099 -imp 'ZwSetInformationTransaction' ZwSetInformationTransaction ntdll 2100 -imp 'ZwSetInformationTransactionManager' ZwSetInformationTransactionManager ntdll 2101 -imp 'ZwSetInformationVirtualMemory' ZwSetInformationVirtualMemory ntdll 2102 -imp 'ZwSetInformationWorkerFactory' ZwSetInformationWorkerFactory ntdll 2103 -imp 'ZwSetIntervalProfile' ZwSetIntervalProfile ntdll 2104 -imp 'ZwSetIoCompletion' ZwSetIoCompletion ntdll 2105 -imp 'ZwSetIoCompletionEx' ZwSetIoCompletionEx ntdll 2106 -imp 'ZwSetLdtEntries' ZwSetLdtEntries ntdll 2107 -imp 'ZwSetLowEventPair' ZwSetLowEventPair ntdll 2108 -imp 'ZwSetLowWaitHighEventPair' ZwSetLowWaitHighEventPair ntdll 2109 -imp 'ZwSetQuotaInformationFile' ZwSetQuotaInformationFile ntdll 2110 -imp 'ZwSetSecurityObject' ZwSetSecurityObject ntdll 2111 -imp 'ZwSetSystemEnvironmentValue' ZwSetSystemEnvironmentValue ntdll 2112 -imp 'ZwSetSystemEnvironmentValueEx' ZwSetSystemEnvironmentValueEx ntdll 2113 -imp 'ZwSetSystemInformation' ZwSetSystemInformation ntdll 2114 -imp 'ZwSetSystemPowerState' ZwSetSystemPowerState ntdll 2115 -imp 'ZwSetSystemTime' ZwSetSystemTime ntdll 2116 -imp 'ZwSetThreadExecutionState' ZwSetThreadExecutionState ntdll 2117 -imp 'ZwSetTimer' ZwSetTimer ntdll 2118 -imp 'ZwSetTimer2' ZwSetTimer2 ntdll 2119 -imp 'ZwSetTimerEx' ZwSetTimerEx ntdll 2120 -imp 'ZwSetTimerResolution' ZwSetTimerResolution ntdll 2121 -imp 'ZwSetUuidSeed' ZwSetUuidSeed ntdll 2122 -imp 'ZwSetValueKey' ZwSetValueKey ntdll 2123 -imp 'ZwSetVolumeInformationFile' ZwSetVolumeInformationFile ntdll 2124 -imp 'ZwSetWnfProcessNotificationEvent' ZwSetWnfProcessNotificationEvent ntdll 2125 -imp 'ZwShutdownSystem' ZwShutdownSystem ntdll 2126 -imp 'ZwShutdownWorkerFactory' ZwShutdownWorkerFactory ntdll 2127 -imp 'ZwSignalAndWaitForSingleObject' ZwSignalAndWaitForSingleObject ntdll 2128 -imp 'ZwSinglePhaseReject' ZwSinglePhaseReject ntdll 2129 -imp 'ZwStartProfile' ZwStartProfile ntdll 2130 -imp 'ZwStopProfile' ZwStopProfile ntdll 2131 -imp 'ZwSubscribeWnfStateChange' ZwSubscribeWnfStateChange ntdll 2132 -imp 'ZwSuspendProcess' ZwSuspendProcess ntdll 2133 -imp 'ZwSuspendThread' ZwSuspendThread ntdll 2134 -imp 'ZwSystemDebugControl' ZwSystemDebugControl ntdll 2135 -imp 'ZwTerminateEnclave' ZwTerminateEnclave ntdll 2136 -imp 'ZwTerminateJobObject' ZwTerminateJobObject ntdll 2137 -imp 'ZwTerminateProcess' ZwTerminateProcess ntdll 2138 -imp 'ZwTerminateThread' ZwTerminateThread ntdll 2139 -imp 'ZwTestAlert' ZwTestAlert ntdll 2140 -imp 'ZwThawRegistry' ZwThawRegistry ntdll 2141 -imp 'ZwThawTransactions' ZwThawTransactions ntdll 2142 -imp 'ZwTraceControl' ZwTraceControl ntdll 2143 -imp 'ZwTraceEvent' ZwTraceEvent ntdll 2144 -imp 'ZwTranslateFilePath' ZwTranslateFilePath ntdll 2145 -imp 'ZwUmsThreadYield' ZwUmsThreadYield ntdll 2146 -imp 'ZwUnloadDriver' ZwUnloadDriver ntdll 2147 -imp 'ZwUnloadKey' ZwUnloadKey ntdll 2148 -imp 'ZwUnloadKey2' ZwUnloadKey2 ntdll 2149 -imp 'ZwUnloadKeyEx' ZwUnloadKeyEx ntdll 2150 -imp 'ZwUnlockFile' ZwUnlockFile ntdll 2151 -imp 'ZwUnlockVirtualMemory' ZwUnlockVirtualMemory ntdll 2152 -imp 'ZwUnmapViewOfSection' ZwUnmapViewOfSection ntdll 2153 -imp 'ZwUnmapViewOfSectionEx' ZwUnmapViewOfSectionEx ntdll 2154 -imp 'ZwUnsubscribeWnfStateChange' ZwUnsubscribeWnfStateChange ntdll 2155 -imp 'ZwUpdateWnfStateData' ZwUpdateWnfStateData ntdll 2156 -imp 'ZwVdmControl' ZwVdmControl ntdll 2157 -imp 'ZwWaitForAlertByThreadId' ZwWaitForAlertByThreadId ntdll 2158 -imp 'ZwWaitForDebugEvent' ZwWaitForDebugEvent ntdll 2159 -imp 'ZwWaitForKeyedEvent' ZwWaitForKeyedEvent ntdll 2160 -imp 'ZwWaitForMultipleObjects' ZwWaitForMultipleObjects ntdll 2161 -imp 'ZwWaitForMultipleObjects32' ZwWaitForMultipleObjects32 ntdll 2162 -imp 'ZwWaitForSingleObject' ZwWaitForSingleObject ntdll 2163 -imp 'ZwWaitForWorkViaWorkerFactory' ZwWaitForWorkViaWorkerFactory ntdll 2164 -imp 'ZwWaitHighEventPair' ZwWaitHighEventPair ntdll 2165 -imp 'ZwWaitLowEventPair' ZwWaitLowEventPair ntdll 2166 -imp 'ZwWorkerFactoryWorkerReady' ZwWorkerFactoryWorkerReady ntdll 2167 -imp 'ZwWriteFile' ZwWriteFile ntdll 2168 -imp 'ZwWriteFileGather' ZwWriteFileGather ntdll 2169 -imp 'ZwWriteRequestData' ZwWriteRequestData ntdll 2170 -imp 'ZwWriteVirtualMemory' ZwWriteVirtualMemory ntdll 2171 -imp 'ZwYieldExecution' ZwYieldExecution ntdll 2172 +# Name Actual DLL Arity +imp 'CsrClientCallServer' CsrClientCallServer ntdll 4 +imp 'LdrGetDllHandle' LdrGetDllHandle ntdll 4 +imp 'LdrGetProcedureAddress' LdrGetProcedureAddress ntdll 4 +imp 'LdrLoadDll' LdrLoadDll ntdll 4 +imp 'LdrUnloadDll' LdrUnloadDll ntdll 1 +imp 'NtAllocateVirtualMemory' NtAllocateVirtualMemory ntdll 6 +imp 'NtCallbackReturn' NtCallbackReturn ntdll 3 +imp 'NtCancelIoFile' NtCancelIoFile ntdll 2 +imp 'NtCancelIoFileEx' NtCancelIoFileEx ntdll 3 +imp 'NtClearEvent' NtClearEvent ntdll 1 +imp 'NtClose' NtClose ntdll 1 +imp 'NtContinue' NtContinue ntdll 2 +imp 'NtCreateDirectoryObject' NtCreateDirectoryObject ntdll 3 +imp 'NtCreateEvent' NtCreateEvent ntdll 5 +imp 'NtCreateFile' NtCreateFile ntdll 11 +imp 'NtCreateIoCompletion' NtCreateIoCompletion ntdll 4 +imp 'NtCreateKey' NtCreateKey ntdll 7 +imp 'NtCreateKeyedEvent' NtCreateKeyedEvent ntdll 4 +imp 'NtCreateNamedPipeFile' NtCreateNamedPipeFile ntdll 14 +imp 'NtCreateProcess' NtCreateProcess ntdll 8 +imp 'NtCreateProfile' NtCreateProfile ntdll 9 +imp 'NtCreateSection' NtCreateSection ntdll 7 +imp 'NtCreateThread' NtCreateThread ntdll 8 +imp 'NtCreateTimer' NtCreateTimer ntdll 4 +imp 'NtDelayExecution' NtDelayExecution ntdll 2 +imp 'NtDeleteFile' NtDeleteFile ntdll 1 +imp 'NtDeleteKey' NtDeleteKey ntdll 1 +imp 'NtDeviceIoControlFile' NtDeviceIoControlFile ntdll 10 +imp 'NtDuplicateObject' NtDuplicateObject ntdll 7 +imp 'NtEnumerateKey' NtEnumerateKey ntdll 6 +imp 'NtEnumerateValueKey' NtEnumerateValueKey ntdll 6 +imp 'NtFlushBuffersFile' NtFlushBuffersFile ntdll 2 +imp 'NtFlushInstructionCache' NtFlushInstructionCache ntdll 3 +imp 'NtFlushKey' NtFlushKey ntdll 1 +imp 'NtFlushVirtualMemory' NtFlushVirtualMemory ntdll 4 +imp 'NtFreeVirtualMemory' NtFreeVirtualMemory ntdll 4 +imp 'NtFsControlFile' NtFsControlFile ntdll 10 +imp 'NtGetContextThread' NtGetContextThread ntdll 2 +imp 'NtMapViewOfSection' NtMapViewOfSection ntdll 10 +imp 'NtOpenDirectoryObject' NtOpenDirectoryObject ntdll 3 +imp 'NtOpenFile' NtOpenFile ntdll 6 +imp 'NtOpenKey' NtOpenKey ntdll 3 +imp 'NtOpenProcess' NtOpenProcess ntdll 4 +imp 'NtOpenProcessToken' NtOpenProcessToken ntdll 3 +imp 'NtOpenSection' NtOpenSection ntdll 3 +imp 'NtOpenSymbolicLinkObject' NtOpenSymbolicLinkObject ntdll 3 +imp 'NtOpenThread' NtOpenThread ntdll 4 +imp 'NtOpenThreadToken' NtOpenThreadToken ntdll 4 +imp 'NtProtectVirtualMemory' NtProtectVirtualMemory ntdll 5 +imp 'NtQueryAttributesFile' NtQueryAttributesFile ntdll 2 +imp 'NtQueryDirectoryFile' NtQueryDirectoryFile ntdll 11 +imp 'NtQueryFullAttributesFile' NtQueryFullAttributesFile ntdll 2 +imp 'NtQueryInformationFile' NtQueryInformationFile ntdll 5 +imp 'NtQueryInformationJobObject' NtQueryInformationJobObject ntdll 5 +imp 'NtQueryInformationProcess' NtQueryInformationProcess ntdll 5 +imp 'NtQueryInformationThread' NtQueryInformationThread ntdll 5 +imp 'NtQueryInformationToken' NtQueryInformationToken ntdll 5 +imp 'NtQueryIntervalProfile' NtQueryIntervalProfile ntdll 2 +imp 'NtQueryObject' NtQueryObject ntdll 5 +imp 'NtQueryPerformanceCounter' NtQueryPerformanceCounter ntdll 2 +imp 'NtQuerySection' NtQuerySection ntdll 5 +imp 'NtQuerySecurityObject' NtQuerySecurityObject ntdll 5 +imp 'NtQuerySymbolicLinkObject' NtQuerySymbolicLinkObject ntdll 3 +imp 'NtQuerySystemInformation' NtQuerySystemInformation ntdll 4 +imp 'NtQuerySystemTime' NtQuerySystemTime ntdll 1 +imp 'NtQueryValueKey' NtQueryValueKey ntdll 6 +imp 'NtQueryVirtualMemory' NtQueryVirtualMemory ntdll 6 +imp 'NtQueryVolumeInformationFile' NtQueryVolumeInformationFile ntdll 5 +imp 'NtQueueApcThread' NtQueueApcThread ntdll 5 +imp 'NtRaiseException' NtRaiseException ntdll 3 +imp 'NtRaiseHardError' NtRaiseHardError ntdll 6 +imp 'NtReadFile' NtReadFile ntdll 9 +imp 'NtReadVirtualMemory' NtReadVirtualMemory ntdll 5 +imp 'NtReleaseKeyedEvent' NtReleaseKeyedEvent ntdll 4 +imp 'NtResumeThread' NtResumeThread ntdll 2 +imp 'NtSetContextThread' NtSetContextThread ntdll 2 +imp 'NtSetEvent' NtSetEvent ntdll 2 +imp 'NtSetInformationFile' NtSetInformationFile ntdll 5 +imp 'NtSetInformationThread' NtSetInformationThread ntdll 4 +imp 'NtSetIntervalProfile' NtSetIntervalProfile ntdll 2 +imp 'NtSetTimer' NtSetTimer ntdll 7 +imp 'NtSetValueKey' NtSetValueKey ntdll 6 +imp 'NtSignalAndWaitForSingleObject' NtSignalAndWaitForSingleObject ntdll 4 +imp 'NtStartProfile' NtStartProfile ntdll 1 +imp 'NtStopProfile' NtStopProfile ntdll 1 +imp 'NtSuspendThread' NtSuspendThread ntdll 2 +imp 'NtTerminateProcess' NtTerminateProcess ntdll 2 +imp 'NtTerminateThread' NtTerminateThread ntdll 2 +imp 'NtTestAlert' NtTestAlert ntdll 0 +imp 'NtUnmapViewOfSection' NtUnmapViewOfSection ntdll 2 +imp 'NtWaitForKeyedEvent' NtWaitForKeyedEvent ntdll 4 +imp 'NtWaitForSingleObject' NtWaitForSingleObject ntdll 3 +imp 'NtWriteFile' NtWriteFile ntdll 9 +imp 'NtWriteVirtualMemory' NtWriteVirtualMemory ntdll 5 +imp 'NtYieldExecution' NtYieldExecution ntdll 0 +imp 'RtlAllocateHeap' RtlAllocateHeap ntdll 3 +imp 'RtlCloneUserProcess' RtlCloneUserProcess ntdll 5 +imp 'RtlConvertSidToUnicodeString' RtlConvertSidToUnicodeString ntdll 3 +imp 'RtlCreateHeap' RtlCreateHeap ntdll 6 +imp 'RtlCreateProcessParameters' RtlCreateProcessParameters ntdll 10 +imp 'RtlDeleteCriticalSection' RtlDeleteCriticalSection ntdll 1 +imp 'RtlDestroyHeap' RtlDestroyHeap ntdll 1 +imp 'RtlDestroyProcessParameters' RtlDestroyProcessParameters ntdll 1 +imp 'RtlEnterCriticalSection' RtlEnterCriticalSection ntdll 1 +imp 'RtlFreeHeap' RtlFreeHeap ntdll 3 +imp 'RtlFreeUnicodeString' RtlFreeUnicodeString ntdll 1 +imp 'RtlGetProcessHeaps' RtlGetProcessHeaps ntdll 2 +imp 'RtlInitUnicodeString' RtlInitUnicodeString ntdll 2 +imp 'RtlInitializeCriticalSection' RtlInitializeCriticalSection ntdll 1 +imp 'RtlLeaveCriticalSection' RtlLeaveCriticalSection ntdll 1 +imp 'RtlLockHeap' RtlLockHeap ntdll 1 +imp 'RtlNtStatusToDosError' RtlNtStatusToDosError ntdll 1 +imp 'RtlQueryEnvironmentVariable' RtlQueryEnvironmentVariable ntdll 3 +imp 'RtlReAllocateHeap' RtlReAllocateHeap ntdll 4 +imp 'RtlSizeHeap' RtlSizeHeap ntdll 3 +imp 'RtlTryEnterCriticalSection' RtlTryEnterCriticalSection ntdll 1 +imp 'RtlUnlockHeap' RtlUnlockHeap ntdll 1 +imp 'RtlValidateHeap' RtlValidateHeap ntdll 3 +imp 'RtlWalkHeap' RtlWalkHeap ntdll 2 +imp 'ZwAreMappedFilesTheSame' ZwAreMappedFilesTheSame ntdll 2 diff --git a/libc/nt/nt.mk b/libc/nt/nt.mk index 98ef49871..2e0c318b7 100644 --- a/libc/nt/nt.mk +++ b/libc/nt/nt.mk @@ -137,27 +137,6 @@ $(LIBC_NT_NTDLL_A).pkg: \ #─────────────────────────────────────────────────────────────────────────────── -LIBC_NT_ARTIFACTS += LIBC_NT_URL_A -LIBC_NT_URL = $(LIBC_NT_URL_A_DEPS) $(LIBC_NT_URL_A) -LIBC_NT_URL_A = o/$(MODE)/libc/nt/url.a -LIBC_NT_URL_A_SRCS := $(wildcard libc/nt/url/*.S) -LIBC_NT_URL_A_OBJS = $(LIBC_NT_URL_A_SRCS:%.S=o/$(MODE)/%.o) -LIBC_NT_URL_A_CHECKS = $(LIBC_NT_URL_A).pkg -LIBC_NT_URL_A_DIRECTDEPS = LIBC_NT_KERNEL32 -LIBC_NT_URL_A_DEPS := \ - $(call uniq,$(foreach x,$(LIBC_NT_URL_A_DIRECTDEPS),$($(x)))) - -$(LIBC_NT_URL_A): \ - libc/nt/url/ \ - $(LIBC_NT_URL_A).pkg \ - $(LIBC_NT_URL_A_OBJS) - -$(LIBC_NT_URL_A).pkg: \ - $(LIBC_NT_URL_A_OBJS) \ - $(foreach x,$(LIBC_NT_URL_A_DIRECTDEPS),$($(x)_A).pkg) - -#─────────────────────────────────────────────────────────────────────────────── - LIBC_NT_ARTIFACTS += LIBC_NT_SYNCHRONIZATION_A LIBC_NT_SYNCHRONIZATION = $(LIBC_NT_SYNCHRONIZATION_A_DEPS) $(LIBC_NT_SYNCHRONIZATION_A) LIBC_NT_SYNCHRONIZATION_A = o/$(MODE)/libc/nt/synchronization.a diff --git a/libc/nt/ntdll/AlpcAdjustCompletionListConcurrencyCount.S b/libc/nt/ntdll/AlpcAdjustCompletionListConcurrencyCount.S deleted file mode 100644 index 2c8e434f5..000000000 --- a/libc/nt/ntdll/AlpcAdjustCompletionListConcurrencyCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcAdjustCompletionListConcurrencyCount,AlpcAdjustCompletionListConcurrencyCount diff --git a/libc/nt/ntdll/AlpcFreeCompletionListMessage.S b/libc/nt/ntdll/AlpcFreeCompletionListMessage.S deleted file mode 100644 index 4ba33ff97..000000000 --- a/libc/nt/ntdll/AlpcFreeCompletionListMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcFreeCompletionListMessage,AlpcFreeCompletionListMessage diff --git a/libc/nt/ntdll/AlpcGetCompletionListLastMessageInformation.S b/libc/nt/ntdll/AlpcGetCompletionListLastMessageInformation.S deleted file mode 100644 index 8d66e8795..000000000 --- a/libc/nt/ntdll/AlpcGetCompletionListLastMessageInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcGetCompletionListLastMessageInformation,AlpcGetCompletionListLastMessageInformation diff --git a/libc/nt/ntdll/AlpcGetCompletionListMessageAttributes.S b/libc/nt/ntdll/AlpcGetCompletionListMessageAttributes.S deleted file mode 100644 index 15127a9c7..000000000 --- a/libc/nt/ntdll/AlpcGetCompletionListMessageAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcGetCompletionListMessageAttributes,AlpcGetCompletionListMessageAttributes diff --git a/libc/nt/ntdll/AlpcGetHeaderSize.S b/libc/nt/ntdll/AlpcGetHeaderSize.S deleted file mode 100644 index 76a48bdcd..000000000 --- a/libc/nt/ntdll/AlpcGetHeaderSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcGetHeaderSize,AlpcGetHeaderSize diff --git a/libc/nt/ntdll/AlpcGetMessageAttribute.S b/libc/nt/ntdll/AlpcGetMessageAttribute.S deleted file mode 100644 index 1f8558976..000000000 --- a/libc/nt/ntdll/AlpcGetMessageAttribute.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcGetMessageAttribute,AlpcGetMessageAttribute diff --git a/libc/nt/ntdll/AlpcGetMessageFromCompletionList.S b/libc/nt/ntdll/AlpcGetMessageFromCompletionList.S deleted file mode 100644 index 876c83eba..000000000 --- a/libc/nt/ntdll/AlpcGetMessageFromCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcGetMessageFromCompletionList,AlpcGetMessageFromCompletionList diff --git a/libc/nt/ntdll/AlpcGetOutstandingCompletionListMessageCount.S b/libc/nt/ntdll/AlpcGetOutstandingCompletionListMessageCount.S deleted file mode 100644 index 8020da007..000000000 --- a/libc/nt/ntdll/AlpcGetOutstandingCompletionListMessageCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcGetOutstandingCompletionListMessageCount,AlpcGetOutstandingCompletionListMessageCount diff --git a/libc/nt/ntdll/AlpcInitializeMessageAttribute.S b/libc/nt/ntdll/AlpcInitializeMessageAttribute.S deleted file mode 100644 index 0555d3079..000000000 --- a/libc/nt/ntdll/AlpcInitializeMessageAttribute.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcInitializeMessageAttribute,AlpcInitializeMessageAttribute diff --git a/libc/nt/ntdll/AlpcMaxAllowedMessageLength.S b/libc/nt/ntdll/AlpcMaxAllowedMessageLength.S deleted file mode 100644 index 8c29df97b..000000000 --- a/libc/nt/ntdll/AlpcMaxAllowedMessageLength.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcMaxAllowedMessageLength,AlpcMaxAllowedMessageLength diff --git a/libc/nt/ntdll/AlpcRegisterCompletionList.S b/libc/nt/ntdll/AlpcRegisterCompletionList.S deleted file mode 100644 index 358dee4e8..000000000 --- a/libc/nt/ntdll/AlpcRegisterCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcRegisterCompletionList,AlpcRegisterCompletionList diff --git a/libc/nt/ntdll/AlpcRegisterCompletionListWorkerThread.S b/libc/nt/ntdll/AlpcRegisterCompletionListWorkerThread.S deleted file mode 100644 index aefd7dda5..000000000 --- a/libc/nt/ntdll/AlpcRegisterCompletionListWorkerThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcRegisterCompletionListWorkerThread,AlpcRegisterCompletionListWorkerThread diff --git a/libc/nt/ntdll/AlpcRundownCompletionList.S b/libc/nt/ntdll/AlpcRundownCompletionList.S deleted file mode 100644 index f15a04f39..000000000 --- a/libc/nt/ntdll/AlpcRundownCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcRundownCompletionList,AlpcRundownCompletionList diff --git a/libc/nt/ntdll/AlpcUnregisterCompletionList.S b/libc/nt/ntdll/AlpcUnregisterCompletionList.S deleted file mode 100644 index 5f6db1199..000000000 --- a/libc/nt/ntdll/AlpcUnregisterCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcUnregisterCompletionList,AlpcUnregisterCompletionList diff --git a/libc/nt/ntdll/AlpcUnregisterCompletionListWorkerThread.S b/libc/nt/ntdll/AlpcUnregisterCompletionListWorkerThread.S deleted file mode 100644 index 33d358b76..000000000 --- a/libc/nt/ntdll/AlpcUnregisterCompletionListWorkerThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp AlpcUnregisterCompletionListWorkerThread,AlpcUnregisterCompletionListWorkerThread diff --git a/libc/nt/ntdll/ApiSetQueryApiSetPresence.S b/libc/nt/ntdll/ApiSetQueryApiSetPresence.S deleted file mode 100644 index 38bcd80e6..000000000 --- a/libc/nt/ntdll/ApiSetQueryApiSetPresence.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ApiSetQueryApiSetPresence,ApiSetQueryApiSetPresence diff --git a/libc/nt/ntdll/CsrAllocateCaptureBuffer.S b/libc/nt/ntdll/CsrAllocateCaptureBuffer.S deleted file mode 100644 index ec3b3ab71..000000000 --- a/libc/nt/ntdll/CsrAllocateCaptureBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrAllocateCaptureBuffer,CsrAllocateCaptureBuffer diff --git a/libc/nt/ntdll/CsrAllocateMessagePointer.S b/libc/nt/ntdll/CsrAllocateMessagePointer.S deleted file mode 100644 index 53ab78faf..000000000 --- a/libc/nt/ntdll/CsrAllocateMessagePointer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrAllocateMessagePointer,CsrAllocateMessagePointer diff --git a/libc/nt/ntdll/CsrCaptureMessageBuffer.S b/libc/nt/ntdll/CsrCaptureMessageBuffer.S deleted file mode 100644 index b50c6f14f..000000000 --- a/libc/nt/ntdll/CsrCaptureMessageBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrCaptureMessageBuffer,CsrCaptureMessageBuffer diff --git a/libc/nt/ntdll/CsrCaptureMessageMultiUnicodeStringsInPlace.S b/libc/nt/ntdll/CsrCaptureMessageMultiUnicodeStringsInPlace.S deleted file mode 100644 index 485582b8a..000000000 --- a/libc/nt/ntdll/CsrCaptureMessageMultiUnicodeStringsInPlace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrCaptureMessageMultiUnicodeStringsInPlace,CsrCaptureMessageMultiUnicodeStringsInPlace diff --git a/libc/nt/ntdll/CsrCaptureMessageString.S b/libc/nt/ntdll/CsrCaptureMessageString.S deleted file mode 100644 index e04d5e2c1..000000000 --- a/libc/nt/ntdll/CsrCaptureMessageString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrCaptureMessageString,CsrCaptureMessageString diff --git a/libc/nt/ntdll/CsrCaptureTimeout.S b/libc/nt/ntdll/CsrCaptureTimeout.S deleted file mode 100644 index cf5603ab8..000000000 --- a/libc/nt/ntdll/CsrCaptureTimeout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrCaptureTimeout,CsrCaptureTimeout diff --git a/libc/nt/ntdll/CsrClientConnectToServer.S b/libc/nt/ntdll/CsrClientConnectToServer.S deleted file mode 100644 index 0a99b9ac4..000000000 --- a/libc/nt/ntdll/CsrClientConnectToServer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrClientConnectToServer,CsrClientConnectToServer diff --git a/libc/nt/ntdll/CsrFreeCaptureBuffer.S b/libc/nt/ntdll/CsrFreeCaptureBuffer.S deleted file mode 100644 index 96e1760a7..000000000 --- a/libc/nt/ntdll/CsrFreeCaptureBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrFreeCaptureBuffer,CsrFreeCaptureBuffer diff --git a/libc/nt/ntdll/CsrGetProcessId.S b/libc/nt/ntdll/CsrGetProcessId.S deleted file mode 100644 index 33721b2ad..000000000 --- a/libc/nt/ntdll/CsrGetProcessId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrGetProcessId,CsrGetProcessId diff --git a/libc/nt/ntdll/CsrIdentifyAlertableThread.S b/libc/nt/ntdll/CsrIdentifyAlertableThread.S deleted file mode 100644 index 89eb8c8d5..000000000 --- a/libc/nt/ntdll/CsrIdentifyAlertableThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrIdentifyAlertableThread,CsrIdentifyAlertableThread diff --git a/libc/nt/ntdll/CsrSetPriorityClass.S b/libc/nt/ntdll/CsrSetPriorityClass.S deleted file mode 100644 index 709e9c543..000000000 --- a/libc/nt/ntdll/CsrSetPriorityClass.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrSetPriorityClass,CsrSetPriorityClass diff --git a/libc/nt/ntdll/CsrVerifyRegion.S b/libc/nt/ntdll/CsrVerifyRegion.S deleted file mode 100644 index 4dd5c2d96..000000000 --- a/libc/nt/ntdll/CsrVerifyRegion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp CsrVerifyRegion,CsrVerifyRegion diff --git a/libc/nt/ntdll/DbgBreakPoint.S b/libc/nt/ntdll/DbgBreakPoint.S deleted file mode 100644 index e3ff6e54b..000000000 --- a/libc/nt/ntdll/DbgBreakPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgBreakPoint,DbgBreakPoint diff --git a/libc/nt/ntdll/DbgPrint.S b/libc/nt/ntdll/DbgPrint.S deleted file mode 100644 index 6f59bea39..000000000 --- a/libc/nt/ntdll/DbgPrint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgPrint,DbgPrint diff --git a/libc/nt/ntdll/DbgPrintEx.S b/libc/nt/ntdll/DbgPrintEx.S deleted file mode 100644 index 5619e3bf2..000000000 --- a/libc/nt/ntdll/DbgPrintEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgPrintEx,DbgPrintEx diff --git a/libc/nt/ntdll/DbgPrintReturnControlC.S b/libc/nt/ntdll/DbgPrintReturnControlC.S deleted file mode 100644 index 53a88fb69..000000000 --- a/libc/nt/ntdll/DbgPrintReturnControlC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgPrintReturnControlC,DbgPrintReturnControlC diff --git a/libc/nt/ntdll/DbgPrompt.S b/libc/nt/ntdll/DbgPrompt.S deleted file mode 100644 index af9b43134..000000000 --- a/libc/nt/ntdll/DbgPrompt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgPrompt,DbgPrompt diff --git a/libc/nt/ntdll/DbgQueryDebugFilterState.S b/libc/nt/ntdll/DbgQueryDebugFilterState.S deleted file mode 100644 index 0b1209a4e..000000000 --- a/libc/nt/ntdll/DbgQueryDebugFilterState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgQueryDebugFilterState,DbgQueryDebugFilterState diff --git a/libc/nt/ntdll/DbgSetDebugFilterState.S b/libc/nt/ntdll/DbgSetDebugFilterState.S deleted file mode 100644 index d1686d07b..000000000 --- a/libc/nt/ntdll/DbgSetDebugFilterState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgSetDebugFilterState,DbgSetDebugFilterState diff --git a/libc/nt/ntdll/DbgUiConnectToDbg.S b/libc/nt/ntdll/DbgUiConnectToDbg.S deleted file mode 100644 index 2d410cfc6..000000000 --- a/libc/nt/ntdll/DbgUiConnectToDbg.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiConnectToDbg,DbgUiConnectToDbg diff --git a/libc/nt/ntdll/DbgUiContinue.S b/libc/nt/ntdll/DbgUiContinue.S deleted file mode 100644 index 942afcd14..000000000 --- a/libc/nt/ntdll/DbgUiContinue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiContinue,DbgUiContinue diff --git a/libc/nt/ntdll/DbgUiConvertStateChangeStructure.S b/libc/nt/ntdll/DbgUiConvertStateChangeStructure.S deleted file mode 100644 index 82f5ba4a5..000000000 --- a/libc/nt/ntdll/DbgUiConvertStateChangeStructure.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiConvertStateChangeStructure,DbgUiConvertStateChangeStructure diff --git a/libc/nt/ntdll/DbgUiConvertStateChangeStructureEx.S b/libc/nt/ntdll/DbgUiConvertStateChangeStructureEx.S deleted file mode 100644 index 332e18ef6..000000000 --- a/libc/nt/ntdll/DbgUiConvertStateChangeStructureEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiConvertStateChangeStructureEx,DbgUiConvertStateChangeStructureEx diff --git a/libc/nt/ntdll/DbgUiDebugActiveProcess.S b/libc/nt/ntdll/DbgUiDebugActiveProcess.S deleted file mode 100644 index d41b31956..000000000 --- a/libc/nt/ntdll/DbgUiDebugActiveProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiDebugActiveProcess,DbgUiDebugActiveProcess diff --git a/libc/nt/ntdll/DbgUiGetThreadDebugObject.S b/libc/nt/ntdll/DbgUiGetThreadDebugObject.S deleted file mode 100644 index 7b76d619a..000000000 --- a/libc/nt/ntdll/DbgUiGetThreadDebugObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiGetThreadDebugObject,DbgUiGetThreadDebugObject diff --git a/libc/nt/ntdll/DbgUiIssueRemoteBreakin.S b/libc/nt/ntdll/DbgUiIssueRemoteBreakin.S deleted file mode 100644 index 3e804fd9c..000000000 --- a/libc/nt/ntdll/DbgUiIssueRemoteBreakin.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiIssueRemoteBreakin,DbgUiIssueRemoteBreakin diff --git a/libc/nt/ntdll/DbgUiRemoteBreakin.S b/libc/nt/ntdll/DbgUiRemoteBreakin.S deleted file mode 100644 index 3649d22ca..000000000 --- a/libc/nt/ntdll/DbgUiRemoteBreakin.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiRemoteBreakin,DbgUiRemoteBreakin diff --git a/libc/nt/ntdll/DbgUiSetThreadDebugObject.S b/libc/nt/ntdll/DbgUiSetThreadDebugObject.S deleted file mode 100644 index b6179f947..000000000 --- a/libc/nt/ntdll/DbgUiSetThreadDebugObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiSetThreadDebugObject,DbgUiSetThreadDebugObject diff --git a/libc/nt/ntdll/DbgUiStopDebugging.S b/libc/nt/ntdll/DbgUiStopDebugging.S deleted file mode 100644 index 498e35bfe..000000000 --- a/libc/nt/ntdll/DbgUiStopDebugging.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiStopDebugging,DbgUiStopDebugging diff --git a/libc/nt/ntdll/DbgUiWaitStateChange.S b/libc/nt/ntdll/DbgUiWaitStateChange.S deleted file mode 100644 index 13004e1b7..000000000 --- a/libc/nt/ntdll/DbgUiWaitStateChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUiWaitStateChange,DbgUiWaitStateChange diff --git a/libc/nt/ntdll/DbgUserBreakPoint.S b/libc/nt/ntdll/DbgUserBreakPoint.S deleted file mode 100644 index c1e97f959..000000000 --- a/libc/nt/ntdll/DbgUserBreakPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp DbgUserBreakPoint,DbgUserBreakPoint diff --git a/libc/nt/ntdll/EtwCheckCoverage.S b/libc/nt/ntdll/EtwCheckCoverage.S deleted file mode 100644 index c40894bb5..000000000 --- a/libc/nt/ntdll/EtwCheckCoverage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwCheckCoverage,EtwCheckCoverage diff --git a/libc/nt/ntdll/EtwCreateTraceInstanceId.S b/libc/nt/ntdll/EtwCreateTraceInstanceId.S deleted file mode 100644 index 168aaff2d..000000000 --- a/libc/nt/ntdll/EtwCreateTraceInstanceId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwCreateTraceInstanceId,EtwCreateTraceInstanceId diff --git a/libc/nt/ntdll/EtwDeliverDataBlock.S b/libc/nt/ntdll/EtwDeliverDataBlock.S deleted file mode 100644 index 7ca981189..000000000 --- a/libc/nt/ntdll/EtwDeliverDataBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwDeliverDataBlock,EtwDeliverDataBlock diff --git a/libc/nt/ntdll/EtwEnumerateProcessRegGuids.S b/libc/nt/ntdll/EtwEnumerateProcessRegGuids.S deleted file mode 100644 index ec84b7ff5..000000000 --- a/libc/nt/ntdll/EtwEnumerateProcessRegGuids.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEnumerateProcessRegGuids,EtwEnumerateProcessRegGuids diff --git a/libc/nt/ntdll/EtwEventActivityIdControl.S b/libc/nt/ntdll/EtwEventActivityIdControl.S deleted file mode 100644 index e9fdbe583..000000000 --- a/libc/nt/ntdll/EtwEventActivityIdControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventActivityIdControl,EtwEventActivityIdControl diff --git a/libc/nt/ntdll/EtwEventEnabled.S b/libc/nt/ntdll/EtwEventEnabled.S deleted file mode 100644 index bf073e967..000000000 --- a/libc/nt/ntdll/EtwEventEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventEnabled,EtwEventEnabled diff --git a/libc/nt/ntdll/EtwEventProviderEnabled.S b/libc/nt/ntdll/EtwEventProviderEnabled.S deleted file mode 100644 index 437cc0942..000000000 --- a/libc/nt/ntdll/EtwEventProviderEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventProviderEnabled,EtwEventProviderEnabled diff --git a/libc/nt/ntdll/EtwEventRegister.S b/libc/nt/ntdll/EtwEventRegister.S deleted file mode 100644 index dbfa541d5..000000000 --- a/libc/nt/ntdll/EtwEventRegister.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventRegister,EtwEventRegister diff --git a/libc/nt/ntdll/EtwEventSetInformation.S b/libc/nt/ntdll/EtwEventSetInformation.S deleted file mode 100644 index 53e6f9198..000000000 --- a/libc/nt/ntdll/EtwEventSetInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventSetInformation,EtwEventSetInformation diff --git a/libc/nt/ntdll/EtwEventUnregister.S b/libc/nt/ntdll/EtwEventUnregister.S deleted file mode 100644 index 26cc6823b..000000000 --- a/libc/nt/ntdll/EtwEventUnregister.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventUnregister,EtwEventUnregister diff --git a/libc/nt/ntdll/EtwEventWrite.S b/libc/nt/ntdll/EtwEventWrite.S deleted file mode 100644 index ae1938c20..000000000 --- a/libc/nt/ntdll/EtwEventWrite.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventWrite,EtwEventWrite diff --git a/libc/nt/ntdll/EtwEventWriteEndScenario.S b/libc/nt/ntdll/EtwEventWriteEndScenario.S deleted file mode 100644 index 22f55f857..000000000 --- a/libc/nt/ntdll/EtwEventWriteEndScenario.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventWriteEndScenario,EtwEventWriteEndScenario diff --git a/libc/nt/ntdll/EtwEventWriteEx.S b/libc/nt/ntdll/EtwEventWriteEx.S deleted file mode 100644 index 35ee1b7b8..000000000 --- a/libc/nt/ntdll/EtwEventWriteEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventWriteEx,EtwEventWriteEx diff --git a/libc/nt/ntdll/EtwEventWriteFull.S b/libc/nt/ntdll/EtwEventWriteFull.S deleted file mode 100644 index df1405151..000000000 --- a/libc/nt/ntdll/EtwEventWriteFull.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventWriteFull,EtwEventWriteFull diff --git a/libc/nt/ntdll/EtwEventWriteNoRegistration.S b/libc/nt/ntdll/EtwEventWriteNoRegistration.S deleted file mode 100644 index 207d9b5e3..000000000 --- a/libc/nt/ntdll/EtwEventWriteNoRegistration.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventWriteNoRegistration,EtwEventWriteNoRegistration diff --git a/libc/nt/ntdll/EtwEventWriteStartScenario.S b/libc/nt/ntdll/EtwEventWriteStartScenario.S deleted file mode 100644 index 1553c5eb4..000000000 --- a/libc/nt/ntdll/EtwEventWriteStartScenario.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventWriteStartScenario,EtwEventWriteStartScenario diff --git a/libc/nt/ntdll/EtwEventWriteString.S b/libc/nt/ntdll/EtwEventWriteString.S deleted file mode 100644 index 27ca47509..000000000 --- a/libc/nt/ntdll/EtwEventWriteString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventWriteString,EtwEventWriteString diff --git a/libc/nt/ntdll/EtwEventWriteTransfer.S b/libc/nt/ntdll/EtwEventWriteTransfer.S deleted file mode 100644 index 928ef63a6..000000000 --- a/libc/nt/ntdll/EtwEventWriteTransfer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwEventWriteTransfer,EtwEventWriteTransfer diff --git a/libc/nt/ntdll/EtwGetTraceEnableFlags.S b/libc/nt/ntdll/EtwGetTraceEnableFlags.S deleted file mode 100644 index f8bb676c0..000000000 --- a/libc/nt/ntdll/EtwGetTraceEnableFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwGetTraceEnableFlags,EtwGetTraceEnableFlags diff --git a/libc/nt/ntdll/EtwGetTraceEnableLevel.S b/libc/nt/ntdll/EtwGetTraceEnableLevel.S deleted file mode 100644 index 79e09def0..000000000 --- a/libc/nt/ntdll/EtwGetTraceEnableLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwGetTraceEnableLevel,EtwGetTraceEnableLevel diff --git a/libc/nt/ntdll/EtwGetTraceLoggerHandle.S b/libc/nt/ntdll/EtwGetTraceLoggerHandle.S deleted file mode 100644 index e5316ca2c..000000000 --- a/libc/nt/ntdll/EtwGetTraceLoggerHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwGetTraceLoggerHandle,EtwGetTraceLoggerHandle diff --git a/libc/nt/ntdll/EtwLogTraceEvent.S b/libc/nt/ntdll/EtwLogTraceEvent.S deleted file mode 100644 index e8f995856..000000000 --- a/libc/nt/ntdll/EtwLogTraceEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwLogTraceEvent,EtwLogTraceEvent diff --git a/libc/nt/ntdll/EtwNotificationRegister.S b/libc/nt/ntdll/EtwNotificationRegister.S deleted file mode 100644 index 807eb940e..000000000 --- a/libc/nt/ntdll/EtwNotificationRegister.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwNotificationRegister,EtwNotificationRegister diff --git a/libc/nt/ntdll/EtwNotificationUnregister.S b/libc/nt/ntdll/EtwNotificationUnregister.S deleted file mode 100644 index a367d8c99..000000000 --- a/libc/nt/ntdll/EtwNotificationUnregister.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwNotificationUnregister,EtwNotificationUnregister diff --git a/libc/nt/ntdll/EtwProcessPrivateLoggerRequest.S b/libc/nt/ntdll/EtwProcessPrivateLoggerRequest.S deleted file mode 100644 index 972832c15..000000000 --- a/libc/nt/ntdll/EtwProcessPrivateLoggerRequest.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwProcessPrivateLoggerRequest,EtwProcessPrivateLoggerRequest diff --git a/libc/nt/ntdll/EtwRegisterSecurityProvider.S b/libc/nt/ntdll/EtwRegisterSecurityProvider.S deleted file mode 100644 index e952e3c8f..000000000 --- a/libc/nt/ntdll/EtwRegisterSecurityProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwRegisterSecurityProvider,EtwRegisterSecurityProvider diff --git a/libc/nt/ntdll/EtwRegisterTraceGuidsW.S b/libc/nt/ntdll/EtwRegisterTraceGuidsW.S deleted file mode 100644 index 855ba0b98..000000000 --- a/libc/nt/ntdll/EtwRegisterTraceGuidsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwRegisterTraceGuidsW,EtwRegisterTraceGuids diff --git a/libc/nt/ntdll/EtwReplyNotification.S b/libc/nt/ntdll/EtwReplyNotification.S deleted file mode 100644 index d8b6f4962..000000000 --- a/libc/nt/ntdll/EtwReplyNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwReplyNotification,EtwReplyNotification diff --git a/libc/nt/ntdll/EtwSendNotification.S b/libc/nt/ntdll/EtwSendNotification.S deleted file mode 100644 index d63bdfba8..000000000 --- a/libc/nt/ntdll/EtwSendNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwSendNotification,EtwSendNotification diff --git a/libc/nt/ntdll/EtwSetMark.S b/libc/nt/ntdll/EtwSetMark.S deleted file mode 100644 index 36cacc42c..000000000 --- a/libc/nt/ntdll/EtwSetMark.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwSetMark,EtwSetMark diff --git a/libc/nt/ntdll/EtwTraceEventInstance.S b/libc/nt/ntdll/EtwTraceEventInstance.S deleted file mode 100644 index e53001550..000000000 --- a/libc/nt/ntdll/EtwTraceEventInstance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwTraceEventInstance,EtwTraceEventInstance diff --git a/libc/nt/ntdll/EtwTraceMessage.S b/libc/nt/ntdll/EtwTraceMessage.S deleted file mode 100644 index f065919c3..000000000 --- a/libc/nt/ntdll/EtwTraceMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwTraceMessage,EtwTraceMessage diff --git a/libc/nt/ntdll/EtwTraceMessageVa.S b/libc/nt/ntdll/EtwTraceMessageVa.S deleted file mode 100644 index 9da7e9a07..000000000 --- a/libc/nt/ntdll/EtwTraceMessageVa.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwTraceMessageVa,EtwTraceMessageVa diff --git a/libc/nt/ntdll/EtwUnregisterTraceGuids.S b/libc/nt/ntdll/EtwUnregisterTraceGuids.S deleted file mode 100644 index a8d378d1c..000000000 --- a/libc/nt/ntdll/EtwUnregisterTraceGuids.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwUnregisterTraceGuids,EtwUnregisterTraceGuids diff --git a/libc/nt/ntdll/EtwWriteUMSecurityEvent.S b/libc/nt/ntdll/EtwWriteUMSecurityEvent.S deleted file mode 100644 index 784b9cc03..000000000 --- a/libc/nt/ntdll/EtwWriteUMSecurityEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwWriteUMSecurityEvent,EtwWriteUMSecurityEvent diff --git a/libc/nt/ntdll/EtwpCreateEtwThread.S b/libc/nt/ntdll/EtwpCreateEtwThread.S deleted file mode 100644 index a42111447..000000000 --- a/libc/nt/ntdll/EtwpCreateEtwThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwpCreateEtwThread,EtwpCreateEtwThread diff --git a/libc/nt/ntdll/EtwpGetCpuSpeed.S b/libc/nt/ntdll/EtwpGetCpuSpeed.S deleted file mode 100644 index 1fdf64eb0..000000000 --- a/libc/nt/ntdll/EtwpGetCpuSpeed.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EtwpGetCpuSpeed,EtwpGetCpuSpeed diff --git a/libc/nt/ntdll/EvtIntReportAuthzEventAndSourceAsync.S b/libc/nt/ntdll/EvtIntReportAuthzEventAndSourceAsync.S deleted file mode 100644 index 325a97dd2..000000000 --- a/libc/nt/ntdll/EvtIntReportAuthzEventAndSourceAsync.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EvtIntReportAuthzEventAndSourceAsync,EvtIntReportAuthzEventAndSourceAsync diff --git a/libc/nt/ntdll/EvtIntReportEventAndSourceAsync.S b/libc/nt/ntdll/EvtIntReportEventAndSourceAsync.S deleted file mode 100644 index d5136e1ca..000000000 --- a/libc/nt/ntdll/EvtIntReportEventAndSourceAsync.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp EvtIntReportEventAndSourceAsync,EvtIntReportEventAndSourceAsync diff --git a/libc/nt/ntdll/ExpInterlockedPopEntrySListEnd.S b/libc/nt/ntdll/ExpInterlockedPopEntrySListEnd.S deleted file mode 100644 index c999534ec..000000000 --- a/libc/nt/ntdll/ExpInterlockedPopEntrySListEnd.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ExpInterlockedPopEntrySListEnd,ExpInterlockedPopEntrySListEnd diff --git a/libc/nt/ntdll/ExpInterlockedPopEntrySListFault.S b/libc/nt/ntdll/ExpInterlockedPopEntrySListFault.S deleted file mode 100644 index c23d13ef0..000000000 --- a/libc/nt/ntdll/ExpInterlockedPopEntrySListFault.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ExpInterlockedPopEntrySListFault,ExpInterlockedPopEntrySListFault diff --git a/libc/nt/ntdll/ExpInterlockedPopEntrySListResume.S b/libc/nt/ntdll/ExpInterlockedPopEntrySListResume.S deleted file mode 100644 index 883ffa7c9..000000000 --- a/libc/nt/ntdll/ExpInterlockedPopEntrySListResume.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ExpInterlockedPopEntrySListResume,ExpInterlockedPopEntrySListResume diff --git a/libc/nt/ntdll/KiRaiseUserExceptionDispatcher.S b/libc/nt/ntdll/KiRaiseUserExceptionDispatcher.S deleted file mode 100644 index c4f48866c..000000000 --- a/libc/nt/ntdll/KiRaiseUserExceptionDispatcher.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp KiRaiseUserExceptionDispatcher,KiRaiseUserExceptionDispatcher diff --git a/libc/nt/ntdll/KiUserApcDispatcher.S b/libc/nt/ntdll/KiUserApcDispatcher.S deleted file mode 100644 index 94b91a444..000000000 --- a/libc/nt/ntdll/KiUserApcDispatcher.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp KiUserApcDispatcher,KiUserApcDispatcher diff --git a/libc/nt/ntdll/KiUserCallbackDispatcher.S b/libc/nt/ntdll/KiUserCallbackDispatcher.S deleted file mode 100644 index 1f582fd8a..000000000 --- a/libc/nt/ntdll/KiUserCallbackDispatcher.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp KiUserCallbackDispatcher,KiUserCallbackDispatcher diff --git a/libc/nt/ntdll/KiUserExceptionDispatcher.S b/libc/nt/ntdll/KiUserExceptionDispatcher.S deleted file mode 100644 index ea6925fb2..000000000 --- a/libc/nt/ntdll/KiUserExceptionDispatcher.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp KiUserExceptionDispatcher,KiUserExceptionDispatcher diff --git a/libc/nt/ntdll/KiUserInvertedFunctionTable.S b/libc/nt/ntdll/KiUserInvertedFunctionTable.S deleted file mode 100644 index 440404694..000000000 --- a/libc/nt/ntdll/KiUserInvertedFunctionTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp KiUserInvertedFunctionTable,KiUserInvertedFunctionTable diff --git a/libc/nt/ntdll/LdrAccessResource.S b/libc/nt/ntdll/LdrAccessResource.S deleted file mode 100644 index 7d58fb7f8..000000000 --- a/libc/nt/ntdll/LdrAccessResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrAccessResource,LdrAccessResource diff --git a/libc/nt/ntdll/LdrAddDllDirectory.S b/libc/nt/ntdll/LdrAddDllDirectory.S deleted file mode 100644 index 0470e1d6a..000000000 --- a/libc/nt/ntdll/LdrAddDllDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrAddDllDirectory,LdrAddDllDirectory diff --git a/libc/nt/ntdll/LdrAddLoadAsDataTable.S b/libc/nt/ntdll/LdrAddLoadAsDataTable.S deleted file mode 100644 index 48c31b60b..000000000 --- a/libc/nt/ntdll/LdrAddLoadAsDataTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrAddLoadAsDataTable,LdrAddLoadAsDataTable diff --git a/libc/nt/ntdll/LdrAddRefDll.S b/libc/nt/ntdll/LdrAddRefDll.S deleted file mode 100644 index 265e49610..000000000 --- a/libc/nt/ntdll/LdrAddRefDll.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrAddRefDll,LdrAddRefDll diff --git a/libc/nt/ntdll/LdrAppxHandleIntegrityFailure.S b/libc/nt/ntdll/LdrAppxHandleIntegrityFailure.S deleted file mode 100644 index 31aff0e37..000000000 --- a/libc/nt/ntdll/LdrAppxHandleIntegrityFailure.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrAppxHandleIntegrityFailure,LdrAppxHandleIntegrityFailure diff --git a/libc/nt/ntdll/LdrCallEnclave.S b/libc/nt/ntdll/LdrCallEnclave.S deleted file mode 100644 index c3414ba56..000000000 --- a/libc/nt/ntdll/LdrCallEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrCallEnclave,LdrCallEnclave diff --git a/libc/nt/ntdll/LdrControlFlowGuardEnforced.S b/libc/nt/ntdll/LdrControlFlowGuardEnforced.S deleted file mode 100644 index f3f329f4f..000000000 --- a/libc/nt/ntdll/LdrControlFlowGuardEnforced.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrControlFlowGuardEnforced,LdrControlFlowGuardEnforced diff --git a/libc/nt/ntdll/LdrCreateEnclave.S b/libc/nt/ntdll/LdrCreateEnclave.S deleted file mode 100644 index 97f2a703e..000000000 --- a/libc/nt/ntdll/LdrCreateEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrCreateEnclave,LdrCreateEnclave diff --git a/libc/nt/ntdll/LdrDeleteEnclave.S b/libc/nt/ntdll/LdrDeleteEnclave.S deleted file mode 100644 index 82b6366ee..000000000 --- a/libc/nt/ntdll/LdrDeleteEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrDeleteEnclave,LdrDeleteEnclave diff --git a/libc/nt/ntdll/LdrDisableThreadCalloutsForDll.S b/libc/nt/ntdll/LdrDisableThreadCalloutsForDll.S deleted file mode 100644 index f86409ca9..000000000 --- a/libc/nt/ntdll/LdrDisableThreadCalloutsForDll.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrDisableThreadCalloutsForDll,LdrDisableThreadCalloutsForDll diff --git a/libc/nt/ntdll/LdrEnumResources.S b/libc/nt/ntdll/LdrEnumResources.S deleted file mode 100644 index 26bcf2534..000000000 --- a/libc/nt/ntdll/LdrEnumResources.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrEnumResources,LdrEnumResources diff --git a/libc/nt/ntdll/LdrEnumerateLoadedModules.S b/libc/nt/ntdll/LdrEnumerateLoadedModules.S deleted file mode 100644 index 4294922eb..000000000 --- a/libc/nt/ntdll/LdrEnumerateLoadedModules.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrEnumerateLoadedModules,LdrEnumerateLoadedModules diff --git a/libc/nt/ntdll/LdrFastFailInLoaderCallout.S b/libc/nt/ntdll/LdrFastFailInLoaderCallout.S deleted file mode 100644 index 03153a446..000000000 --- a/libc/nt/ntdll/LdrFastFailInLoaderCallout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrFastFailInLoaderCallout,LdrFastFailInLoaderCallout diff --git a/libc/nt/ntdll/LdrFindEntryForAddress.S b/libc/nt/ntdll/LdrFindEntryForAddress.S deleted file mode 100644 index fc797b5b6..000000000 --- a/libc/nt/ntdll/LdrFindEntryForAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrFindEntryForAddress,LdrFindEntryForAddress diff --git a/libc/nt/ntdll/LdrFindResourceDirectory_U.S b/libc/nt/ntdll/LdrFindResourceDirectory_U.S deleted file mode 100644 index 27c92e46f..000000000 --- a/libc/nt/ntdll/LdrFindResourceDirectory_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrFindResourceDirectory_U,LdrFindResourceDirectory_U diff --git a/libc/nt/ntdll/LdrFindResourceEx_U.S b/libc/nt/ntdll/LdrFindResourceEx_U.S deleted file mode 100644 index d83d372dc..000000000 --- a/libc/nt/ntdll/LdrFindResourceEx_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrFindResourceEx_U,LdrFindResourceEx_U diff --git a/libc/nt/ntdll/LdrFindResource_U.S b/libc/nt/ntdll/LdrFindResource_U.S deleted file mode 100644 index 1196cd0f9..000000000 --- a/libc/nt/ntdll/LdrFindResource_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrFindResource_U,LdrFindResource_U diff --git a/libc/nt/ntdll/LdrFlushAlternateResourceModules.S b/libc/nt/ntdll/LdrFlushAlternateResourceModules.S deleted file mode 100644 index 5e208bcca..000000000 --- a/libc/nt/ntdll/LdrFlushAlternateResourceModules.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrFlushAlternateResourceModules,LdrFlushAlternateResourceModules diff --git a/libc/nt/ntdll/LdrGetDllDirectory.S b/libc/nt/ntdll/LdrGetDllDirectory.S deleted file mode 100644 index 4c597d209..000000000 --- a/libc/nt/ntdll/LdrGetDllDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetDllDirectory,LdrGetDllDirectory diff --git a/libc/nt/ntdll/LdrGetDllFullName.S b/libc/nt/ntdll/LdrGetDllFullName.S deleted file mode 100644 index f682c1f94..000000000 --- a/libc/nt/ntdll/LdrGetDllFullName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetDllFullName,LdrGetDllFullName diff --git a/libc/nt/ntdll/LdrGetDllHandleByMapping.S b/libc/nt/ntdll/LdrGetDllHandleByMapping.S deleted file mode 100644 index 43660c330..000000000 --- a/libc/nt/ntdll/LdrGetDllHandleByMapping.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetDllHandleByMapping,LdrGetDllHandleByMapping diff --git a/libc/nt/ntdll/LdrGetDllHandleByName.S b/libc/nt/ntdll/LdrGetDllHandleByName.S deleted file mode 100644 index 21148cb78..000000000 --- a/libc/nt/ntdll/LdrGetDllHandleByName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetDllHandleByName,LdrGetDllHandleByName diff --git a/libc/nt/ntdll/LdrGetDllHandleEx.S b/libc/nt/ntdll/LdrGetDllHandleEx.S deleted file mode 100644 index e0aedf691..000000000 --- a/libc/nt/ntdll/LdrGetDllHandleEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetDllHandleEx,LdrGetDllHandleEx diff --git a/libc/nt/ntdll/LdrGetDllPath.S b/libc/nt/ntdll/LdrGetDllPath.S deleted file mode 100644 index 75458260f..000000000 --- a/libc/nt/ntdll/LdrGetDllPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetDllPath,LdrGetDllPath diff --git a/libc/nt/ntdll/LdrGetFailureData.S b/libc/nt/ntdll/LdrGetFailureData.S deleted file mode 100644 index f42193178..000000000 --- a/libc/nt/ntdll/LdrGetFailureData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetFailureData,LdrGetFailureData diff --git a/libc/nt/ntdll/LdrGetFileNameFromLoadAsDataTable.S b/libc/nt/ntdll/LdrGetFileNameFromLoadAsDataTable.S deleted file mode 100644 index 71fcc1860..000000000 --- a/libc/nt/ntdll/LdrGetFileNameFromLoadAsDataTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetFileNameFromLoadAsDataTable,LdrGetFileNameFromLoadAsDataTable diff --git a/libc/nt/ntdll/LdrGetKnownDllSectionHandle.S b/libc/nt/ntdll/LdrGetKnownDllSectionHandle.S deleted file mode 100644 index 411782fc2..000000000 --- a/libc/nt/ntdll/LdrGetKnownDllSectionHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetKnownDllSectionHandle,LdrGetKnownDllSectionHandle diff --git a/libc/nt/ntdll/LdrGetProcedureAddressEx.S b/libc/nt/ntdll/LdrGetProcedureAddressEx.S deleted file mode 100644 index 00e116a22..000000000 --- a/libc/nt/ntdll/LdrGetProcedureAddressEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetProcedureAddressEx,LdrGetProcedureAddressEx diff --git a/libc/nt/ntdll/LdrGetProcedureAddressForCaller.S b/libc/nt/ntdll/LdrGetProcedureAddressForCaller.S deleted file mode 100644 index ad228ee37..000000000 --- a/libc/nt/ntdll/LdrGetProcedureAddressForCaller.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrGetProcedureAddressForCaller,LdrGetProcedureAddressForCaller diff --git a/libc/nt/ntdll/LdrInitShimEngineDynamic.S b/libc/nt/ntdll/LdrInitShimEngineDynamic.S deleted file mode 100644 index 3b524b2c3..000000000 --- a/libc/nt/ntdll/LdrInitShimEngineDynamic.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrInitShimEngineDynamic,LdrInitShimEngineDynamic diff --git a/libc/nt/ntdll/LdrInitializeEnclave.S b/libc/nt/ntdll/LdrInitializeEnclave.S deleted file mode 100644 index 00f8d28d8..000000000 --- a/libc/nt/ntdll/LdrInitializeEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrInitializeEnclave,LdrInitializeEnclave diff --git a/libc/nt/ntdll/LdrInitializeThunk.S b/libc/nt/ntdll/LdrInitializeThunk.S deleted file mode 100644 index 87995f04a..000000000 --- a/libc/nt/ntdll/LdrInitializeThunk.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrInitializeThunk,LdrInitializeThunk diff --git a/libc/nt/ntdll/LdrLoadAlternateResourceModule.S b/libc/nt/ntdll/LdrLoadAlternateResourceModule.S deleted file mode 100644 index 04dd44450..000000000 --- a/libc/nt/ntdll/LdrLoadAlternateResourceModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrLoadAlternateResourceModule,LdrLoadAlternateResourceModule diff --git a/libc/nt/ntdll/LdrLoadAlternateResourceModuleEx.S b/libc/nt/ntdll/LdrLoadAlternateResourceModuleEx.S deleted file mode 100644 index f5e5dc88b..000000000 --- a/libc/nt/ntdll/LdrLoadAlternateResourceModuleEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrLoadAlternateResourceModuleEx,LdrLoadAlternateResourceModuleEx diff --git a/libc/nt/ntdll/LdrLoadEnclaveModule.S b/libc/nt/ntdll/LdrLoadEnclaveModule.S deleted file mode 100644 index e83ef0083..000000000 --- a/libc/nt/ntdll/LdrLoadEnclaveModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrLoadEnclaveModule,LdrLoadEnclaveModule diff --git a/libc/nt/ntdll/LdrLockLoaderLock.S b/libc/nt/ntdll/LdrLockLoaderLock.S deleted file mode 100644 index bcf616800..000000000 --- a/libc/nt/ntdll/LdrLockLoaderLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrLockLoaderLock,LdrLockLoaderLock diff --git a/libc/nt/ntdll/LdrOpenImageFileOptionsKey.S b/libc/nt/ntdll/LdrOpenImageFileOptionsKey.S deleted file mode 100644 index ab6ca921a..000000000 --- a/libc/nt/ntdll/LdrOpenImageFileOptionsKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrOpenImageFileOptionsKey,LdrOpenImageFileOptionsKey diff --git a/libc/nt/ntdll/LdrProcessInitializationComplete.S b/libc/nt/ntdll/LdrProcessInitializationComplete.S deleted file mode 100644 index e27795010..000000000 --- a/libc/nt/ntdll/LdrProcessInitializationComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrProcessInitializationComplete,LdrProcessInitializationComplete diff --git a/libc/nt/ntdll/LdrProcessRelocationBlock.S b/libc/nt/ntdll/LdrProcessRelocationBlock.S deleted file mode 100644 index 1086747e1..000000000 --- a/libc/nt/ntdll/LdrProcessRelocationBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrProcessRelocationBlock,LdrProcessRelocationBlock diff --git a/libc/nt/ntdll/LdrProcessRelocationBlockEx.S b/libc/nt/ntdll/LdrProcessRelocationBlockEx.S deleted file mode 100644 index f0c5efcfd..000000000 --- a/libc/nt/ntdll/LdrProcessRelocationBlockEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrProcessRelocationBlockEx,LdrProcessRelocationBlockEx diff --git a/libc/nt/ntdll/LdrQueryImageFileExecutionOptions.S b/libc/nt/ntdll/LdrQueryImageFileExecutionOptions.S deleted file mode 100644 index 3585ff1ab..000000000 --- a/libc/nt/ntdll/LdrQueryImageFileExecutionOptions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrQueryImageFileExecutionOptions,LdrQueryImageFileExecutionOptions diff --git a/libc/nt/ntdll/LdrQueryImageFileExecutionOptionsEx.S b/libc/nt/ntdll/LdrQueryImageFileExecutionOptionsEx.S deleted file mode 100644 index 278bb8dda..000000000 --- a/libc/nt/ntdll/LdrQueryImageFileExecutionOptionsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrQueryImageFileExecutionOptionsEx,LdrQueryImageFileExecutionOptionsEx diff --git a/libc/nt/ntdll/LdrQueryImageFileKeyOption.S b/libc/nt/ntdll/LdrQueryImageFileKeyOption.S deleted file mode 100644 index 5b64b75b3..000000000 --- a/libc/nt/ntdll/LdrQueryImageFileKeyOption.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrQueryImageFileKeyOption,LdrQueryImageFileKeyOption diff --git a/libc/nt/ntdll/LdrQueryModuleServiceTags.S b/libc/nt/ntdll/LdrQueryModuleServiceTags.S deleted file mode 100644 index 5df8c065a..000000000 --- a/libc/nt/ntdll/LdrQueryModuleServiceTags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrQueryModuleServiceTags,LdrQueryModuleServiceTags diff --git a/libc/nt/ntdll/LdrQueryOptionalDelayLoadedAPI.S b/libc/nt/ntdll/LdrQueryOptionalDelayLoadedAPI.S deleted file mode 100644 index d540124fe..000000000 --- a/libc/nt/ntdll/LdrQueryOptionalDelayLoadedAPI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrQueryOptionalDelayLoadedAPI,LdrQueryOptionalDelayLoadedAPI diff --git a/libc/nt/ntdll/LdrQueryProcessModuleInformation.S b/libc/nt/ntdll/LdrQueryProcessModuleInformation.S deleted file mode 100644 index 7f8d5afce..000000000 --- a/libc/nt/ntdll/LdrQueryProcessModuleInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrQueryProcessModuleInformation,LdrQueryProcessModuleInformation diff --git a/libc/nt/ntdll/LdrRegisterDllNotification.S b/libc/nt/ntdll/LdrRegisterDllNotification.S deleted file mode 100644 index 1065b1048..000000000 --- a/libc/nt/ntdll/LdrRegisterDllNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrRegisterDllNotification,LdrRegisterDllNotification diff --git a/libc/nt/ntdll/LdrRemoveDllDirectory.S b/libc/nt/ntdll/LdrRemoveDllDirectory.S deleted file mode 100644 index a5dab1a8e..000000000 --- a/libc/nt/ntdll/LdrRemoveDllDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrRemoveDllDirectory,LdrRemoveDllDirectory diff --git a/libc/nt/ntdll/LdrRemoveLoadAsDataTable.S b/libc/nt/ntdll/LdrRemoveLoadAsDataTable.S deleted file mode 100644 index 48a4f1e6d..000000000 --- a/libc/nt/ntdll/LdrRemoveLoadAsDataTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrRemoveLoadAsDataTable,LdrRemoveLoadAsDataTable diff --git a/libc/nt/ntdll/LdrResFindResource.S b/libc/nt/ntdll/LdrResFindResource.S deleted file mode 100644 index 5e353f440..000000000 --- a/libc/nt/ntdll/LdrResFindResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrResFindResource,LdrResFindResource diff --git a/libc/nt/ntdll/LdrResFindResourceDirectory.S b/libc/nt/ntdll/LdrResFindResourceDirectory.S deleted file mode 100644 index a751d3654..000000000 --- a/libc/nt/ntdll/LdrResFindResourceDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrResFindResourceDirectory,LdrResFindResourceDirectory diff --git a/libc/nt/ntdll/LdrResGetRCConfig.S b/libc/nt/ntdll/LdrResGetRCConfig.S deleted file mode 100644 index 68cd43ccb..000000000 --- a/libc/nt/ntdll/LdrResGetRCConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrResGetRCConfig,LdrResGetRCConfig diff --git a/libc/nt/ntdll/LdrResRelease.S b/libc/nt/ntdll/LdrResRelease.S deleted file mode 100644 index 562a858ed..000000000 --- a/libc/nt/ntdll/LdrResRelease.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrResRelease,LdrResRelease diff --git a/libc/nt/ntdll/LdrResSearchResource.S b/libc/nt/ntdll/LdrResSearchResource.S deleted file mode 100644 index 44a7879f7..000000000 --- a/libc/nt/ntdll/LdrResSearchResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrResSearchResource,LdrResSearchResource diff --git a/libc/nt/ntdll/LdrResolveDelayLoadedAPI.S b/libc/nt/ntdll/LdrResolveDelayLoadedAPI.S deleted file mode 100644 index ea8d751d5..000000000 --- a/libc/nt/ntdll/LdrResolveDelayLoadedAPI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrResolveDelayLoadedAPI,LdrResolveDelayLoadedAPI diff --git a/libc/nt/ntdll/LdrResolveDelayLoadsFromDll.S b/libc/nt/ntdll/LdrResolveDelayLoadsFromDll.S deleted file mode 100644 index ece8ba26d..000000000 --- a/libc/nt/ntdll/LdrResolveDelayLoadsFromDll.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrResolveDelayLoadsFromDll,LdrResolveDelayLoadsFromDll diff --git a/libc/nt/ntdll/LdrRscIsTypeExist.S b/libc/nt/ntdll/LdrRscIsTypeExist.S deleted file mode 100644 index 52d955719..000000000 --- a/libc/nt/ntdll/LdrRscIsTypeExist.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrRscIsTypeExist,LdrRscIsTypeExist diff --git a/libc/nt/ntdll/LdrSetAppCompatDllRedirectionCallback.S b/libc/nt/ntdll/LdrSetAppCompatDllRedirectionCallback.S deleted file mode 100644 index bce088fb2..000000000 --- a/libc/nt/ntdll/LdrSetAppCompatDllRedirectionCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrSetAppCompatDllRedirectionCallback,LdrSetAppCompatDllRedirectionCallback diff --git a/libc/nt/ntdll/LdrSetDefaultDllDirectories.S b/libc/nt/ntdll/LdrSetDefaultDllDirectories.S deleted file mode 100644 index 7c7ffb22c..000000000 --- a/libc/nt/ntdll/LdrSetDefaultDllDirectories.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrSetDefaultDllDirectories,LdrSetDefaultDllDirectories diff --git a/libc/nt/ntdll/LdrSetDllDirectory.S b/libc/nt/ntdll/LdrSetDllDirectory.S deleted file mode 100644 index 065ce1a26..000000000 --- a/libc/nt/ntdll/LdrSetDllDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrSetDllDirectory,LdrSetDllDirectory diff --git a/libc/nt/ntdll/LdrSetDllManifestProber.S b/libc/nt/ntdll/LdrSetDllManifestProber.S deleted file mode 100644 index c0be9f601..000000000 --- a/libc/nt/ntdll/LdrSetDllManifestProber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrSetDllManifestProber,LdrSetDllManifestProber diff --git a/libc/nt/ntdll/LdrSetImplicitPathOptions.S b/libc/nt/ntdll/LdrSetImplicitPathOptions.S deleted file mode 100644 index 4c6eaba03..000000000 --- a/libc/nt/ntdll/LdrSetImplicitPathOptions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrSetImplicitPathOptions,LdrSetImplicitPathOptions diff --git a/libc/nt/ntdll/LdrSetMUICacheType.S b/libc/nt/ntdll/LdrSetMUICacheType.S deleted file mode 100644 index 1c901b46c..000000000 --- a/libc/nt/ntdll/LdrSetMUICacheType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrSetMUICacheType,LdrSetMUICacheType diff --git a/libc/nt/ntdll/LdrShutdownProcess.S b/libc/nt/ntdll/LdrShutdownProcess.S deleted file mode 100644 index 9d70defc5..000000000 --- a/libc/nt/ntdll/LdrShutdownProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrShutdownProcess,LdrShutdownProcess diff --git a/libc/nt/ntdll/LdrShutdownThread.S b/libc/nt/ntdll/LdrShutdownThread.S deleted file mode 100644 index 37b1cb98f..000000000 --- a/libc/nt/ntdll/LdrShutdownThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrShutdownThread,LdrShutdownThread diff --git a/libc/nt/ntdll/LdrStandardizeSystemPath.S b/libc/nt/ntdll/LdrStandardizeSystemPath.S deleted file mode 100644 index e0e694f8e..000000000 --- a/libc/nt/ntdll/LdrStandardizeSystemPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrStandardizeSystemPath,LdrStandardizeSystemPath diff --git a/libc/nt/ntdll/LdrSystemDllInitBlock.S b/libc/nt/ntdll/LdrSystemDllInitBlock.S deleted file mode 100644 index 5f5b88c38..000000000 --- a/libc/nt/ntdll/LdrSystemDllInitBlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrSystemDllInitBlock,LdrSystemDllInitBlock diff --git a/libc/nt/ntdll/LdrUnloadAlternateResourceModule.S b/libc/nt/ntdll/LdrUnloadAlternateResourceModule.S deleted file mode 100644 index 4834ae940..000000000 --- a/libc/nt/ntdll/LdrUnloadAlternateResourceModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrUnloadAlternateResourceModule,LdrUnloadAlternateResourceModule diff --git a/libc/nt/ntdll/LdrUnloadAlternateResourceModuleEx.S b/libc/nt/ntdll/LdrUnloadAlternateResourceModuleEx.S deleted file mode 100644 index b53a447b1..000000000 --- a/libc/nt/ntdll/LdrUnloadAlternateResourceModuleEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrUnloadAlternateResourceModuleEx,LdrUnloadAlternateResourceModuleEx diff --git a/libc/nt/ntdll/LdrUnlockLoaderLock.S b/libc/nt/ntdll/LdrUnlockLoaderLock.S deleted file mode 100644 index 2236b1df6..000000000 --- a/libc/nt/ntdll/LdrUnlockLoaderLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrUnlockLoaderLock,LdrUnlockLoaderLock diff --git a/libc/nt/ntdll/LdrUnregisterDllNotification.S b/libc/nt/ntdll/LdrUnregisterDllNotification.S deleted file mode 100644 index c18012fdc..000000000 --- a/libc/nt/ntdll/LdrUnregisterDllNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrUnregisterDllNotification,LdrUnregisterDllNotification diff --git a/libc/nt/ntdll/LdrUpdatePackageSearchPath.S b/libc/nt/ntdll/LdrUpdatePackageSearchPath.S deleted file mode 100644 index 07fefbdfe..000000000 --- a/libc/nt/ntdll/LdrUpdatePackageSearchPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrUpdatePackageSearchPath,LdrUpdatePackageSearchPath diff --git a/libc/nt/ntdll/LdrVerifyImageMatchesChecksum.S b/libc/nt/ntdll/LdrVerifyImageMatchesChecksum.S deleted file mode 100644 index 38e4d14e9..000000000 --- a/libc/nt/ntdll/LdrVerifyImageMatchesChecksum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrVerifyImageMatchesChecksum,LdrVerifyImageMatchesChecksum diff --git a/libc/nt/ntdll/LdrVerifyImageMatchesChecksumEx.S b/libc/nt/ntdll/LdrVerifyImageMatchesChecksumEx.S deleted file mode 100644 index e837ac752..000000000 --- a/libc/nt/ntdll/LdrVerifyImageMatchesChecksumEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrVerifyImageMatchesChecksumEx,LdrVerifyImageMatchesChecksumEx diff --git a/libc/nt/ntdll/LdrpResGetMappingSize.S b/libc/nt/ntdll/LdrpResGetMappingSize.S deleted file mode 100644 index eeba0bc64..000000000 --- a/libc/nt/ntdll/LdrpResGetMappingSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrpResGetMappingSize,LdrpResGetMappingSize diff --git a/libc/nt/ntdll/LdrpResGetResourceDirectory.S b/libc/nt/ntdll/LdrpResGetResourceDirectory.S deleted file mode 100644 index 6ab040547..000000000 --- a/libc/nt/ntdll/LdrpResGetResourceDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp LdrpResGetResourceDirectory,LdrpResGetResourceDirectory diff --git a/libc/nt/ntdll/MD4Final.S b/libc/nt/ntdll/MD4Final.S deleted file mode 100644 index 70f7ff777..000000000 --- a/libc/nt/ntdll/MD4Final.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp MD4Final,MD4Final diff --git a/libc/nt/ntdll/MD4Init.S b/libc/nt/ntdll/MD4Init.S deleted file mode 100644 index c5f7916e9..000000000 --- a/libc/nt/ntdll/MD4Init.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp MD4Init,MD4Init diff --git a/libc/nt/ntdll/MD4Update.S b/libc/nt/ntdll/MD4Update.S deleted file mode 100644 index e0d3a5e8f..000000000 --- a/libc/nt/ntdll/MD4Update.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp MD4Update,MD4Update diff --git a/libc/nt/ntdll/NlsAnsiCodePage.S b/libc/nt/ntdll/NlsAnsiCodePage.S deleted file mode 100644 index ab212c03d..000000000 --- a/libc/nt/ntdll/NlsAnsiCodePage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NlsAnsiCodePage,NlsAnsiCodePage diff --git a/libc/nt/ntdll/NlsMbCodePageTag.S b/libc/nt/ntdll/NlsMbCodePageTag.S deleted file mode 100644 index 137d294a8..000000000 --- a/libc/nt/ntdll/NlsMbCodePageTag.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NlsMbCodePageTag,NlsMbCodePageTag diff --git a/libc/nt/ntdll/NlsMbOemCodePageTag.S b/libc/nt/ntdll/NlsMbOemCodePageTag.S deleted file mode 100644 index 3e31adf9d..000000000 --- a/libc/nt/ntdll/NlsMbOemCodePageTag.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NlsMbOemCodePageTag,NlsMbOemCodePageTag diff --git a/libc/nt/ntdll/NtAcceptConnectPort.S b/libc/nt/ntdll/NtAcceptConnectPort.S deleted file mode 100644 index 6bfd109fa..000000000 --- a/libc/nt/ntdll/NtAcceptConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAcceptConnectPort,NtAcceptConnectPort diff --git a/libc/nt/ntdll/NtAccessCheck.S b/libc/nt/ntdll/NtAccessCheck.S deleted file mode 100644 index 213cc1b13..000000000 --- a/libc/nt/ntdll/NtAccessCheck.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAccessCheck,NtAccessCheck diff --git a/libc/nt/ntdll/NtAccessCheckAndAuditAlarm.S b/libc/nt/ntdll/NtAccessCheckAndAuditAlarm.S deleted file mode 100644 index 921773105..000000000 --- a/libc/nt/ntdll/NtAccessCheckAndAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAccessCheckAndAuditAlarm,NtAccessCheckAndAuditAlarm diff --git a/libc/nt/ntdll/NtAccessCheckByType.S b/libc/nt/ntdll/NtAccessCheckByType.S deleted file mode 100644 index 6c6728f1d..000000000 --- a/libc/nt/ntdll/NtAccessCheckByType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAccessCheckByType,NtAccessCheckByType diff --git a/libc/nt/ntdll/NtAccessCheckByTypeAndAuditAlarm.S b/libc/nt/ntdll/NtAccessCheckByTypeAndAuditAlarm.S deleted file mode 100644 index b285af511..000000000 --- a/libc/nt/ntdll/NtAccessCheckByTypeAndAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAccessCheckByTypeAndAuditAlarm,NtAccessCheckByTypeAndAuditAlarm diff --git a/libc/nt/ntdll/NtAccessCheckByTypeResultList.S b/libc/nt/ntdll/NtAccessCheckByTypeResultList.S deleted file mode 100644 index f1de45179..000000000 --- a/libc/nt/ntdll/NtAccessCheckByTypeResultList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAccessCheckByTypeResultList,NtAccessCheckByTypeResultList diff --git a/libc/nt/ntdll/NtAccessCheckByTypeResultListAndAuditAlarm.S b/libc/nt/ntdll/NtAccessCheckByTypeResultListAndAuditAlarm.S deleted file mode 100644 index 3b93779fe..000000000 --- a/libc/nt/ntdll/NtAccessCheckByTypeResultListAndAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAccessCheckByTypeResultListAndAuditAlarm,NtAccessCheckByTypeResultListAndAuditAlarm diff --git a/libc/nt/ntdll/NtAccessCheckByTypeResultListAndAuditAlarmByHandle.S b/libc/nt/ntdll/NtAccessCheckByTypeResultListAndAuditAlarmByHandle.S deleted file mode 100644 index 875dde844..000000000 --- a/libc/nt/ntdll/NtAccessCheckByTypeResultListAndAuditAlarmByHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAccessCheckByTypeResultListAndAuditAlarmByHandle,NtAccessCheckByTypeResultListAndAuditAlarmByHandle diff --git a/libc/nt/ntdll/NtAcquireProcessActivityReference.S b/libc/nt/ntdll/NtAcquireProcessActivityReference.S deleted file mode 100644 index fd54521af..000000000 --- a/libc/nt/ntdll/NtAcquireProcessActivityReference.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAcquireProcessActivityReference,NtAcquireProcessActivityReference diff --git a/libc/nt/ntdll/NtAddAtom.S b/libc/nt/ntdll/NtAddAtom.S deleted file mode 100644 index 1050b406f..000000000 --- a/libc/nt/ntdll/NtAddAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAddAtom,NtAddAtom diff --git a/libc/nt/ntdll/NtAddAtomEx.S b/libc/nt/ntdll/NtAddAtomEx.S deleted file mode 100644 index 927a2267a..000000000 --- a/libc/nt/ntdll/NtAddAtomEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAddAtomEx,NtAddAtomEx diff --git a/libc/nt/ntdll/NtAddBootEntry.S b/libc/nt/ntdll/NtAddBootEntry.S deleted file mode 100644 index 92a1c7cc4..000000000 --- a/libc/nt/ntdll/NtAddBootEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAddBootEntry,NtAddBootEntry diff --git a/libc/nt/ntdll/NtAddDriverEntry.S b/libc/nt/ntdll/NtAddDriverEntry.S deleted file mode 100644 index c20835f61..000000000 --- a/libc/nt/ntdll/NtAddDriverEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAddDriverEntry,NtAddDriverEntry diff --git a/libc/nt/ntdll/NtAdjustGroupsToken.S b/libc/nt/ntdll/NtAdjustGroupsToken.S deleted file mode 100644 index 601617955..000000000 --- a/libc/nt/ntdll/NtAdjustGroupsToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAdjustGroupsToken,NtAdjustGroupsToken diff --git a/libc/nt/ntdll/NtAdjustPrivilegesToken.S b/libc/nt/ntdll/NtAdjustPrivilegesToken.S deleted file mode 100644 index 7fec2924c..000000000 --- a/libc/nt/ntdll/NtAdjustPrivilegesToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAdjustPrivilegesToken,NtAdjustPrivilegesToken diff --git a/libc/nt/ntdll/NtAdjustTokenClaimsAndDeviceGroups.S b/libc/nt/ntdll/NtAdjustTokenClaimsAndDeviceGroups.S deleted file mode 100644 index 3f0c04a9c..000000000 --- a/libc/nt/ntdll/NtAdjustTokenClaimsAndDeviceGroups.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAdjustTokenClaimsAndDeviceGroups,NtAdjustTokenClaimsAndDeviceGroups diff --git a/libc/nt/ntdll/NtAlertResumeThread.S b/libc/nt/ntdll/NtAlertResumeThread.S deleted file mode 100644 index 133c76704..000000000 --- a/libc/nt/ntdll/NtAlertResumeThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlertResumeThread,NtAlertResumeThread diff --git a/libc/nt/ntdll/NtAlertThread.S b/libc/nt/ntdll/NtAlertThread.S deleted file mode 100644 index ec7695b19..000000000 --- a/libc/nt/ntdll/NtAlertThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlertThread,NtAlertThread diff --git a/libc/nt/ntdll/NtAlertThreadByThreadId.S b/libc/nt/ntdll/NtAlertThreadByThreadId.S deleted file mode 100644 index b4586e4f1..000000000 --- a/libc/nt/ntdll/NtAlertThreadByThreadId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlertThreadByThreadId,NtAlertThreadByThreadId diff --git a/libc/nt/ntdll/NtAllocateLocallyUniqueId.S b/libc/nt/ntdll/NtAllocateLocallyUniqueId.S deleted file mode 100644 index 1c1074b41..000000000 --- a/libc/nt/ntdll/NtAllocateLocallyUniqueId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAllocateLocallyUniqueId,NtAllocateLocallyUniqueId diff --git a/libc/nt/ntdll/NtAllocateReserveObject.S b/libc/nt/ntdll/NtAllocateReserveObject.S deleted file mode 100644 index 50cb75c32..000000000 --- a/libc/nt/ntdll/NtAllocateReserveObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAllocateReserveObject,NtAllocateReserveObject diff --git a/libc/nt/ntdll/NtAllocateUserPhysicalPages.S b/libc/nt/ntdll/NtAllocateUserPhysicalPages.S deleted file mode 100644 index 0252b90e3..000000000 --- a/libc/nt/ntdll/NtAllocateUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAllocateUserPhysicalPages,NtAllocateUserPhysicalPages diff --git a/libc/nt/ntdll/NtAllocateUuids.S b/libc/nt/ntdll/NtAllocateUuids.S deleted file mode 100644 index 0d1aefca5..000000000 --- a/libc/nt/ntdll/NtAllocateUuids.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAllocateUuids,NtAllocateUuids diff --git a/libc/nt/ntdll/NtAllocateVirtualMemoryEx.S b/libc/nt/ntdll/NtAllocateVirtualMemoryEx.S deleted file mode 100644 index dea23d5f5..000000000 --- a/libc/nt/ntdll/NtAllocateVirtualMemoryEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAllocateVirtualMemoryEx,NtAllocateVirtualMemoryEx diff --git a/libc/nt/ntdll/NtAlpcAcceptConnectPort.S b/libc/nt/ntdll/NtAlpcAcceptConnectPort.S deleted file mode 100644 index f88fe424f..000000000 --- a/libc/nt/ntdll/NtAlpcAcceptConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcAcceptConnectPort,NtAlpcAcceptConnectPort diff --git a/libc/nt/ntdll/NtAlpcCancelMessage.S b/libc/nt/ntdll/NtAlpcCancelMessage.S deleted file mode 100644 index 1926daefd..000000000 --- a/libc/nt/ntdll/NtAlpcCancelMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcCancelMessage,NtAlpcCancelMessage diff --git a/libc/nt/ntdll/NtAlpcConnectPort.S b/libc/nt/ntdll/NtAlpcConnectPort.S deleted file mode 100644 index 199f0f671..000000000 --- a/libc/nt/ntdll/NtAlpcConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcConnectPort,NtAlpcConnectPort diff --git a/libc/nt/ntdll/NtAlpcConnectPortEx.S b/libc/nt/ntdll/NtAlpcConnectPortEx.S deleted file mode 100644 index ca8860cb6..000000000 --- a/libc/nt/ntdll/NtAlpcConnectPortEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcConnectPortEx,NtAlpcConnectPortEx diff --git a/libc/nt/ntdll/NtAlpcCreatePort.S b/libc/nt/ntdll/NtAlpcCreatePort.S deleted file mode 100644 index a47ba0e39..000000000 --- a/libc/nt/ntdll/NtAlpcCreatePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcCreatePort,NtAlpcCreatePort diff --git a/libc/nt/ntdll/NtAlpcCreatePortSection.S b/libc/nt/ntdll/NtAlpcCreatePortSection.S deleted file mode 100644 index a603c01e3..000000000 --- a/libc/nt/ntdll/NtAlpcCreatePortSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcCreatePortSection,NtAlpcCreatePortSection diff --git a/libc/nt/ntdll/NtAlpcCreateResourceReserve.S b/libc/nt/ntdll/NtAlpcCreateResourceReserve.S deleted file mode 100644 index 659cf6793..000000000 --- a/libc/nt/ntdll/NtAlpcCreateResourceReserve.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcCreateResourceReserve,NtAlpcCreateResourceReserve diff --git a/libc/nt/ntdll/NtAlpcCreateSectionView.S b/libc/nt/ntdll/NtAlpcCreateSectionView.S deleted file mode 100644 index a0ed04392..000000000 --- a/libc/nt/ntdll/NtAlpcCreateSectionView.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcCreateSectionView,NtAlpcCreateSectionView diff --git a/libc/nt/ntdll/NtAlpcCreateSecurityContext.S b/libc/nt/ntdll/NtAlpcCreateSecurityContext.S deleted file mode 100644 index 52fb1cf74..000000000 --- a/libc/nt/ntdll/NtAlpcCreateSecurityContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcCreateSecurityContext,NtAlpcCreateSecurityContext diff --git a/libc/nt/ntdll/NtAlpcDeletePortSection.S b/libc/nt/ntdll/NtAlpcDeletePortSection.S deleted file mode 100644 index fcb903e4c..000000000 --- a/libc/nt/ntdll/NtAlpcDeletePortSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcDeletePortSection,NtAlpcDeletePortSection diff --git a/libc/nt/ntdll/NtAlpcDeleteResourceReserve.S b/libc/nt/ntdll/NtAlpcDeleteResourceReserve.S deleted file mode 100644 index 2d13d2d21..000000000 --- a/libc/nt/ntdll/NtAlpcDeleteResourceReserve.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcDeleteResourceReserve,NtAlpcDeleteResourceReserve diff --git a/libc/nt/ntdll/NtAlpcDeleteSectionView.S b/libc/nt/ntdll/NtAlpcDeleteSectionView.S deleted file mode 100644 index 44277541d..000000000 --- a/libc/nt/ntdll/NtAlpcDeleteSectionView.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcDeleteSectionView,NtAlpcDeleteSectionView diff --git a/libc/nt/ntdll/NtAlpcDeleteSecurityContext.S b/libc/nt/ntdll/NtAlpcDeleteSecurityContext.S deleted file mode 100644 index ee2b4c07a..000000000 --- a/libc/nt/ntdll/NtAlpcDeleteSecurityContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcDeleteSecurityContext,NtAlpcDeleteSecurityContext diff --git a/libc/nt/ntdll/NtAlpcDisconnectPort.S b/libc/nt/ntdll/NtAlpcDisconnectPort.S deleted file mode 100644 index e8a53d5cd..000000000 --- a/libc/nt/ntdll/NtAlpcDisconnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcDisconnectPort,NtAlpcDisconnectPort diff --git a/libc/nt/ntdll/NtAlpcImpersonateClientContainerOfPort.S b/libc/nt/ntdll/NtAlpcImpersonateClientContainerOfPort.S deleted file mode 100644 index bb6a81038..000000000 --- a/libc/nt/ntdll/NtAlpcImpersonateClientContainerOfPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcImpersonateClientContainerOfPort,NtAlpcImpersonateClientContainerOfPort diff --git a/libc/nt/ntdll/NtAlpcImpersonateClientOfPort.S b/libc/nt/ntdll/NtAlpcImpersonateClientOfPort.S deleted file mode 100644 index 251c3d400..000000000 --- a/libc/nt/ntdll/NtAlpcImpersonateClientOfPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcImpersonateClientOfPort,NtAlpcImpersonateClientOfPort diff --git a/libc/nt/ntdll/NtAlpcOpenSenderProcess.S b/libc/nt/ntdll/NtAlpcOpenSenderProcess.S deleted file mode 100644 index 0ac854b4b..000000000 --- a/libc/nt/ntdll/NtAlpcOpenSenderProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcOpenSenderProcess,NtAlpcOpenSenderProcess diff --git a/libc/nt/ntdll/NtAlpcOpenSenderThread.S b/libc/nt/ntdll/NtAlpcOpenSenderThread.S deleted file mode 100644 index 343de0d18..000000000 --- a/libc/nt/ntdll/NtAlpcOpenSenderThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcOpenSenderThread,NtAlpcOpenSenderThread diff --git a/libc/nt/ntdll/NtAlpcQueryInformation.S b/libc/nt/ntdll/NtAlpcQueryInformation.S deleted file mode 100644 index 832e92082..000000000 --- a/libc/nt/ntdll/NtAlpcQueryInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcQueryInformation,NtAlpcQueryInformation diff --git a/libc/nt/ntdll/NtAlpcQueryInformationMessage.S b/libc/nt/ntdll/NtAlpcQueryInformationMessage.S deleted file mode 100644 index 5ea7d708c..000000000 --- a/libc/nt/ntdll/NtAlpcQueryInformationMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcQueryInformationMessage,NtAlpcQueryInformationMessage diff --git a/libc/nt/ntdll/NtAlpcRevokeSecurityContext.S b/libc/nt/ntdll/NtAlpcRevokeSecurityContext.S deleted file mode 100644 index 1b4bd75a9..000000000 --- a/libc/nt/ntdll/NtAlpcRevokeSecurityContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcRevokeSecurityContext,NtAlpcRevokeSecurityContext diff --git a/libc/nt/ntdll/NtAlpcSendWaitReceivePort.S b/libc/nt/ntdll/NtAlpcSendWaitReceivePort.S deleted file mode 100644 index d32f2f5e9..000000000 --- a/libc/nt/ntdll/NtAlpcSendWaitReceivePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcSendWaitReceivePort,NtAlpcSendWaitReceivePort diff --git a/libc/nt/ntdll/NtAlpcSetInformation.S b/libc/nt/ntdll/NtAlpcSetInformation.S deleted file mode 100644 index 5acfa6485..000000000 --- a/libc/nt/ntdll/NtAlpcSetInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAlpcSetInformation,NtAlpcSetInformation diff --git a/libc/nt/ntdll/NtApphelpCacheControl.S b/libc/nt/ntdll/NtApphelpCacheControl.S deleted file mode 100644 index d813300e7..000000000 --- a/libc/nt/ntdll/NtApphelpCacheControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtApphelpCacheControl,NtApphelpCacheControl diff --git a/libc/nt/ntdll/NtAreMappedFilesTheSame.S b/libc/nt/ntdll/NtAreMappedFilesTheSame.S deleted file mode 100644 index 06fba1c54..000000000 --- a/libc/nt/ntdll/NtAreMappedFilesTheSame.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAreMappedFilesTheSame,NtAreMappedFilesTheSame diff --git a/libc/nt/ntdll/NtAssignProcessToJobObject.S b/libc/nt/ntdll/NtAssignProcessToJobObject.S deleted file mode 100644 index cc174ed7e..000000000 --- a/libc/nt/ntdll/NtAssignProcessToJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAssignProcessToJobObject,NtAssignProcessToJobObject diff --git a/libc/nt/ntdll/NtAssociateWaitCompletionPacket.S b/libc/nt/ntdll/NtAssociateWaitCompletionPacket.S deleted file mode 100644 index 5a782da16..000000000 --- a/libc/nt/ntdll/NtAssociateWaitCompletionPacket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtAssociateWaitCompletionPacket,NtAssociateWaitCompletionPacket diff --git a/libc/nt/ntdll/NtCallEnclave.S b/libc/nt/ntdll/NtCallEnclave.S deleted file mode 100644 index b266b664a..000000000 --- a/libc/nt/ntdll/NtCallEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCallEnclave,NtCallEnclave diff --git a/libc/nt/ntdll/NtCancelSynchronousIoFile.S b/libc/nt/ntdll/NtCancelSynchronousIoFile.S deleted file mode 100644 index 28dcd8e05..000000000 --- a/libc/nt/ntdll/NtCancelSynchronousIoFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCancelSynchronousIoFile,NtCancelSynchronousIoFile diff --git a/libc/nt/ntdll/NtCancelTimer.S b/libc/nt/ntdll/NtCancelTimer.S deleted file mode 100644 index 9d5d14060..000000000 --- a/libc/nt/ntdll/NtCancelTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCancelTimer,NtCancelTimer diff --git a/libc/nt/ntdll/NtCancelTimer2.S b/libc/nt/ntdll/NtCancelTimer2.S deleted file mode 100644 index f4c0f3010..000000000 --- a/libc/nt/ntdll/NtCancelTimer2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCancelTimer2,NtCancelTimer2 diff --git a/libc/nt/ntdll/NtCancelWaitCompletionPacket.S b/libc/nt/ntdll/NtCancelWaitCompletionPacket.S deleted file mode 100644 index 226cb7465..000000000 --- a/libc/nt/ntdll/NtCancelWaitCompletionPacket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCancelWaitCompletionPacket,NtCancelWaitCompletionPacket diff --git a/libc/nt/ntdll/NtCloseObjectAuditAlarm.S b/libc/nt/ntdll/NtCloseObjectAuditAlarm.S deleted file mode 100644 index 0d6150d47..000000000 --- a/libc/nt/ntdll/NtCloseObjectAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCloseObjectAuditAlarm,NtCloseObjectAuditAlarm diff --git a/libc/nt/ntdll/NtCommitComplete.S b/libc/nt/ntdll/NtCommitComplete.S deleted file mode 100644 index 4533a5763..000000000 --- a/libc/nt/ntdll/NtCommitComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCommitComplete,NtCommitComplete diff --git a/libc/nt/ntdll/NtCommitEnlistment.S b/libc/nt/ntdll/NtCommitEnlistment.S deleted file mode 100644 index f583742af..000000000 --- a/libc/nt/ntdll/NtCommitEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCommitEnlistment,NtCommitEnlistment diff --git a/libc/nt/ntdll/NtCommitRegistryTransaction.S b/libc/nt/ntdll/NtCommitRegistryTransaction.S deleted file mode 100644 index 949702263..000000000 --- a/libc/nt/ntdll/NtCommitRegistryTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCommitRegistryTransaction,NtCommitRegistryTransaction diff --git a/libc/nt/ntdll/NtCommitTransaction.S b/libc/nt/ntdll/NtCommitTransaction.S deleted file mode 100644 index 5b345e01c..000000000 --- a/libc/nt/ntdll/NtCommitTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCommitTransaction,NtCommitTransaction diff --git a/libc/nt/ntdll/NtCompactKeys.S b/libc/nt/ntdll/NtCompactKeys.S deleted file mode 100644 index abfe98812..000000000 --- a/libc/nt/ntdll/NtCompactKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCompactKeys,NtCompactKeys diff --git a/libc/nt/ntdll/NtCompareObjects.S b/libc/nt/ntdll/NtCompareObjects.S deleted file mode 100644 index 01b5c3741..000000000 --- a/libc/nt/ntdll/NtCompareObjects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCompareObjects,NtCompareObjects diff --git a/libc/nt/ntdll/NtCompareSigningLevels.S b/libc/nt/ntdll/NtCompareSigningLevels.S deleted file mode 100644 index 0f76342e4..000000000 --- a/libc/nt/ntdll/NtCompareSigningLevels.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCompareSigningLevels,NtCompareSigningLevels diff --git a/libc/nt/ntdll/NtCompareTokens.S b/libc/nt/ntdll/NtCompareTokens.S deleted file mode 100644 index 94d05b774..000000000 --- a/libc/nt/ntdll/NtCompareTokens.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCompareTokens,NtCompareTokens diff --git a/libc/nt/ntdll/NtCompleteConnectPort.S b/libc/nt/ntdll/NtCompleteConnectPort.S deleted file mode 100644 index 67ff1d17c..000000000 --- a/libc/nt/ntdll/NtCompleteConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCompleteConnectPort,NtCompleteConnectPort diff --git a/libc/nt/ntdll/NtCompressKey.S b/libc/nt/ntdll/NtCompressKey.S deleted file mode 100644 index ac64f9ed1..000000000 --- a/libc/nt/ntdll/NtCompressKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCompressKey,NtCompressKey diff --git a/libc/nt/ntdll/NtConnectPort.S b/libc/nt/ntdll/NtConnectPort.S deleted file mode 100644 index 081046178..000000000 --- a/libc/nt/ntdll/NtConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtConnectPort,NtConnectPort diff --git a/libc/nt/ntdll/NtConvertBetweenAuxiliaryCounterAndPerformanceCounter.S b/libc/nt/ntdll/NtConvertBetweenAuxiliaryCounterAndPerformanceCounter.S deleted file mode 100644 index c59ded79f..000000000 --- a/libc/nt/ntdll/NtConvertBetweenAuxiliaryCounterAndPerformanceCounter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtConvertBetweenAuxiliaryCounterAndPerformanceCounter,NtConvertBetweenAuxiliaryCounterAndPerformanceCounter diff --git a/libc/nt/ntdll/NtCreateDebugObject.S b/libc/nt/ntdll/NtCreateDebugObject.S deleted file mode 100644 index f9d31bac1..000000000 --- a/libc/nt/ntdll/NtCreateDebugObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateDebugObject,NtCreateDebugObject diff --git a/libc/nt/ntdll/NtCreateDirectoryObjectEx.S b/libc/nt/ntdll/NtCreateDirectoryObjectEx.S deleted file mode 100644 index 6aa1e786b..000000000 --- a/libc/nt/ntdll/NtCreateDirectoryObjectEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateDirectoryObjectEx,NtCreateDirectoryObjectEx diff --git a/libc/nt/ntdll/NtCreateEnclave.S b/libc/nt/ntdll/NtCreateEnclave.S deleted file mode 100644 index 66a790ab9..000000000 --- a/libc/nt/ntdll/NtCreateEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateEnclave,NtCreateEnclave diff --git a/libc/nt/ntdll/NtCreateEnlistment.S b/libc/nt/ntdll/NtCreateEnlistment.S deleted file mode 100644 index 729c6c1ef..000000000 --- a/libc/nt/ntdll/NtCreateEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateEnlistment,NtCreateEnlistment diff --git a/libc/nt/ntdll/NtCreateEventPair.S b/libc/nt/ntdll/NtCreateEventPair.S deleted file mode 100644 index b7f902b18..000000000 --- a/libc/nt/ntdll/NtCreateEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateEventPair,NtCreateEventPair diff --git a/libc/nt/ntdll/NtCreateIRTimer.S b/libc/nt/ntdll/NtCreateIRTimer.S deleted file mode 100644 index 45769be8c..000000000 --- a/libc/nt/ntdll/NtCreateIRTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateIRTimer,NtCreateIRTimer diff --git a/libc/nt/ntdll/NtCreateJobObject.S b/libc/nt/ntdll/NtCreateJobObject.S deleted file mode 100644 index 98bbc2cce..000000000 --- a/libc/nt/ntdll/NtCreateJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateJobObject,NtCreateJobObject diff --git a/libc/nt/ntdll/NtCreateJobSet.S b/libc/nt/ntdll/NtCreateJobSet.S deleted file mode 100644 index 04978e15f..000000000 --- a/libc/nt/ntdll/NtCreateJobSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateJobSet,NtCreateJobSet diff --git a/libc/nt/ntdll/NtCreateKeyTransacted.S b/libc/nt/ntdll/NtCreateKeyTransacted.S deleted file mode 100644 index baf2a7252..000000000 --- a/libc/nt/ntdll/NtCreateKeyTransacted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateKeyTransacted,NtCreateKeyTransacted diff --git a/libc/nt/ntdll/NtCreateLowBoxToken.S b/libc/nt/ntdll/NtCreateLowBoxToken.S deleted file mode 100644 index b95058b9c..000000000 --- a/libc/nt/ntdll/NtCreateLowBoxToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateLowBoxToken,NtCreateLowBoxToken diff --git a/libc/nt/ntdll/NtCreateMailslotFile.S b/libc/nt/ntdll/NtCreateMailslotFile.S deleted file mode 100644 index a2af29359..000000000 --- a/libc/nt/ntdll/NtCreateMailslotFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateMailslotFile,NtCreateMailslotFile diff --git a/libc/nt/ntdll/NtCreateMutant.S b/libc/nt/ntdll/NtCreateMutant.S deleted file mode 100644 index 8c54c8a52..000000000 --- a/libc/nt/ntdll/NtCreateMutant.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateMutant,NtCreateMutant diff --git a/libc/nt/ntdll/NtCreatePagingFile.S b/libc/nt/ntdll/NtCreatePagingFile.S deleted file mode 100644 index b9310065e..000000000 --- a/libc/nt/ntdll/NtCreatePagingFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreatePagingFile,NtCreatePagingFile diff --git a/libc/nt/ntdll/NtCreatePartition.S b/libc/nt/ntdll/NtCreatePartition.S deleted file mode 100644 index e065904bb..000000000 --- a/libc/nt/ntdll/NtCreatePartition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreatePartition,NtCreatePartition diff --git a/libc/nt/ntdll/NtCreatePort.S b/libc/nt/ntdll/NtCreatePort.S deleted file mode 100644 index 81c198a4f..000000000 --- a/libc/nt/ntdll/NtCreatePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreatePort,NtCreatePort diff --git a/libc/nt/ntdll/NtCreatePrivateNamespace.S b/libc/nt/ntdll/NtCreatePrivateNamespace.S deleted file mode 100644 index ac555e221..000000000 --- a/libc/nt/ntdll/NtCreatePrivateNamespace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreatePrivateNamespace,NtCreatePrivateNamespace diff --git a/libc/nt/ntdll/NtCreateProcessEx.S b/libc/nt/ntdll/NtCreateProcessEx.S deleted file mode 100644 index 1e0415805..000000000 --- a/libc/nt/ntdll/NtCreateProcessEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateProcessEx,NtCreateProcessEx diff --git a/libc/nt/ntdll/NtCreateProfileEx.S b/libc/nt/ntdll/NtCreateProfileEx.S deleted file mode 100644 index 743264e58..000000000 --- a/libc/nt/ntdll/NtCreateProfileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateProfileEx,NtCreateProfileEx diff --git a/libc/nt/ntdll/NtCreateRegistryTransaction.S b/libc/nt/ntdll/NtCreateRegistryTransaction.S deleted file mode 100644 index dbaa26996..000000000 --- a/libc/nt/ntdll/NtCreateRegistryTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateRegistryTransaction,NtCreateRegistryTransaction diff --git a/libc/nt/ntdll/NtCreateResourceManager.S b/libc/nt/ntdll/NtCreateResourceManager.S deleted file mode 100644 index 08ed93bee..000000000 --- a/libc/nt/ntdll/NtCreateResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateResourceManager,NtCreateResourceManager diff --git a/libc/nt/ntdll/NtCreateSemaphore.S b/libc/nt/ntdll/NtCreateSemaphore.S deleted file mode 100644 index 5c2850633..000000000 --- a/libc/nt/ntdll/NtCreateSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateSemaphore,NtCreateSemaphore diff --git a/libc/nt/ntdll/NtCreateSymbolicLinkObject.S b/libc/nt/ntdll/NtCreateSymbolicLinkObject.S deleted file mode 100644 index 243bb6bc6..000000000 --- a/libc/nt/ntdll/NtCreateSymbolicLinkObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateSymbolicLinkObject,NtCreateSymbolicLinkObject diff --git a/libc/nt/ntdll/NtCreateThreadEx.S b/libc/nt/ntdll/NtCreateThreadEx.S deleted file mode 100644 index 55dcacbf0..000000000 --- a/libc/nt/ntdll/NtCreateThreadEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateThreadEx,NtCreateThreadEx diff --git a/libc/nt/ntdll/NtCreateTimer2.S b/libc/nt/ntdll/NtCreateTimer2.S deleted file mode 100644 index 6910ddca2..000000000 --- a/libc/nt/ntdll/NtCreateTimer2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateTimer2,NtCreateTimer2 diff --git a/libc/nt/ntdll/NtCreateToken.S b/libc/nt/ntdll/NtCreateToken.S deleted file mode 100644 index 75c8cd021..000000000 --- a/libc/nt/ntdll/NtCreateToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateToken,NtCreateToken diff --git a/libc/nt/ntdll/NtCreateTokenEx.S b/libc/nt/ntdll/NtCreateTokenEx.S deleted file mode 100644 index dfe0d5b06..000000000 --- a/libc/nt/ntdll/NtCreateTokenEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateTokenEx,NtCreateTokenEx diff --git a/libc/nt/ntdll/NtCreateTransaction.S b/libc/nt/ntdll/NtCreateTransaction.S deleted file mode 100644 index 76fe1e855..000000000 --- a/libc/nt/ntdll/NtCreateTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateTransaction,NtCreateTransaction diff --git a/libc/nt/ntdll/NtCreateTransactionManager.S b/libc/nt/ntdll/NtCreateTransactionManager.S deleted file mode 100644 index b0c006bf9..000000000 --- a/libc/nt/ntdll/NtCreateTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateTransactionManager,NtCreateTransactionManager diff --git a/libc/nt/ntdll/NtCreateUserProcess.S b/libc/nt/ntdll/NtCreateUserProcess.S deleted file mode 100644 index ad48839e1..000000000 --- a/libc/nt/ntdll/NtCreateUserProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateUserProcess,NtCreateUserProcess diff --git a/libc/nt/ntdll/NtCreateWaitCompletionPacket.S b/libc/nt/ntdll/NtCreateWaitCompletionPacket.S deleted file mode 100644 index 11fcb514c..000000000 --- a/libc/nt/ntdll/NtCreateWaitCompletionPacket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateWaitCompletionPacket,NtCreateWaitCompletionPacket diff --git a/libc/nt/ntdll/NtCreateWaitablePort.S b/libc/nt/ntdll/NtCreateWaitablePort.S deleted file mode 100644 index 326178e7a..000000000 --- a/libc/nt/ntdll/NtCreateWaitablePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateWaitablePort,NtCreateWaitablePort diff --git a/libc/nt/ntdll/NtCreateWnfStateName.S b/libc/nt/ntdll/NtCreateWnfStateName.S deleted file mode 100644 index 00e71cf5a..000000000 --- a/libc/nt/ntdll/NtCreateWnfStateName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateWnfStateName,NtCreateWnfStateName diff --git a/libc/nt/ntdll/NtCreateWorkerFactory.S b/libc/nt/ntdll/NtCreateWorkerFactory.S deleted file mode 100644 index da281fcaf..000000000 --- a/libc/nt/ntdll/NtCreateWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtCreateWorkerFactory,NtCreateWorkerFactory diff --git a/libc/nt/ntdll/NtDebugActiveProcess.S b/libc/nt/ntdll/NtDebugActiveProcess.S deleted file mode 100644 index b21cb442c..000000000 --- a/libc/nt/ntdll/NtDebugActiveProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDebugActiveProcess,NtDebugActiveProcess diff --git a/libc/nt/ntdll/NtDebugContinue.S b/libc/nt/ntdll/NtDebugContinue.S deleted file mode 100644 index 43c7dbf7e..000000000 --- a/libc/nt/ntdll/NtDebugContinue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDebugContinue,NtDebugContinue diff --git a/libc/nt/ntdll/NtDeleteAtom.S b/libc/nt/ntdll/NtDeleteAtom.S deleted file mode 100644 index 18941234e..000000000 --- a/libc/nt/ntdll/NtDeleteAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDeleteAtom,NtDeleteAtom diff --git a/libc/nt/ntdll/NtDeleteBootEntry.S b/libc/nt/ntdll/NtDeleteBootEntry.S deleted file mode 100644 index e6ec5ff66..000000000 --- a/libc/nt/ntdll/NtDeleteBootEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDeleteBootEntry,NtDeleteBootEntry diff --git a/libc/nt/ntdll/NtDeleteDriverEntry.S b/libc/nt/ntdll/NtDeleteDriverEntry.S deleted file mode 100644 index a2f28e3b1..000000000 --- a/libc/nt/ntdll/NtDeleteDriverEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDeleteDriverEntry,NtDeleteDriverEntry diff --git a/libc/nt/ntdll/NtDeleteObjectAuditAlarm.S b/libc/nt/ntdll/NtDeleteObjectAuditAlarm.S deleted file mode 100644 index d01cbdb19..000000000 --- a/libc/nt/ntdll/NtDeleteObjectAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDeleteObjectAuditAlarm,NtDeleteObjectAuditAlarm diff --git a/libc/nt/ntdll/NtDeletePrivateNamespace.S b/libc/nt/ntdll/NtDeletePrivateNamespace.S deleted file mode 100644 index f219928e8..000000000 --- a/libc/nt/ntdll/NtDeletePrivateNamespace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDeletePrivateNamespace,NtDeletePrivateNamespace diff --git a/libc/nt/ntdll/NtDeleteValueKey.S b/libc/nt/ntdll/NtDeleteValueKey.S deleted file mode 100644 index 74c31c424..000000000 --- a/libc/nt/ntdll/NtDeleteValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDeleteValueKey,NtDeleteValueKey diff --git a/libc/nt/ntdll/NtDeleteWnfStateData.S b/libc/nt/ntdll/NtDeleteWnfStateData.S deleted file mode 100644 index 18c8ec358..000000000 --- a/libc/nt/ntdll/NtDeleteWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDeleteWnfStateData,NtDeleteWnfStateData diff --git a/libc/nt/ntdll/NtDeleteWnfStateName.S b/libc/nt/ntdll/NtDeleteWnfStateName.S deleted file mode 100644 index d743b6571..000000000 --- a/libc/nt/ntdll/NtDeleteWnfStateName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDeleteWnfStateName,NtDeleteWnfStateName diff --git a/libc/nt/ntdll/NtDisableLastKnownGood.S b/libc/nt/ntdll/NtDisableLastKnownGood.S deleted file mode 100644 index 4ab717689..000000000 --- a/libc/nt/ntdll/NtDisableLastKnownGood.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDisableLastKnownGood,NtDisableLastKnownGood diff --git a/libc/nt/ntdll/NtDisplayString.S b/libc/nt/ntdll/NtDisplayString.S deleted file mode 100644 index cddce91de..000000000 --- a/libc/nt/ntdll/NtDisplayString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDisplayString,NtDisplayString diff --git a/libc/nt/ntdll/NtDrawText.S b/libc/nt/ntdll/NtDrawText.S deleted file mode 100644 index c35ac8f78..000000000 --- a/libc/nt/ntdll/NtDrawText.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDrawText,NtDrawText diff --git a/libc/nt/ntdll/NtDuplicateToken.S b/libc/nt/ntdll/NtDuplicateToken.S deleted file mode 100644 index d37f0f1a3..000000000 --- a/libc/nt/ntdll/NtDuplicateToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtDuplicateToken,NtDuplicateToken diff --git a/libc/nt/ntdll/NtEnableLastKnownGood.S b/libc/nt/ntdll/NtEnableLastKnownGood.S deleted file mode 100644 index ec571654e..000000000 --- a/libc/nt/ntdll/NtEnableLastKnownGood.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtEnableLastKnownGood,NtEnableLastKnownGood diff --git a/libc/nt/ntdll/NtEnumerateBootEntries.S b/libc/nt/ntdll/NtEnumerateBootEntries.S deleted file mode 100644 index bab1d0ba7..000000000 --- a/libc/nt/ntdll/NtEnumerateBootEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtEnumerateBootEntries,NtEnumerateBootEntries diff --git a/libc/nt/ntdll/NtEnumerateDriverEntries.S b/libc/nt/ntdll/NtEnumerateDriverEntries.S deleted file mode 100644 index 2744dc690..000000000 --- a/libc/nt/ntdll/NtEnumerateDriverEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtEnumerateDriverEntries,NtEnumerateDriverEntries diff --git a/libc/nt/ntdll/NtEnumerateSystemEnvironmentValuesEx.S b/libc/nt/ntdll/NtEnumerateSystemEnvironmentValuesEx.S deleted file mode 100644 index 591946bf9..000000000 --- a/libc/nt/ntdll/NtEnumerateSystemEnvironmentValuesEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtEnumerateSystemEnvironmentValuesEx,NtEnumerateSystemEnvironmentValuesEx diff --git a/libc/nt/ntdll/NtEnumerateTransactionObject.S b/libc/nt/ntdll/NtEnumerateTransactionObject.S deleted file mode 100644 index 42fb8f1ff..000000000 --- a/libc/nt/ntdll/NtEnumerateTransactionObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtEnumerateTransactionObject,NtEnumerateTransactionObject diff --git a/libc/nt/ntdll/NtExtendSection.S b/libc/nt/ntdll/NtExtendSection.S deleted file mode 100644 index 9a85cf147..000000000 --- a/libc/nt/ntdll/NtExtendSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtExtendSection,NtExtendSection diff --git a/libc/nt/ntdll/NtFilterBootOption.S b/libc/nt/ntdll/NtFilterBootOption.S deleted file mode 100644 index f6f7eb7ed..000000000 --- a/libc/nt/ntdll/NtFilterBootOption.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFilterBootOption,NtFilterBootOption diff --git a/libc/nt/ntdll/NtFilterToken.S b/libc/nt/ntdll/NtFilterToken.S deleted file mode 100644 index 69faf0008..000000000 --- a/libc/nt/ntdll/NtFilterToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFilterToken,NtFilterToken diff --git a/libc/nt/ntdll/NtFilterTokenEx.S b/libc/nt/ntdll/NtFilterTokenEx.S deleted file mode 100644 index 124b5e126..000000000 --- a/libc/nt/ntdll/NtFilterTokenEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFilterTokenEx,NtFilterTokenEx diff --git a/libc/nt/ntdll/NtFindAtom.S b/libc/nt/ntdll/NtFindAtom.S deleted file mode 100644 index 7900d52a4..000000000 --- a/libc/nt/ntdll/NtFindAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFindAtom,NtFindAtom diff --git a/libc/nt/ntdll/NtFlushBuffersFileEx.S b/libc/nt/ntdll/NtFlushBuffersFileEx.S deleted file mode 100644 index f256657f0..000000000 --- a/libc/nt/ntdll/NtFlushBuffersFileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFlushBuffersFileEx,NtFlushBuffersFileEx diff --git a/libc/nt/ntdll/NtFlushInstallUILanguage.S b/libc/nt/ntdll/NtFlushInstallUILanguage.S deleted file mode 100644 index 3735c5d94..000000000 --- a/libc/nt/ntdll/NtFlushInstallUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFlushInstallUILanguage,NtFlushInstallUILanguage diff --git a/libc/nt/ntdll/NtFlushProcessWriteBuffers.S b/libc/nt/ntdll/NtFlushProcessWriteBuffers.S deleted file mode 100644 index 2df38c060..000000000 --- a/libc/nt/ntdll/NtFlushProcessWriteBuffers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFlushProcessWriteBuffers,NtFlushProcessWriteBuffers diff --git a/libc/nt/ntdll/NtFlushWriteBuffer.S b/libc/nt/ntdll/NtFlushWriteBuffer.S deleted file mode 100644 index 005097eb0..000000000 --- a/libc/nt/ntdll/NtFlushWriteBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFlushWriteBuffer,NtFlushWriteBuffer diff --git a/libc/nt/ntdll/NtFreeUserPhysicalPages.S b/libc/nt/ntdll/NtFreeUserPhysicalPages.S deleted file mode 100644 index 967a5423d..000000000 --- a/libc/nt/ntdll/NtFreeUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFreeUserPhysicalPages,NtFreeUserPhysicalPages diff --git a/libc/nt/ntdll/NtFreezeRegistry.S b/libc/nt/ntdll/NtFreezeRegistry.S deleted file mode 100644 index 970a64820..000000000 --- a/libc/nt/ntdll/NtFreezeRegistry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFreezeRegistry,NtFreezeRegistry diff --git a/libc/nt/ntdll/NtFreezeTransactions.S b/libc/nt/ntdll/NtFreezeTransactions.S deleted file mode 100644 index af3d8bec5..000000000 --- a/libc/nt/ntdll/NtFreezeTransactions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtFreezeTransactions,NtFreezeTransactions diff --git a/libc/nt/ntdll/NtGetCachedSigningLevel.S b/libc/nt/ntdll/NtGetCachedSigningLevel.S deleted file mode 100644 index e3cdcd6a2..000000000 --- a/libc/nt/ntdll/NtGetCachedSigningLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetCachedSigningLevel,NtGetCachedSigningLevel diff --git a/libc/nt/ntdll/NtGetCompleteWnfStateSubscription.S b/libc/nt/ntdll/NtGetCompleteWnfStateSubscription.S deleted file mode 100644 index fdc52cd20..000000000 --- a/libc/nt/ntdll/NtGetCompleteWnfStateSubscription.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetCompleteWnfStateSubscription,NtGetCompleteWnfStateSubscription diff --git a/libc/nt/ntdll/NtGetCurrentProcessorNumber.S b/libc/nt/ntdll/NtGetCurrentProcessorNumber.S deleted file mode 100644 index 2eeccb5e7..000000000 --- a/libc/nt/ntdll/NtGetCurrentProcessorNumber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetCurrentProcessorNumber,NtGetCurrentProcessorNumber diff --git a/libc/nt/ntdll/NtGetCurrentProcessorNumberEx.S b/libc/nt/ntdll/NtGetCurrentProcessorNumberEx.S deleted file mode 100644 index c7f62f1c5..000000000 --- a/libc/nt/ntdll/NtGetCurrentProcessorNumberEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetCurrentProcessorNumberEx,NtGetCurrentProcessorNumberEx diff --git a/libc/nt/ntdll/NtGetDevicePowerState.S b/libc/nt/ntdll/NtGetDevicePowerState.S deleted file mode 100644 index 749880b7f..000000000 --- a/libc/nt/ntdll/NtGetDevicePowerState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetDevicePowerState,NtGetDevicePowerState diff --git a/libc/nt/ntdll/NtGetMUIRegistryInfo.S b/libc/nt/ntdll/NtGetMUIRegistryInfo.S deleted file mode 100644 index 1f8c6ce2c..000000000 --- a/libc/nt/ntdll/NtGetMUIRegistryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetMUIRegistryInfo,NtGetMUIRegistryInfo diff --git a/libc/nt/ntdll/NtGetNextProcess.S b/libc/nt/ntdll/NtGetNextProcess.S deleted file mode 100644 index a20aea30b..000000000 --- a/libc/nt/ntdll/NtGetNextProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetNextProcess,NtGetNextProcess diff --git a/libc/nt/ntdll/NtGetNextThread.S b/libc/nt/ntdll/NtGetNextThread.S deleted file mode 100644 index 628abdb5a..000000000 --- a/libc/nt/ntdll/NtGetNextThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetNextThread,NtGetNextThread diff --git a/libc/nt/ntdll/NtGetNlsSectionPtr.S b/libc/nt/ntdll/NtGetNlsSectionPtr.S deleted file mode 100644 index 1d2c35601..000000000 --- a/libc/nt/ntdll/NtGetNlsSectionPtr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetNlsSectionPtr,NtGetNlsSectionPtr diff --git a/libc/nt/ntdll/NtGetNotificationResourceManager.S b/libc/nt/ntdll/NtGetNotificationResourceManager.S deleted file mode 100644 index dec1749fb..000000000 --- a/libc/nt/ntdll/NtGetNotificationResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetNotificationResourceManager,NtGetNotificationResourceManager diff --git a/libc/nt/ntdll/NtGetTickCount.S b/libc/nt/ntdll/NtGetTickCount.S deleted file mode 100644 index b419ff391..000000000 --- a/libc/nt/ntdll/NtGetTickCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetTickCount,NtGetTickCount diff --git a/libc/nt/ntdll/NtGetWriteWatch.S b/libc/nt/ntdll/NtGetWriteWatch.S deleted file mode 100644 index d7ee19d12..000000000 --- a/libc/nt/ntdll/NtGetWriteWatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtGetWriteWatch,NtGetWriteWatch diff --git a/libc/nt/ntdll/NtImpersonateAnonymousToken.S b/libc/nt/ntdll/NtImpersonateAnonymousToken.S deleted file mode 100644 index d833f6361..000000000 --- a/libc/nt/ntdll/NtImpersonateAnonymousToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtImpersonateAnonymousToken,NtImpersonateAnonymousToken diff --git a/libc/nt/ntdll/NtImpersonateClientOfPort.S b/libc/nt/ntdll/NtImpersonateClientOfPort.S deleted file mode 100644 index 1b25b13de..000000000 --- a/libc/nt/ntdll/NtImpersonateClientOfPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtImpersonateClientOfPort,NtImpersonateClientOfPort diff --git a/libc/nt/ntdll/NtImpersonateThread.S b/libc/nt/ntdll/NtImpersonateThread.S deleted file mode 100644 index 0784b144f..000000000 --- a/libc/nt/ntdll/NtImpersonateThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtImpersonateThread,NtImpersonateThread diff --git a/libc/nt/ntdll/NtInitializeEnclave.S b/libc/nt/ntdll/NtInitializeEnclave.S deleted file mode 100644 index ef02b0c19..000000000 --- a/libc/nt/ntdll/NtInitializeEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtInitializeEnclave,NtInitializeEnclave diff --git a/libc/nt/ntdll/NtInitializeNlsFiles.S b/libc/nt/ntdll/NtInitializeNlsFiles.S deleted file mode 100644 index b79b85928..000000000 --- a/libc/nt/ntdll/NtInitializeNlsFiles.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtInitializeNlsFiles,NtInitializeNlsFiles diff --git a/libc/nt/ntdll/NtInitializeRegistry.S b/libc/nt/ntdll/NtInitializeRegistry.S deleted file mode 100644 index b07e548e0..000000000 --- a/libc/nt/ntdll/NtInitializeRegistry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtInitializeRegistry,NtInitializeRegistry diff --git a/libc/nt/ntdll/NtInitiatePowerAction.S b/libc/nt/ntdll/NtInitiatePowerAction.S deleted file mode 100644 index 83c0f46d8..000000000 --- a/libc/nt/ntdll/NtInitiatePowerAction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtInitiatePowerAction,NtInitiatePowerAction diff --git a/libc/nt/ntdll/NtIsProcessInJob.S b/libc/nt/ntdll/NtIsProcessInJob.S deleted file mode 100644 index e6e032c2a..000000000 --- a/libc/nt/ntdll/NtIsProcessInJob.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtIsProcessInJob,NtIsProcessInJob diff --git a/libc/nt/ntdll/NtIsSystemResumeAutomatic.S b/libc/nt/ntdll/NtIsSystemResumeAutomatic.S deleted file mode 100644 index 35e681a51..000000000 --- a/libc/nt/ntdll/NtIsSystemResumeAutomatic.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtIsSystemResumeAutomatic,NtIsSystemResumeAutomatic diff --git a/libc/nt/ntdll/NtIsUILanguageComitted.S b/libc/nt/ntdll/NtIsUILanguageComitted.S deleted file mode 100644 index 87c7f36e4..000000000 --- a/libc/nt/ntdll/NtIsUILanguageComitted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtIsUILanguageComitted,NtIsUILanguageComitted diff --git a/libc/nt/ntdll/NtListenPort.S b/libc/nt/ntdll/NtListenPort.S deleted file mode 100644 index d98544fa4..000000000 --- a/libc/nt/ntdll/NtListenPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtListenPort,NtListenPort diff --git a/libc/nt/ntdll/NtLoadDriver.S b/libc/nt/ntdll/NtLoadDriver.S deleted file mode 100644 index 3de13b74a..000000000 --- a/libc/nt/ntdll/NtLoadDriver.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLoadDriver,NtLoadDriver diff --git a/libc/nt/ntdll/NtLoadEnclaveData.S b/libc/nt/ntdll/NtLoadEnclaveData.S deleted file mode 100644 index 010bf9c2d..000000000 --- a/libc/nt/ntdll/NtLoadEnclaveData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLoadEnclaveData,NtLoadEnclaveData diff --git a/libc/nt/ntdll/NtLoadHotPatch.S b/libc/nt/ntdll/NtLoadHotPatch.S deleted file mode 100644 index 9be38bec3..000000000 --- a/libc/nt/ntdll/NtLoadHotPatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLoadHotPatch,NtLoadHotPatch diff --git a/libc/nt/ntdll/NtLoadKey.S b/libc/nt/ntdll/NtLoadKey.S deleted file mode 100644 index 8eb89a020..000000000 --- a/libc/nt/ntdll/NtLoadKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLoadKey,NtLoadKey diff --git a/libc/nt/ntdll/NtLoadKey2.S b/libc/nt/ntdll/NtLoadKey2.S deleted file mode 100644 index 17256c22f..000000000 --- a/libc/nt/ntdll/NtLoadKey2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLoadKey2,NtLoadKey2 diff --git a/libc/nt/ntdll/NtLoadKeyEx.S b/libc/nt/ntdll/NtLoadKeyEx.S deleted file mode 100644 index 251662b0a..000000000 --- a/libc/nt/ntdll/NtLoadKeyEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLoadKeyEx,NtLoadKeyEx diff --git a/libc/nt/ntdll/NtLockFile.S b/libc/nt/ntdll/NtLockFile.S deleted file mode 100644 index eebaaff24..000000000 --- a/libc/nt/ntdll/NtLockFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLockFile,NtLockFile diff --git a/libc/nt/ntdll/NtLockProductActivationKeys.S b/libc/nt/ntdll/NtLockProductActivationKeys.S deleted file mode 100644 index 0b2bfea31..000000000 --- a/libc/nt/ntdll/NtLockProductActivationKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLockProductActivationKeys,NtLockProductActivationKeys diff --git a/libc/nt/ntdll/NtLockRegistryKey.S b/libc/nt/ntdll/NtLockRegistryKey.S deleted file mode 100644 index 3495befec..000000000 --- a/libc/nt/ntdll/NtLockRegistryKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLockRegistryKey,NtLockRegistryKey diff --git a/libc/nt/ntdll/NtLockVirtualMemory.S b/libc/nt/ntdll/NtLockVirtualMemory.S deleted file mode 100644 index ea8ca6592..000000000 --- a/libc/nt/ntdll/NtLockVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtLockVirtualMemory,NtLockVirtualMemory diff --git a/libc/nt/ntdll/NtMakePermanentObject.S b/libc/nt/ntdll/NtMakePermanentObject.S deleted file mode 100644 index 440ad0d7d..000000000 --- a/libc/nt/ntdll/NtMakePermanentObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtMakePermanentObject,NtMakePermanentObject diff --git a/libc/nt/ntdll/NtMakeTemporaryObject.S b/libc/nt/ntdll/NtMakeTemporaryObject.S deleted file mode 100644 index 4b8c52d13..000000000 --- a/libc/nt/ntdll/NtMakeTemporaryObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtMakeTemporaryObject,NtMakeTemporaryObject diff --git a/libc/nt/ntdll/NtManagePartition.S b/libc/nt/ntdll/NtManagePartition.S deleted file mode 100644 index a61243855..000000000 --- a/libc/nt/ntdll/NtManagePartition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtManagePartition,NtManagePartition diff --git a/libc/nt/ntdll/NtMapCMFModule.S b/libc/nt/ntdll/NtMapCMFModule.S deleted file mode 100644 index 2b078e7c4..000000000 --- a/libc/nt/ntdll/NtMapCMFModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtMapCMFModule,NtMapCMFModule diff --git a/libc/nt/ntdll/NtMapUserPhysicalPages.S b/libc/nt/ntdll/NtMapUserPhysicalPages.S deleted file mode 100644 index 4ff63c87c..000000000 --- a/libc/nt/ntdll/NtMapUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtMapUserPhysicalPages,NtMapUserPhysicalPages diff --git a/libc/nt/ntdll/NtMapUserPhysicalPagesScatter.S b/libc/nt/ntdll/NtMapUserPhysicalPagesScatter.S deleted file mode 100644 index 8b8a2be21..000000000 --- a/libc/nt/ntdll/NtMapUserPhysicalPagesScatter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtMapUserPhysicalPagesScatter,NtMapUserPhysicalPagesScatter diff --git a/libc/nt/ntdll/NtMapViewOfSectionEx.S b/libc/nt/ntdll/NtMapViewOfSectionEx.S deleted file mode 100644 index 6602a878a..000000000 --- a/libc/nt/ntdll/NtMapViewOfSectionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtMapViewOfSectionEx,NtMapViewOfSectionEx diff --git a/libc/nt/ntdll/NtModifyBootEntry.S b/libc/nt/ntdll/NtModifyBootEntry.S deleted file mode 100644 index 7f31c09d0..000000000 --- a/libc/nt/ntdll/NtModifyBootEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtModifyBootEntry,NtModifyBootEntry diff --git a/libc/nt/ntdll/NtModifyDriverEntry.S b/libc/nt/ntdll/NtModifyDriverEntry.S deleted file mode 100644 index 43258afcd..000000000 --- a/libc/nt/ntdll/NtModifyDriverEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtModifyDriverEntry,NtModifyDriverEntry diff --git a/libc/nt/ntdll/NtNotifyChangeDirectoryFile.S b/libc/nt/ntdll/NtNotifyChangeDirectoryFile.S deleted file mode 100644 index 8e5758697..000000000 --- a/libc/nt/ntdll/NtNotifyChangeDirectoryFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtNotifyChangeDirectoryFile,NtNotifyChangeDirectoryFile diff --git a/libc/nt/ntdll/NtNotifyChangeDirectoryFileEx.S b/libc/nt/ntdll/NtNotifyChangeDirectoryFileEx.S deleted file mode 100644 index 7e756dc52..000000000 --- a/libc/nt/ntdll/NtNotifyChangeDirectoryFileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtNotifyChangeDirectoryFileEx,NtNotifyChangeDirectoryFileEx diff --git a/libc/nt/ntdll/NtNotifyChangeKey.S b/libc/nt/ntdll/NtNotifyChangeKey.S deleted file mode 100644 index 99cb076f8..000000000 --- a/libc/nt/ntdll/NtNotifyChangeKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtNotifyChangeKey,NtNotifyChangeKey diff --git a/libc/nt/ntdll/NtNotifyChangeMultipleKeys.S b/libc/nt/ntdll/NtNotifyChangeMultipleKeys.S deleted file mode 100644 index 2bddd0271..000000000 --- a/libc/nt/ntdll/NtNotifyChangeMultipleKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtNotifyChangeMultipleKeys,NtNotifyChangeMultipleKeys diff --git a/libc/nt/ntdll/NtNotifyChangeSession.S b/libc/nt/ntdll/NtNotifyChangeSession.S deleted file mode 100644 index 9706e9ad2..000000000 --- a/libc/nt/ntdll/NtNotifyChangeSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtNotifyChangeSession,NtNotifyChangeSession diff --git a/libc/nt/ntdll/NtOpenEnlistment.S b/libc/nt/ntdll/NtOpenEnlistment.S deleted file mode 100644 index 334e8d15c..000000000 --- a/libc/nt/ntdll/NtOpenEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenEnlistment,NtOpenEnlistment diff --git a/libc/nt/ntdll/NtOpenEvent.S b/libc/nt/ntdll/NtOpenEvent.S deleted file mode 100644 index dcec04cfb..000000000 --- a/libc/nt/ntdll/NtOpenEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenEvent,NtOpenEvent diff --git a/libc/nt/ntdll/NtOpenEventPair.S b/libc/nt/ntdll/NtOpenEventPair.S deleted file mode 100644 index 15e1cf2de..000000000 --- a/libc/nt/ntdll/NtOpenEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenEventPair,NtOpenEventPair diff --git a/libc/nt/ntdll/NtOpenIoCompletion.S b/libc/nt/ntdll/NtOpenIoCompletion.S deleted file mode 100644 index b8285ed6d..000000000 --- a/libc/nt/ntdll/NtOpenIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenIoCompletion,NtOpenIoCompletion diff --git a/libc/nt/ntdll/NtOpenJobObject.S b/libc/nt/ntdll/NtOpenJobObject.S deleted file mode 100644 index 51dab4335..000000000 --- a/libc/nt/ntdll/NtOpenJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenJobObject,NtOpenJobObject diff --git a/libc/nt/ntdll/NtOpenKeyEx.S b/libc/nt/ntdll/NtOpenKeyEx.S deleted file mode 100644 index 1a3d02a25..000000000 --- a/libc/nt/ntdll/NtOpenKeyEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenKeyEx,NtOpenKeyEx diff --git a/libc/nt/ntdll/NtOpenKeyTransacted.S b/libc/nt/ntdll/NtOpenKeyTransacted.S deleted file mode 100644 index 910cb05e4..000000000 --- a/libc/nt/ntdll/NtOpenKeyTransacted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenKeyTransacted,NtOpenKeyTransacted diff --git a/libc/nt/ntdll/NtOpenKeyTransactedEx.S b/libc/nt/ntdll/NtOpenKeyTransactedEx.S deleted file mode 100644 index 598e946df..000000000 --- a/libc/nt/ntdll/NtOpenKeyTransactedEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenKeyTransactedEx,NtOpenKeyTransactedEx diff --git a/libc/nt/ntdll/NtOpenKeyedEvent.S b/libc/nt/ntdll/NtOpenKeyedEvent.S deleted file mode 100644 index 6cae087aa..000000000 --- a/libc/nt/ntdll/NtOpenKeyedEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenKeyedEvent,NtOpenKeyedEvent diff --git a/libc/nt/ntdll/NtOpenMutant.S b/libc/nt/ntdll/NtOpenMutant.S deleted file mode 100644 index 46d00410a..000000000 --- a/libc/nt/ntdll/NtOpenMutant.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenMutant,NtOpenMutant diff --git a/libc/nt/ntdll/NtOpenObjectAuditAlarm.S b/libc/nt/ntdll/NtOpenObjectAuditAlarm.S deleted file mode 100644 index 324b60f90..000000000 --- a/libc/nt/ntdll/NtOpenObjectAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenObjectAuditAlarm,NtOpenObjectAuditAlarm diff --git a/libc/nt/ntdll/NtOpenPartition.S b/libc/nt/ntdll/NtOpenPartition.S deleted file mode 100644 index 08ecd75da..000000000 --- a/libc/nt/ntdll/NtOpenPartition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenPartition,NtOpenPartition diff --git a/libc/nt/ntdll/NtOpenPrivateNamespace.S b/libc/nt/ntdll/NtOpenPrivateNamespace.S deleted file mode 100644 index bb4de705c..000000000 --- a/libc/nt/ntdll/NtOpenPrivateNamespace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenPrivateNamespace,NtOpenPrivateNamespace diff --git a/libc/nt/ntdll/NtOpenProcessTokenEx.S b/libc/nt/ntdll/NtOpenProcessTokenEx.S deleted file mode 100644 index 1ddef25b5..000000000 --- a/libc/nt/ntdll/NtOpenProcessTokenEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenProcessTokenEx,NtOpenProcessTokenEx diff --git a/libc/nt/ntdll/NtOpenRegistryTransaction.S b/libc/nt/ntdll/NtOpenRegistryTransaction.S deleted file mode 100644 index 86c67d831..000000000 --- a/libc/nt/ntdll/NtOpenRegistryTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenRegistryTransaction,NtOpenRegistryTransaction diff --git a/libc/nt/ntdll/NtOpenResourceManager.S b/libc/nt/ntdll/NtOpenResourceManager.S deleted file mode 100644 index fb98c3bdb..000000000 --- a/libc/nt/ntdll/NtOpenResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenResourceManager,NtOpenResourceManager diff --git a/libc/nt/ntdll/NtOpenSemaphore.S b/libc/nt/ntdll/NtOpenSemaphore.S deleted file mode 100644 index 054f9cecb..000000000 --- a/libc/nt/ntdll/NtOpenSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenSemaphore,NtOpenSemaphore diff --git a/libc/nt/ntdll/NtOpenSession.S b/libc/nt/ntdll/NtOpenSession.S deleted file mode 100644 index 6337a7a71..000000000 --- a/libc/nt/ntdll/NtOpenSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenSession,NtOpenSession diff --git a/libc/nt/ntdll/NtOpenThreadTokenEx.S b/libc/nt/ntdll/NtOpenThreadTokenEx.S deleted file mode 100644 index 5689d77d1..000000000 --- a/libc/nt/ntdll/NtOpenThreadTokenEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenThreadTokenEx,NtOpenThreadTokenEx diff --git a/libc/nt/ntdll/NtOpenTimer.S b/libc/nt/ntdll/NtOpenTimer.S deleted file mode 100644 index 0bde236bb..000000000 --- a/libc/nt/ntdll/NtOpenTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenTimer,NtOpenTimer diff --git a/libc/nt/ntdll/NtOpenTransaction.S b/libc/nt/ntdll/NtOpenTransaction.S deleted file mode 100644 index 4efbe5a93..000000000 --- a/libc/nt/ntdll/NtOpenTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenTransaction,NtOpenTransaction diff --git a/libc/nt/ntdll/NtOpenTransactionManager.S b/libc/nt/ntdll/NtOpenTransactionManager.S deleted file mode 100644 index c4fe26647..000000000 --- a/libc/nt/ntdll/NtOpenTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtOpenTransactionManager,NtOpenTransactionManager diff --git a/libc/nt/ntdll/NtPlugPlayControl.S b/libc/nt/ntdll/NtPlugPlayControl.S deleted file mode 100644 index 1804fcd53..000000000 --- a/libc/nt/ntdll/NtPlugPlayControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPlugPlayControl,NtPlugPlayControl diff --git a/libc/nt/ntdll/NtPowerInformation.S b/libc/nt/ntdll/NtPowerInformation.S deleted file mode 100644 index 4eef713ff..000000000 --- a/libc/nt/ntdll/NtPowerInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPowerInformation,NtPowerInformation diff --git a/libc/nt/ntdll/NtPrePrepareComplete.S b/libc/nt/ntdll/NtPrePrepareComplete.S deleted file mode 100644 index e38819078..000000000 --- a/libc/nt/ntdll/NtPrePrepareComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPrePrepareComplete,NtPrePrepareComplete diff --git a/libc/nt/ntdll/NtPrePrepareEnlistment.S b/libc/nt/ntdll/NtPrePrepareEnlistment.S deleted file mode 100644 index fbf1ed0ea..000000000 --- a/libc/nt/ntdll/NtPrePrepareEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPrePrepareEnlistment,NtPrePrepareEnlistment diff --git a/libc/nt/ntdll/NtPrepareComplete.S b/libc/nt/ntdll/NtPrepareComplete.S deleted file mode 100644 index 050d4bc84..000000000 --- a/libc/nt/ntdll/NtPrepareComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPrepareComplete,NtPrepareComplete diff --git a/libc/nt/ntdll/NtPrepareEnlistment.S b/libc/nt/ntdll/NtPrepareEnlistment.S deleted file mode 100644 index 19e0224f9..000000000 --- a/libc/nt/ntdll/NtPrepareEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPrepareEnlistment,NtPrepareEnlistment diff --git a/libc/nt/ntdll/NtPrivilegeCheck.S b/libc/nt/ntdll/NtPrivilegeCheck.S deleted file mode 100644 index 28ecadc8b..000000000 --- a/libc/nt/ntdll/NtPrivilegeCheck.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPrivilegeCheck,NtPrivilegeCheck diff --git a/libc/nt/ntdll/NtPrivilegeObjectAuditAlarm.S b/libc/nt/ntdll/NtPrivilegeObjectAuditAlarm.S deleted file mode 100644 index 7f8587137..000000000 --- a/libc/nt/ntdll/NtPrivilegeObjectAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPrivilegeObjectAuditAlarm,NtPrivilegeObjectAuditAlarm diff --git a/libc/nt/ntdll/NtPrivilegedServiceAuditAlarm.S b/libc/nt/ntdll/NtPrivilegedServiceAuditAlarm.S deleted file mode 100644 index 087b41307..000000000 --- a/libc/nt/ntdll/NtPrivilegedServiceAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPrivilegedServiceAuditAlarm,NtPrivilegedServiceAuditAlarm diff --git a/libc/nt/ntdll/NtPropagationComplete.S b/libc/nt/ntdll/NtPropagationComplete.S deleted file mode 100644 index 6c5dc45d0..000000000 --- a/libc/nt/ntdll/NtPropagationComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPropagationComplete,NtPropagationComplete diff --git a/libc/nt/ntdll/NtPropagationFailed.S b/libc/nt/ntdll/NtPropagationFailed.S deleted file mode 100644 index bd521f5f4..000000000 --- a/libc/nt/ntdll/NtPropagationFailed.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPropagationFailed,NtPropagationFailed diff --git a/libc/nt/ntdll/NtPulseEvent.S b/libc/nt/ntdll/NtPulseEvent.S deleted file mode 100644 index 966950d03..000000000 --- a/libc/nt/ntdll/NtPulseEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtPulseEvent,NtPulseEvent diff --git a/libc/nt/ntdll/NtQueryAuxiliaryCounterFrequency.S b/libc/nt/ntdll/NtQueryAuxiliaryCounterFrequency.S deleted file mode 100644 index 9d18d2760..000000000 --- a/libc/nt/ntdll/NtQueryAuxiliaryCounterFrequency.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryAuxiliaryCounterFrequency,NtQueryAuxiliaryCounterFrequency diff --git a/libc/nt/ntdll/NtQueryBootEntryOrder.S b/libc/nt/ntdll/NtQueryBootEntryOrder.S deleted file mode 100644 index 84efd9cee..000000000 --- a/libc/nt/ntdll/NtQueryBootEntryOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryBootEntryOrder,NtQueryBootEntryOrder diff --git a/libc/nt/ntdll/NtQueryBootOptions.S b/libc/nt/ntdll/NtQueryBootOptions.S deleted file mode 100644 index 29dbe72fd..000000000 --- a/libc/nt/ntdll/NtQueryBootOptions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryBootOptions,NtQueryBootOptions diff --git a/libc/nt/ntdll/NtQueryDebugFilterState.S b/libc/nt/ntdll/NtQueryDebugFilterState.S deleted file mode 100644 index 4066a0ee3..000000000 --- a/libc/nt/ntdll/NtQueryDebugFilterState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryDebugFilterState,NtQueryDebugFilterState diff --git a/libc/nt/ntdll/NtQueryDefaultLocale.S b/libc/nt/ntdll/NtQueryDefaultLocale.S deleted file mode 100644 index 006daf645..000000000 --- a/libc/nt/ntdll/NtQueryDefaultLocale.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryDefaultLocale,NtQueryDefaultLocale diff --git a/libc/nt/ntdll/NtQueryDefaultUILanguage.S b/libc/nt/ntdll/NtQueryDefaultUILanguage.S deleted file mode 100644 index cb8a7d206..000000000 --- a/libc/nt/ntdll/NtQueryDefaultUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryDefaultUILanguage,NtQueryDefaultUILanguage diff --git a/libc/nt/ntdll/NtQueryDirectoryFileEx.S b/libc/nt/ntdll/NtQueryDirectoryFileEx.S deleted file mode 100644 index 129568bc7..000000000 --- a/libc/nt/ntdll/NtQueryDirectoryFileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryDirectoryFileEx,NtQueryDirectoryFileEx diff --git a/libc/nt/ntdll/NtQueryDirectoryObject.S b/libc/nt/ntdll/NtQueryDirectoryObject.S deleted file mode 100644 index e74d87590..000000000 --- a/libc/nt/ntdll/NtQueryDirectoryObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryDirectoryObject,NtQueryDirectoryObject diff --git a/libc/nt/ntdll/NtQueryDriverEntryOrder.S b/libc/nt/ntdll/NtQueryDriverEntryOrder.S deleted file mode 100644 index d7cd0374f..000000000 --- a/libc/nt/ntdll/NtQueryDriverEntryOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryDriverEntryOrder,NtQueryDriverEntryOrder diff --git a/libc/nt/ntdll/NtQueryEaFile.S b/libc/nt/ntdll/NtQueryEaFile.S deleted file mode 100644 index db9b587c4..000000000 --- a/libc/nt/ntdll/NtQueryEaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryEaFile,NtQueryEaFile diff --git a/libc/nt/ntdll/NtQueryEvent.S b/libc/nt/ntdll/NtQueryEvent.S deleted file mode 100644 index 044ed2075..000000000 --- a/libc/nt/ntdll/NtQueryEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryEvent,NtQueryEvent diff --git a/libc/nt/ntdll/NtQueryInformationAtom.S b/libc/nt/ntdll/NtQueryInformationAtom.S deleted file mode 100644 index 7c13cbca8..000000000 --- a/libc/nt/ntdll/NtQueryInformationAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInformationAtom,NtQueryInformationAtom diff --git a/libc/nt/ntdll/NtQueryInformationByName.S b/libc/nt/ntdll/NtQueryInformationByName.S deleted file mode 100644 index 4ad5b80e2..000000000 --- a/libc/nt/ntdll/NtQueryInformationByName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInformationByName,NtQueryInformationByName diff --git a/libc/nt/ntdll/NtQueryInformationEnlistment.S b/libc/nt/ntdll/NtQueryInformationEnlistment.S deleted file mode 100644 index 9d7025b6d..000000000 --- a/libc/nt/ntdll/NtQueryInformationEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInformationEnlistment,NtQueryInformationEnlistment diff --git a/libc/nt/ntdll/NtQueryInformationPort.S b/libc/nt/ntdll/NtQueryInformationPort.S deleted file mode 100644 index 0b485ebc8..000000000 --- a/libc/nt/ntdll/NtQueryInformationPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInformationPort,NtQueryInformationPort diff --git a/libc/nt/ntdll/NtQueryInformationResourceManager.S b/libc/nt/ntdll/NtQueryInformationResourceManager.S deleted file mode 100644 index 53d962f71..000000000 --- a/libc/nt/ntdll/NtQueryInformationResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInformationResourceManager,NtQueryInformationResourceManager diff --git a/libc/nt/ntdll/NtQueryInformationTransaction.S b/libc/nt/ntdll/NtQueryInformationTransaction.S deleted file mode 100644 index aabb11320..000000000 --- a/libc/nt/ntdll/NtQueryInformationTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInformationTransaction,NtQueryInformationTransaction diff --git a/libc/nt/ntdll/NtQueryInformationTransactionManager.S b/libc/nt/ntdll/NtQueryInformationTransactionManager.S deleted file mode 100644 index 0c2ad2260..000000000 --- a/libc/nt/ntdll/NtQueryInformationTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInformationTransactionManager,NtQueryInformationTransactionManager diff --git a/libc/nt/ntdll/NtQueryInformationWorkerFactory.S b/libc/nt/ntdll/NtQueryInformationWorkerFactory.S deleted file mode 100644 index 41ed37ccc..000000000 --- a/libc/nt/ntdll/NtQueryInformationWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInformationWorkerFactory,NtQueryInformationWorkerFactory diff --git a/libc/nt/ntdll/NtQueryInstallUILanguage.S b/libc/nt/ntdll/NtQueryInstallUILanguage.S deleted file mode 100644 index 955a60603..000000000 --- a/libc/nt/ntdll/NtQueryInstallUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryInstallUILanguage,NtQueryInstallUILanguage diff --git a/libc/nt/ntdll/NtQueryIoCompletion.S b/libc/nt/ntdll/NtQueryIoCompletion.S deleted file mode 100644 index 13aba3e27..000000000 --- a/libc/nt/ntdll/NtQueryIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryIoCompletion,NtQueryIoCompletion diff --git a/libc/nt/ntdll/NtQueryKey.S b/libc/nt/ntdll/NtQueryKey.S deleted file mode 100644 index 2553b1296..000000000 --- a/libc/nt/ntdll/NtQueryKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryKey,NtQueryKey diff --git a/libc/nt/ntdll/NtQueryLicenseValue.S b/libc/nt/ntdll/NtQueryLicenseValue.S deleted file mode 100644 index a23a62f6c..000000000 --- a/libc/nt/ntdll/NtQueryLicenseValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryLicenseValue,NtQueryLicenseValue diff --git a/libc/nt/ntdll/NtQueryMultipleValueKey.S b/libc/nt/ntdll/NtQueryMultipleValueKey.S deleted file mode 100644 index fea514294..000000000 --- a/libc/nt/ntdll/NtQueryMultipleValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryMultipleValueKey,NtQueryMultipleValueKey diff --git a/libc/nt/ntdll/NtQueryMutant.S b/libc/nt/ntdll/NtQueryMutant.S deleted file mode 100644 index 5ee01d63a..000000000 --- a/libc/nt/ntdll/NtQueryMutant.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryMutant,NtQueryMutant diff --git a/libc/nt/ntdll/NtQueryOpenSubKeys.S b/libc/nt/ntdll/NtQueryOpenSubKeys.S deleted file mode 100644 index cddae8f2d..000000000 --- a/libc/nt/ntdll/NtQueryOpenSubKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryOpenSubKeys,NtQueryOpenSubKeys diff --git a/libc/nt/ntdll/NtQueryOpenSubKeysEx.S b/libc/nt/ntdll/NtQueryOpenSubKeysEx.S deleted file mode 100644 index dd83034be..000000000 --- a/libc/nt/ntdll/NtQueryOpenSubKeysEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryOpenSubKeysEx,NtQueryOpenSubKeysEx diff --git a/libc/nt/ntdll/NtQueryPortInformationProcess.S b/libc/nt/ntdll/NtQueryPortInformationProcess.S deleted file mode 100644 index 3a1494944..000000000 --- a/libc/nt/ntdll/NtQueryPortInformationProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryPortInformationProcess,NtQueryPortInformationProcess diff --git a/libc/nt/ntdll/NtQueryQuotaInformationFile.S b/libc/nt/ntdll/NtQueryQuotaInformationFile.S deleted file mode 100644 index f5a3584b9..000000000 --- a/libc/nt/ntdll/NtQueryQuotaInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryQuotaInformationFile,NtQueryQuotaInformationFile diff --git a/libc/nt/ntdll/NtQuerySecurityAttributesToken.S b/libc/nt/ntdll/NtQuerySecurityAttributesToken.S deleted file mode 100644 index 5e98fb406..000000000 --- a/libc/nt/ntdll/NtQuerySecurityAttributesToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQuerySecurityAttributesToken,NtQuerySecurityAttributesToken diff --git a/libc/nt/ntdll/NtQuerySecurityPolicy.S b/libc/nt/ntdll/NtQuerySecurityPolicy.S deleted file mode 100644 index 9a3bffb59..000000000 --- a/libc/nt/ntdll/NtQuerySecurityPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQuerySecurityPolicy,NtQuerySecurityPolicy diff --git a/libc/nt/ntdll/NtQuerySemaphore.S b/libc/nt/ntdll/NtQuerySemaphore.S deleted file mode 100644 index 7d5fd23d5..000000000 --- a/libc/nt/ntdll/NtQuerySemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQuerySemaphore,NtQuerySemaphore diff --git a/libc/nt/ntdll/NtQuerySystemEnvironmentValue.S b/libc/nt/ntdll/NtQuerySystemEnvironmentValue.S deleted file mode 100644 index 0edc49a82..000000000 --- a/libc/nt/ntdll/NtQuerySystemEnvironmentValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQuerySystemEnvironmentValue,NtQuerySystemEnvironmentValue diff --git a/libc/nt/ntdll/NtQuerySystemEnvironmentValueEx.S b/libc/nt/ntdll/NtQuerySystemEnvironmentValueEx.S deleted file mode 100644 index bf9130a72..000000000 --- a/libc/nt/ntdll/NtQuerySystemEnvironmentValueEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQuerySystemEnvironmentValueEx,NtQuerySystemEnvironmentValueEx diff --git a/libc/nt/ntdll/NtQuerySystemInformationEx.S b/libc/nt/ntdll/NtQuerySystemInformationEx.S deleted file mode 100644 index cd1b9a639..000000000 --- a/libc/nt/ntdll/NtQuerySystemInformationEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQuerySystemInformationEx,NtQuerySystemInformationEx diff --git a/libc/nt/ntdll/NtQueryTimer.S b/libc/nt/ntdll/NtQueryTimer.S deleted file mode 100644 index 5f73c2278..000000000 --- a/libc/nt/ntdll/NtQueryTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryTimer,NtQueryTimer diff --git a/libc/nt/ntdll/NtQueryTimerResolution.S b/libc/nt/ntdll/NtQueryTimerResolution.S deleted file mode 100644 index 3b582a579..000000000 --- a/libc/nt/ntdll/NtQueryTimerResolution.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryTimerResolution,NtQueryTimerResolution diff --git a/libc/nt/ntdll/NtQueryWnfStateData.S b/libc/nt/ntdll/NtQueryWnfStateData.S deleted file mode 100644 index ddcb8dd35..000000000 --- a/libc/nt/ntdll/NtQueryWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryWnfStateData,NtQueryWnfStateData diff --git a/libc/nt/ntdll/NtQueryWnfStateNameInformation.S b/libc/nt/ntdll/NtQueryWnfStateNameInformation.S deleted file mode 100644 index 83592465f..000000000 --- a/libc/nt/ntdll/NtQueryWnfStateNameInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueryWnfStateNameInformation,NtQueryWnfStateNameInformation diff --git a/libc/nt/ntdll/NtQueueApcThreadEx.S b/libc/nt/ntdll/NtQueueApcThreadEx.S deleted file mode 100644 index 1e7bca1ef..000000000 --- a/libc/nt/ntdll/NtQueueApcThreadEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtQueueApcThreadEx,NtQueueApcThreadEx diff --git a/libc/nt/ntdll/NtReadFileScatter.S b/libc/nt/ntdll/NtReadFileScatter.S deleted file mode 100644 index 3134e668f..000000000 --- a/libc/nt/ntdll/NtReadFileScatter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReadFileScatter,NtReadFileScatter diff --git a/libc/nt/ntdll/NtReadOnlyEnlistment.S b/libc/nt/ntdll/NtReadOnlyEnlistment.S deleted file mode 100644 index 676221388..000000000 --- a/libc/nt/ntdll/NtReadOnlyEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReadOnlyEnlistment,NtReadOnlyEnlistment diff --git a/libc/nt/ntdll/NtReadRequestData.S b/libc/nt/ntdll/NtReadRequestData.S deleted file mode 100644 index 2c5c00603..000000000 --- a/libc/nt/ntdll/NtReadRequestData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReadRequestData,NtReadRequestData diff --git a/libc/nt/ntdll/NtRecoverEnlistment.S b/libc/nt/ntdll/NtRecoverEnlistment.S deleted file mode 100644 index e4c40463d..000000000 --- a/libc/nt/ntdll/NtRecoverEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRecoverEnlistment,NtRecoverEnlistment diff --git a/libc/nt/ntdll/NtRecoverResourceManager.S b/libc/nt/ntdll/NtRecoverResourceManager.S deleted file mode 100644 index fa0b55760..000000000 --- a/libc/nt/ntdll/NtRecoverResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRecoverResourceManager,NtRecoverResourceManager diff --git a/libc/nt/ntdll/NtRecoverTransactionManager.S b/libc/nt/ntdll/NtRecoverTransactionManager.S deleted file mode 100644 index 23ee4ddf8..000000000 --- a/libc/nt/ntdll/NtRecoverTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRecoverTransactionManager,NtRecoverTransactionManager diff --git a/libc/nt/ntdll/NtRegisterProtocolAddressInformation.S b/libc/nt/ntdll/NtRegisterProtocolAddressInformation.S deleted file mode 100644 index 3dcd897ba..000000000 --- a/libc/nt/ntdll/NtRegisterProtocolAddressInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRegisterProtocolAddressInformation,NtRegisterProtocolAddressInformation diff --git a/libc/nt/ntdll/NtRegisterThreadTerminatePort.S b/libc/nt/ntdll/NtRegisterThreadTerminatePort.S deleted file mode 100644 index f254a068a..000000000 --- a/libc/nt/ntdll/NtRegisterThreadTerminatePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRegisterThreadTerminatePort,NtRegisterThreadTerminatePort diff --git a/libc/nt/ntdll/NtReleaseMutant.S b/libc/nt/ntdll/NtReleaseMutant.S deleted file mode 100644 index f49fc70ef..000000000 --- a/libc/nt/ntdll/NtReleaseMutant.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReleaseMutant,NtReleaseMutant diff --git a/libc/nt/ntdll/NtReleaseSemaphore.S b/libc/nt/ntdll/NtReleaseSemaphore.S deleted file mode 100644 index 30790ac69..000000000 --- a/libc/nt/ntdll/NtReleaseSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReleaseSemaphore,NtReleaseSemaphore diff --git a/libc/nt/ntdll/NtReleaseWorkerFactoryWorker.S b/libc/nt/ntdll/NtReleaseWorkerFactoryWorker.S deleted file mode 100644 index a9ca40885..000000000 --- a/libc/nt/ntdll/NtReleaseWorkerFactoryWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReleaseWorkerFactoryWorker,NtReleaseWorkerFactoryWorker diff --git a/libc/nt/ntdll/NtRemoveIoCompletion.S b/libc/nt/ntdll/NtRemoveIoCompletion.S deleted file mode 100644 index f1daa105d..000000000 --- a/libc/nt/ntdll/NtRemoveIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRemoveIoCompletion,NtRemoveIoCompletion diff --git a/libc/nt/ntdll/NtRemoveIoCompletionEx.S b/libc/nt/ntdll/NtRemoveIoCompletionEx.S deleted file mode 100644 index 1c77e2917..000000000 --- a/libc/nt/ntdll/NtRemoveIoCompletionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRemoveIoCompletionEx,NtRemoveIoCompletionEx diff --git a/libc/nt/ntdll/NtRemoveProcessDebug.S b/libc/nt/ntdll/NtRemoveProcessDebug.S deleted file mode 100644 index d29712647..000000000 --- a/libc/nt/ntdll/NtRemoveProcessDebug.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRemoveProcessDebug,NtRemoveProcessDebug diff --git a/libc/nt/ntdll/NtRenameKey.S b/libc/nt/ntdll/NtRenameKey.S deleted file mode 100644 index 25109b61e..000000000 --- a/libc/nt/ntdll/NtRenameKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRenameKey,NtRenameKey diff --git a/libc/nt/ntdll/NtRenameTransactionManager.S b/libc/nt/ntdll/NtRenameTransactionManager.S deleted file mode 100644 index 850e51d57..000000000 --- a/libc/nt/ntdll/NtRenameTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRenameTransactionManager,NtRenameTransactionManager diff --git a/libc/nt/ntdll/NtReplaceKey.S b/libc/nt/ntdll/NtReplaceKey.S deleted file mode 100644 index 4b345d7ac..000000000 --- a/libc/nt/ntdll/NtReplaceKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReplaceKey,NtReplaceKey diff --git a/libc/nt/ntdll/NtReplacePartitionUnit.S b/libc/nt/ntdll/NtReplacePartitionUnit.S deleted file mode 100644 index 96e15d54d..000000000 --- a/libc/nt/ntdll/NtReplacePartitionUnit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReplacePartitionUnit,NtReplacePartitionUnit diff --git a/libc/nt/ntdll/NtReplyPort.S b/libc/nt/ntdll/NtReplyPort.S deleted file mode 100644 index dc1659b1b..000000000 --- a/libc/nt/ntdll/NtReplyPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReplyPort,NtReplyPort diff --git a/libc/nt/ntdll/NtReplyWaitReceivePort.S b/libc/nt/ntdll/NtReplyWaitReceivePort.S deleted file mode 100644 index 7234bb71c..000000000 --- a/libc/nt/ntdll/NtReplyWaitReceivePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReplyWaitReceivePort,NtReplyWaitReceivePort diff --git a/libc/nt/ntdll/NtReplyWaitReceivePortEx.S b/libc/nt/ntdll/NtReplyWaitReceivePortEx.S deleted file mode 100644 index 07e092d7e..000000000 --- a/libc/nt/ntdll/NtReplyWaitReceivePortEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReplyWaitReceivePortEx,NtReplyWaitReceivePortEx diff --git a/libc/nt/ntdll/NtReplyWaitReplyPort.S b/libc/nt/ntdll/NtReplyWaitReplyPort.S deleted file mode 100644 index fdfc7aedc..000000000 --- a/libc/nt/ntdll/NtReplyWaitReplyPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtReplyWaitReplyPort,NtReplyWaitReplyPort diff --git a/libc/nt/ntdll/NtRequestPort.S b/libc/nt/ntdll/NtRequestPort.S deleted file mode 100644 index acf631e38..000000000 --- a/libc/nt/ntdll/NtRequestPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRequestPort,NtRequestPort diff --git a/libc/nt/ntdll/NtRequestWaitReplyPort.S b/libc/nt/ntdll/NtRequestWaitReplyPort.S deleted file mode 100644 index d9b4b51c2..000000000 --- a/libc/nt/ntdll/NtRequestWaitReplyPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRequestWaitReplyPort,NtRequestWaitReplyPort diff --git a/libc/nt/ntdll/NtResetEvent.S b/libc/nt/ntdll/NtResetEvent.S deleted file mode 100644 index 084189a63..000000000 --- a/libc/nt/ntdll/NtResetEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtResetEvent,NtResetEvent diff --git a/libc/nt/ntdll/NtResetWriteWatch.S b/libc/nt/ntdll/NtResetWriteWatch.S deleted file mode 100644 index 1dc4e2a8e..000000000 --- a/libc/nt/ntdll/NtResetWriteWatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtResetWriteWatch,NtResetWriteWatch diff --git a/libc/nt/ntdll/NtRestoreKey.S b/libc/nt/ntdll/NtRestoreKey.S deleted file mode 100644 index df61184b1..000000000 --- a/libc/nt/ntdll/NtRestoreKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRestoreKey,NtRestoreKey diff --git a/libc/nt/ntdll/NtResumeProcess.S b/libc/nt/ntdll/NtResumeProcess.S deleted file mode 100644 index 524a886b5..000000000 --- a/libc/nt/ntdll/NtResumeProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtResumeProcess,NtResumeProcess diff --git a/libc/nt/ntdll/NtRevertContainerImpersonation.S b/libc/nt/ntdll/NtRevertContainerImpersonation.S deleted file mode 100644 index 109ae666a..000000000 --- a/libc/nt/ntdll/NtRevertContainerImpersonation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRevertContainerImpersonation,NtRevertContainerImpersonation diff --git a/libc/nt/ntdll/NtRollbackComplete.S b/libc/nt/ntdll/NtRollbackComplete.S deleted file mode 100644 index 0126424ca..000000000 --- a/libc/nt/ntdll/NtRollbackComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRollbackComplete,NtRollbackComplete diff --git a/libc/nt/ntdll/NtRollbackEnlistment.S b/libc/nt/ntdll/NtRollbackEnlistment.S deleted file mode 100644 index c85b67241..000000000 --- a/libc/nt/ntdll/NtRollbackEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRollbackEnlistment,NtRollbackEnlistment diff --git a/libc/nt/ntdll/NtRollbackRegistryTransaction.S b/libc/nt/ntdll/NtRollbackRegistryTransaction.S deleted file mode 100644 index 9f44fc5a1..000000000 --- a/libc/nt/ntdll/NtRollbackRegistryTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRollbackRegistryTransaction,NtRollbackRegistryTransaction diff --git a/libc/nt/ntdll/NtRollbackTransaction.S b/libc/nt/ntdll/NtRollbackTransaction.S deleted file mode 100644 index bc7846fe6..000000000 --- a/libc/nt/ntdll/NtRollbackTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRollbackTransaction,NtRollbackTransaction diff --git a/libc/nt/ntdll/NtRollforwardTransactionManager.S b/libc/nt/ntdll/NtRollforwardTransactionManager.S deleted file mode 100644 index 5dfa9c6f2..000000000 --- a/libc/nt/ntdll/NtRollforwardTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtRollforwardTransactionManager,NtRollforwardTransactionManager diff --git a/libc/nt/ntdll/NtSaveKey.S b/libc/nt/ntdll/NtSaveKey.S deleted file mode 100644 index a19ab1e87..000000000 --- a/libc/nt/ntdll/NtSaveKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSaveKey,NtSaveKey diff --git a/libc/nt/ntdll/NtSaveKeyEx.S b/libc/nt/ntdll/NtSaveKeyEx.S deleted file mode 100644 index aa0f69c50..000000000 --- a/libc/nt/ntdll/NtSaveKeyEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSaveKeyEx,NtSaveKeyEx diff --git a/libc/nt/ntdll/NtSaveMergedKeys.S b/libc/nt/ntdll/NtSaveMergedKeys.S deleted file mode 100644 index 6f49bbab5..000000000 --- a/libc/nt/ntdll/NtSaveMergedKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSaveMergedKeys,NtSaveMergedKeys diff --git a/libc/nt/ntdll/NtSecureConnectPort.S b/libc/nt/ntdll/NtSecureConnectPort.S deleted file mode 100644 index 003985255..000000000 --- a/libc/nt/ntdll/NtSecureConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSecureConnectPort,NtSecureConnectPort diff --git a/libc/nt/ntdll/NtSerializeBoot.S b/libc/nt/ntdll/NtSerializeBoot.S deleted file mode 100644 index fae5d996a..000000000 --- a/libc/nt/ntdll/NtSerializeBoot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSerializeBoot,NtSerializeBoot diff --git a/libc/nt/ntdll/NtSetBootEntryOrder.S b/libc/nt/ntdll/NtSetBootEntryOrder.S deleted file mode 100644 index f8d01083e..000000000 --- a/libc/nt/ntdll/NtSetBootEntryOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetBootEntryOrder,NtSetBootEntryOrder diff --git a/libc/nt/ntdll/NtSetBootOptions.S b/libc/nt/ntdll/NtSetBootOptions.S deleted file mode 100644 index e4f12c3f7..000000000 --- a/libc/nt/ntdll/NtSetBootOptions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetBootOptions,NtSetBootOptions diff --git a/libc/nt/ntdll/NtSetCachedSigningLevel.S b/libc/nt/ntdll/NtSetCachedSigningLevel.S deleted file mode 100644 index 006d7a234..000000000 --- a/libc/nt/ntdll/NtSetCachedSigningLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetCachedSigningLevel,NtSetCachedSigningLevel diff --git a/libc/nt/ntdll/NtSetCachedSigningLevel2.S b/libc/nt/ntdll/NtSetCachedSigningLevel2.S deleted file mode 100644 index eea5e4b97..000000000 --- a/libc/nt/ntdll/NtSetCachedSigningLevel2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetCachedSigningLevel2,NtSetCachedSigningLevel2 diff --git a/libc/nt/ntdll/NtSetDebugFilterState.S b/libc/nt/ntdll/NtSetDebugFilterState.S deleted file mode 100644 index f3a057147..000000000 --- a/libc/nt/ntdll/NtSetDebugFilterState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetDebugFilterState,NtSetDebugFilterState diff --git a/libc/nt/ntdll/NtSetDefaultHardErrorPort.S b/libc/nt/ntdll/NtSetDefaultHardErrorPort.S deleted file mode 100644 index 02a0bd15a..000000000 --- a/libc/nt/ntdll/NtSetDefaultHardErrorPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetDefaultHardErrorPort,NtSetDefaultHardErrorPort diff --git a/libc/nt/ntdll/NtSetDefaultLocale.S b/libc/nt/ntdll/NtSetDefaultLocale.S deleted file mode 100644 index cbd706566..000000000 --- a/libc/nt/ntdll/NtSetDefaultLocale.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetDefaultLocale,NtSetDefaultLocale diff --git a/libc/nt/ntdll/NtSetDefaultUILanguage.S b/libc/nt/ntdll/NtSetDefaultUILanguage.S deleted file mode 100644 index 792567eb5..000000000 --- a/libc/nt/ntdll/NtSetDefaultUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetDefaultUILanguage,NtSetDefaultUILanguage diff --git a/libc/nt/ntdll/NtSetDriverEntryOrder.S b/libc/nt/ntdll/NtSetDriverEntryOrder.S deleted file mode 100644 index cd674a10a..000000000 --- a/libc/nt/ntdll/NtSetDriverEntryOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetDriverEntryOrder,NtSetDriverEntryOrder diff --git a/libc/nt/ntdll/NtSetEaFile.S b/libc/nt/ntdll/NtSetEaFile.S deleted file mode 100644 index 125bf0fc7..000000000 --- a/libc/nt/ntdll/NtSetEaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetEaFile,NtSetEaFile diff --git a/libc/nt/ntdll/NtSetEventBoostPriority.S b/libc/nt/ntdll/NtSetEventBoostPriority.S deleted file mode 100644 index 4ad5dace9..000000000 --- a/libc/nt/ntdll/NtSetEventBoostPriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetEventBoostPriority,NtSetEventBoostPriority diff --git a/libc/nt/ntdll/NtSetHighEventPair.S b/libc/nt/ntdll/NtSetHighEventPair.S deleted file mode 100644 index 858569971..000000000 --- a/libc/nt/ntdll/NtSetHighEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetHighEventPair,NtSetHighEventPair diff --git a/libc/nt/ntdll/NtSetHighWaitLowEventPair.S b/libc/nt/ntdll/NtSetHighWaitLowEventPair.S deleted file mode 100644 index 4a577d7cb..000000000 --- a/libc/nt/ntdll/NtSetHighWaitLowEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetHighWaitLowEventPair,NtSetHighWaitLowEventPair diff --git a/libc/nt/ntdll/NtSetIRTimer.S b/libc/nt/ntdll/NtSetIRTimer.S deleted file mode 100644 index d08a6d182..000000000 --- a/libc/nt/ntdll/NtSetIRTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetIRTimer,NtSetIRTimer diff --git a/libc/nt/ntdll/NtSetInformationDebugObject.S b/libc/nt/ntdll/NtSetInformationDebugObject.S deleted file mode 100644 index 745d48db4..000000000 --- a/libc/nt/ntdll/NtSetInformationDebugObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationDebugObject,NtSetInformationDebugObject diff --git a/libc/nt/ntdll/NtSetInformationEnlistment.S b/libc/nt/ntdll/NtSetInformationEnlistment.S deleted file mode 100644 index 8bb633233..000000000 --- a/libc/nt/ntdll/NtSetInformationEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationEnlistment,NtSetInformationEnlistment diff --git a/libc/nt/ntdll/NtSetInformationJobObject.S b/libc/nt/ntdll/NtSetInformationJobObject.S deleted file mode 100644 index 806ab9f7c..000000000 --- a/libc/nt/ntdll/NtSetInformationJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationJobObject,NtSetInformationJobObject diff --git a/libc/nt/ntdll/NtSetInformationKey.S b/libc/nt/ntdll/NtSetInformationKey.S deleted file mode 100644 index 9752c65ec..000000000 --- a/libc/nt/ntdll/NtSetInformationKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationKey,NtSetInformationKey diff --git a/libc/nt/ntdll/NtSetInformationObject.S b/libc/nt/ntdll/NtSetInformationObject.S deleted file mode 100644 index 1cc69750b..000000000 --- a/libc/nt/ntdll/NtSetInformationObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationObject,NtSetInformationObject diff --git a/libc/nt/ntdll/NtSetInformationProcess.S b/libc/nt/ntdll/NtSetInformationProcess.S deleted file mode 100644 index 740ca4daa..000000000 --- a/libc/nt/ntdll/NtSetInformationProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationProcess,NtSetInformationProcess diff --git a/libc/nt/ntdll/NtSetInformationResourceManager.S b/libc/nt/ntdll/NtSetInformationResourceManager.S deleted file mode 100644 index dd9647d68..000000000 --- a/libc/nt/ntdll/NtSetInformationResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationResourceManager,NtSetInformationResourceManager diff --git a/libc/nt/ntdll/NtSetInformationSymbolicLink.S b/libc/nt/ntdll/NtSetInformationSymbolicLink.S deleted file mode 100644 index 729e64550..000000000 --- a/libc/nt/ntdll/NtSetInformationSymbolicLink.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationSymbolicLink,NtSetInformationSymbolicLink diff --git a/libc/nt/ntdll/NtSetInformationToken.S b/libc/nt/ntdll/NtSetInformationToken.S deleted file mode 100644 index 5a184cdb7..000000000 --- a/libc/nt/ntdll/NtSetInformationToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationToken,NtSetInformationToken diff --git a/libc/nt/ntdll/NtSetInformationTransaction.S b/libc/nt/ntdll/NtSetInformationTransaction.S deleted file mode 100644 index 4adc90b0b..000000000 --- a/libc/nt/ntdll/NtSetInformationTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationTransaction,NtSetInformationTransaction diff --git a/libc/nt/ntdll/NtSetInformationTransactionManager.S b/libc/nt/ntdll/NtSetInformationTransactionManager.S deleted file mode 100644 index f09a4714d..000000000 --- a/libc/nt/ntdll/NtSetInformationTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationTransactionManager,NtSetInformationTransactionManager diff --git a/libc/nt/ntdll/NtSetInformationVirtualMemory.S b/libc/nt/ntdll/NtSetInformationVirtualMemory.S deleted file mode 100644 index 9885571f0..000000000 --- a/libc/nt/ntdll/NtSetInformationVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationVirtualMemory,NtSetInformationVirtualMemory diff --git a/libc/nt/ntdll/NtSetInformationWorkerFactory.S b/libc/nt/ntdll/NtSetInformationWorkerFactory.S deleted file mode 100644 index ba693b34e..000000000 --- a/libc/nt/ntdll/NtSetInformationWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetInformationWorkerFactory,NtSetInformationWorkerFactory diff --git a/libc/nt/ntdll/NtSetIoCompletion.S b/libc/nt/ntdll/NtSetIoCompletion.S deleted file mode 100644 index fb286cb4c..000000000 --- a/libc/nt/ntdll/NtSetIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetIoCompletion,NtSetIoCompletion diff --git a/libc/nt/ntdll/NtSetIoCompletionEx.S b/libc/nt/ntdll/NtSetIoCompletionEx.S deleted file mode 100644 index c4db05046..000000000 --- a/libc/nt/ntdll/NtSetIoCompletionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetIoCompletionEx,NtSetIoCompletionEx diff --git a/libc/nt/ntdll/NtSetLdtEntries.S b/libc/nt/ntdll/NtSetLdtEntries.S deleted file mode 100644 index 3b5b1a247..000000000 --- a/libc/nt/ntdll/NtSetLdtEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetLdtEntries,NtSetLdtEntries diff --git a/libc/nt/ntdll/NtSetLowEventPair.S b/libc/nt/ntdll/NtSetLowEventPair.S deleted file mode 100644 index 1155968dc..000000000 --- a/libc/nt/ntdll/NtSetLowEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetLowEventPair,NtSetLowEventPair diff --git a/libc/nt/ntdll/NtSetLowWaitHighEventPair.S b/libc/nt/ntdll/NtSetLowWaitHighEventPair.S deleted file mode 100644 index 3c73673e7..000000000 --- a/libc/nt/ntdll/NtSetLowWaitHighEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetLowWaitHighEventPair,NtSetLowWaitHighEventPair diff --git a/libc/nt/ntdll/NtSetQuotaInformationFile.S b/libc/nt/ntdll/NtSetQuotaInformationFile.S deleted file mode 100644 index 86be32c27..000000000 --- a/libc/nt/ntdll/NtSetQuotaInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetQuotaInformationFile,NtSetQuotaInformationFile diff --git a/libc/nt/ntdll/NtSetSecurityObject.S b/libc/nt/ntdll/NtSetSecurityObject.S deleted file mode 100644 index 27e94e039..000000000 --- a/libc/nt/ntdll/NtSetSecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetSecurityObject,NtSetSecurityObject diff --git a/libc/nt/ntdll/NtSetSystemEnvironmentValue.S b/libc/nt/ntdll/NtSetSystemEnvironmentValue.S deleted file mode 100644 index c5f88aa14..000000000 --- a/libc/nt/ntdll/NtSetSystemEnvironmentValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetSystemEnvironmentValue,NtSetSystemEnvironmentValue diff --git a/libc/nt/ntdll/NtSetSystemEnvironmentValueEx.S b/libc/nt/ntdll/NtSetSystemEnvironmentValueEx.S deleted file mode 100644 index 360881f35..000000000 --- a/libc/nt/ntdll/NtSetSystemEnvironmentValueEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetSystemEnvironmentValueEx,NtSetSystemEnvironmentValueEx diff --git a/libc/nt/ntdll/NtSetSystemInformation.S b/libc/nt/ntdll/NtSetSystemInformation.S deleted file mode 100644 index c91b2cc4b..000000000 --- a/libc/nt/ntdll/NtSetSystemInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetSystemInformation,NtSetSystemInformation diff --git a/libc/nt/ntdll/NtSetSystemPowerState.S b/libc/nt/ntdll/NtSetSystemPowerState.S deleted file mode 100644 index 6c2464c6d..000000000 --- a/libc/nt/ntdll/NtSetSystemPowerState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetSystemPowerState,NtSetSystemPowerState diff --git a/libc/nt/ntdll/NtSetSystemTime.S b/libc/nt/ntdll/NtSetSystemTime.S deleted file mode 100644 index 47dc25295..000000000 --- a/libc/nt/ntdll/NtSetSystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetSystemTime,NtSetSystemTime diff --git a/libc/nt/ntdll/NtSetThreadExecutionState.S b/libc/nt/ntdll/NtSetThreadExecutionState.S deleted file mode 100644 index 041056226..000000000 --- a/libc/nt/ntdll/NtSetThreadExecutionState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetThreadExecutionState,NtSetThreadExecutionState diff --git a/libc/nt/ntdll/NtSetTimer2.S b/libc/nt/ntdll/NtSetTimer2.S deleted file mode 100644 index 3688c26de..000000000 --- a/libc/nt/ntdll/NtSetTimer2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetTimer2,NtSetTimer2 diff --git a/libc/nt/ntdll/NtSetTimerEx.S b/libc/nt/ntdll/NtSetTimerEx.S deleted file mode 100644 index 2eac366fb..000000000 --- a/libc/nt/ntdll/NtSetTimerEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetTimerEx,NtSetTimerEx diff --git a/libc/nt/ntdll/NtSetTimerResolution.S b/libc/nt/ntdll/NtSetTimerResolution.S deleted file mode 100644 index 3c80e1ffd..000000000 --- a/libc/nt/ntdll/NtSetTimerResolution.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetTimerResolution,NtSetTimerResolution diff --git a/libc/nt/ntdll/NtSetUuidSeed.S b/libc/nt/ntdll/NtSetUuidSeed.S deleted file mode 100644 index 9424276b0..000000000 --- a/libc/nt/ntdll/NtSetUuidSeed.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetUuidSeed,NtSetUuidSeed diff --git a/libc/nt/ntdll/NtSetVolumeInformationFile.S b/libc/nt/ntdll/NtSetVolumeInformationFile.S deleted file mode 100644 index 87e03602f..000000000 --- a/libc/nt/ntdll/NtSetVolumeInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetVolumeInformationFile,NtSetVolumeInformationFile diff --git a/libc/nt/ntdll/NtSetWnfProcessNotificationEvent.S b/libc/nt/ntdll/NtSetWnfProcessNotificationEvent.S deleted file mode 100644 index ea76e4e8c..000000000 --- a/libc/nt/ntdll/NtSetWnfProcessNotificationEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSetWnfProcessNotificationEvent,NtSetWnfProcessNotificationEvent diff --git a/libc/nt/ntdll/NtShutdownSystem.S b/libc/nt/ntdll/NtShutdownSystem.S deleted file mode 100644 index 16e21de87..000000000 --- a/libc/nt/ntdll/NtShutdownSystem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtShutdownSystem,NtShutdownSystem diff --git a/libc/nt/ntdll/NtShutdownWorkerFactory.S b/libc/nt/ntdll/NtShutdownWorkerFactory.S deleted file mode 100644 index 8fcb170e6..000000000 --- a/libc/nt/ntdll/NtShutdownWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtShutdownWorkerFactory,NtShutdownWorkerFactory diff --git a/libc/nt/ntdll/NtSinglePhaseReject.S b/libc/nt/ntdll/NtSinglePhaseReject.S deleted file mode 100644 index 0d8070f6e..000000000 --- a/libc/nt/ntdll/NtSinglePhaseReject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSinglePhaseReject,NtSinglePhaseReject diff --git a/libc/nt/ntdll/NtSubscribeWnfStateChange.S b/libc/nt/ntdll/NtSubscribeWnfStateChange.S deleted file mode 100644 index a3f9579e0..000000000 --- a/libc/nt/ntdll/NtSubscribeWnfStateChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSubscribeWnfStateChange,NtSubscribeWnfStateChange diff --git a/libc/nt/ntdll/NtSuspendProcess.S b/libc/nt/ntdll/NtSuspendProcess.S deleted file mode 100644 index 574782d74..000000000 --- a/libc/nt/ntdll/NtSuspendProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSuspendProcess,NtSuspendProcess diff --git a/libc/nt/ntdll/NtSystemDebugControl.S b/libc/nt/ntdll/NtSystemDebugControl.S deleted file mode 100644 index 64e1e5513..000000000 --- a/libc/nt/ntdll/NtSystemDebugControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtSystemDebugControl,NtSystemDebugControl diff --git a/libc/nt/ntdll/NtTerminateEnclave.S b/libc/nt/ntdll/NtTerminateEnclave.S deleted file mode 100644 index 923b41535..000000000 --- a/libc/nt/ntdll/NtTerminateEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtTerminateEnclave,NtTerminateEnclave diff --git a/libc/nt/ntdll/NtTerminateJobObject.S b/libc/nt/ntdll/NtTerminateJobObject.S deleted file mode 100644 index 52df3f942..000000000 --- a/libc/nt/ntdll/NtTerminateJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtTerminateJobObject,NtTerminateJobObject diff --git a/libc/nt/ntdll/NtThawRegistry.S b/libc/nt/ntdll/NtThawRegistry.S deleted file mode 100644 index 136b44d98..000000000 --- a/libc/nt/ntdll/NtThawRegistry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtThawRegistry,NtThawRegistry diff --git a/libc/nt/ntdll/NtThawTransactions.S b/libc/nt/ntdll/NtThawTransactions.S deleted file mode 100644 index 36599eb11..000000000 --- a/libc/nt/ntdll/NtThawTransactions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtThawTransactions,NtThawTransactions diff --git a/libc/nt/ntdll/NtTraceControl.S b/libc/nt/ntdll/NtTraceControl.S deleted file mode 100644 index cca74a064..000000000 --- a/libc/nt/ntdll/NtTraceControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtTraceControl,NtTraceControl diff --git a/libc/nt/ntdll/NtTraceEvent.S b/libc/nt/ntdll/NtTraceEvent.S deleted file mode 100644 index 9ff983453..000000000 --- a/libc/nt/ntdll/NtTraceEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtTraceEvent,NtTraceEvent diff --git a/libc/nt/ntdll/NtTranslateFilePath.S b/libc/nt/ntdll/NtTranslateFilePath.S deleted file mode 100644 index dacc3182d..000000000 --- a/libc/nt/ntdll/NtTranslateFilePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtTranslateFilePath,NtTranslateFilePath diff --git a/libc/nt/ntdll/NtUmsThreadYield.S b/libc/nt/ntdll/NtUmsThreadYield.S deleted file mode 100644 index a5951bb40..000000000 --- a/libc/nt/ntdll/NtUmsThreadYield.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUmsThreadYield,NtUmsThreadYield diff --git a/libc/nt/ntdll/NtUnloadDriver.S b/libc/nt/ntdll/NtUnloadDriver.S deleted file mode 100644 index ec79a1522..000000000 --- a/libc/nt/ntdll/NtUnloadDriver.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUnloadDriver,NtUnloadDriver diff --git a/libc/nt/ntdll/NtUnloadKey.S b/libc/nt/ntdll/NtUnloadKey.S deleted file mode 100644 index 954ebac7f..000000000 --- a/libc/nt/ntdll/NtUnloadKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUnloadKey,NtUnloadKey diff --git a/libc/nt/ntdll/NtUnloadKey2.S b/libc/nt/ntdll/NtUnloadKey2.S deleted file mode 100644 index 3cba1d9ff..000000000 --- a/libc/nt/ntdll/NtUnloadKey2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUnloadKey2,NtUnloadKey2 diff --git a/libc/nt/ntdll/NtUnloadKeyEx.S b/libc/nt/ntdll/NtUnloadKeyEx.S deleted file mode 100644 index c18a6e104..000000000 --- a/libc/nt/ntdll/NtUnloadKeyEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUnloadKeyEx,NtUnloadKeyEx diff --git a/libc/nt/ntdll/NtUnlockFile.S b/libc/nt/ntdll/NtUnlockFile.S deleted file mode 100644 index 5a258237c..000000000 --- a/libc/nt/ntdll/NtUnlockFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUnlockFile,NtUnlockFile diff --git a/libc/nt/ntdll/NtUnlockVirtualMemory.S b/libc/nt/ntdll/NtUnlockVirtualMemory.S deleted file mode 100644 index c21590c9e..000000000 --- a/libc/nt/ntdll/NtUnlockVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUnlockVirtualMemory,NtUnlockVirtualMemory diff --git a/libc/nt/ntdll/NtUnmapViewOfSectionEx.S b/libc/nt/ntdll/NtUnmapViewOfSectionEx.S deleted file mode 100644 index 09e71c880..000000000 --- a/libc/nt/ntdll/NtUnmapViewOfSectionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUnmapViewOfSectionEx,NtUnmapViewOfSectionEx diff --git a/libc/nt/ntdll/NtUnsubscribeWnfStateChange.S b/libc/nt/ntdll/NtUnsubscribeWnfStateChange.S deleted file mode 100644 index 0fea0d1ea..000000000 --- a/libc/nt/ntdll/NtUnsubscribeWnfStateChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUnsubscribeWnfStateChange,NtUnsubscribeWnfStateChange diff --git a/libc/nt/ntdll/NtUpdateWnfStateData.S b/libc/nt/ntdll/NtUpdateWnfStateData.S deleted file mode 100644 index a4845943a..000000000 --- a/libc/nt/ntdll/NtUpdateWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtUpdateWnfStateData,NtUpdateWnfStateData diff --git a/libc/nt/ntdll/NtVdmControl.S b/libc/nt/ntdll/NtVdmControl.S deleted file mode 100644 index efa3c187f..000000000 --- a/libc/nt/ntdll/NtVdmControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtVdmControl,NtVdmControl diff --git a/libc/nt/ntdll/NtWaitForAlertByThreadId.S b/libc/nt/ntdll/NtWaitForAlertByThreadId.S deleted file mode 100644 index e06583390..000000000 --- a/libc/nt/ntdll/NtWaitForAlertByThreadId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWaitForAlertByThreadId,NtWaitForAlertByThreadId diff --git a/libc/nt/ntdll/NtWaitForDebugEvent.S b/libc/nt/ntdll/NtWaitForDebugEvent.S deleted file mode 100644 index 2f942e6b8..000000000 --- a/libc/nt/ntdll/NtWaitForDebugEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWaitForDebugEvent,NtWaitForDebugEvent diff --git a/libc/nt/ntdll/NtWaitForMultipleObjects.S b/libc/nt/ntdll/NtWaitForMultipleObjects.S deleted file mode 100644 index 7a7d06e27..000000000 --- a/libc/nt/ntdll/NtWaitForMultipleObjects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWaitForMultipleObjects,NtWaitForMultipleObjects diff --git a/libc/nt/ntdll/NtWaitForMultipleObjects32.S b/libc/nt/ntdll/NtWaitForMultipleObjects32.S deleted file mode 100644 index 726040377..000000000 --- a/libc/nt/ntdll/NtWaitForMultipleObjects32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWaitForMultipleObjects32,NtWaitForMultipleObjects32 diff --git a/libc/nt/ntdll/NtWaitForWorkViaWorkerFactory.S b/libc/nt/ntdll/NtWaitForWorkViaWorkerFactory.S deleted file mode 100644 index 9fe00b070..000000000 --- a/libc/nt/ntdll/NtWaitForWorkViaWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWaitForWorkViaWorkerFactory,NtWaitForWorkViaWorkerFactory diff --git a/libc/nt/ntdll/NtWaitHighEventPair.S b/libc/nt/ntdll/NtWaitHighEventPair.S deleted file mode 100644 index 6dbc0d05c..000000000 --- a/libc/nt/ntdll/NtWaitHighEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWaitHighEventPair,NtWaitHighEventPair diff --git a/libc/nt/ntdll/NtWaitLowEventPair.S b/libc/nt/ntdll/NtWaitLowEventPair.S deleted file mode 100644 index 18d04c182..000000000 --- a/libc/nt/ntdll/NtWaitLowEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWaitLowEventPair,NtWaitLowEventPair diff --git a/libc/nt/ntdll/NtWorkerFactoryWorkerReady.S b/libc/nt/ntdll/NtWorkerFactoryWorkerReady.S deleted file mode 100644 index 7f16aa09e..000000000 --- a/libc/nt/ntdll/NtWorkerFactoryWorkerReady.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWorkerFactoryWorkerReady,NtWorkerFactoryWorkerReady diff --git a/libc/nt/ntdll/NtWriteFileGather.S b/libc/nt/ntdll/NtWriteFileGather.S deleted file mode 100644 index 15443e1e5..000000000 --- a/libc/nt/ntdll/NtWriteFileGather.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWriteFileGather,NtWriteFileGather diff --git a/libc/nt/ntdll/NtWriteRequestData.S b/libc/nt/ntdll/NtWriteRequestData.S deleted file mode 100644 index 7b87af69c..000000000 --- a/libc/nt/ntdll/NtWriteRequestData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtWriteRequestData,NtWriteRequestData diff --git a/libc/nt/ntdll/NtdllDefWindowProc_W.S b/libc/nt/ntdll/NtdllDefWindowProc_W.S deleted file mode 100644 index db7b614b1..000000000 --- a/libc/nt/ntdll/NtdllDefWindowProc_W.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtdllDefWindowProc_W,NtdllDefWindowProc_W diff --git a/libc/nt/ntdll/NtdllDialogWndProc_W.S b/libc/nt/ntdll/NtdllDialogWndProc_W.S deleted file mode 100644 index 08ef46788..000000000 --- a/libc/nt/ntdll/NtdllDialogWndProc_W.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp NtdllDialogWndProc_W,NtdllDialogWndProc_W diff --git a/libc/nt/ntdll/PfxFindPrefix.S b/libc/nt/ntdll/PfxFindPrefix.S deleted file mode 100644 index 497034685..000000000 --- a/libc/nt/ntdll/PfxFindPrefix.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PfxFindPrefix,PfxFindPrefix diff --git a/libc/nt/ntdll/PfxInitialize.S b/libc/nt/ntdll/PfxInitialize.S deleted file mode 100644 index 1c545bf13..000000000 --- a/libc/nt/ntdll/PfxInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PfxInitialize,PfxInitialize diff --git a/libc/nt/ntdll/PfxInsertPrefix.S b/libc/nt/ntdll/PfxInsertPrefix.S deleted file mode 100644 index 920e72731..000000000 --- a/libc/nt/ntdll/PfxInsertPrefix.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PfxInsertPrefix,PfxInsertPrefix diff --git a/libc/nt/ntdll/PfxRemovePrefix.S b/libc/nt/ntdll/PfxRemovePrefix.S deleted file mode 100644 index b522a8baa..000000000 --- a/libc/nt/ntdll/PfxRemovePrefix.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PfxRemovePrefix,PfxRemovePrefix diff --git a/libc/nt/ntdll/PssNtCaptureSnapshot.S b/libc/nt/ntdll/PssNtCaptureSnapshot.S deleted file mode 100644 index 97499956d..000000000 --- a/libc/nt/ntdll/PssNtCaptureSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PssNtCaptureSnapshot,PssNtCaptureSnapshot diff --git a/libc/nt/ntdll/PssNtDuplicateSnapshot.S b/libc/nt/ntdll/PssNtDuplicateSnapshot.S deleted file mode 100644 index f722ff860..000000000 --- a/libc/nt/ntdll/PssNtDuplicateSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PssNtDuplicateSnapshot,PssNtDuplicateSnapshot diff --git a/libc/nt/ntdll/PssNtFreeRemoteSnapshot.S b/libc/nt/ntdll/PssNtFreeRemoteSnapshot.S deleted file mode 100644 index 97f08685a..000000000 --- a/libc/nt/ntdll/PssNtFreeRemoteSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PssNtFreeRemoteSnapshot,PssNtFreeRemoteSnapshot diff --git a/libc/nt/ntdll/PssNtFreeSnapshot.S b/libc/nt/ntdll/PssNtFreeSnapshot.S deleted file mode 100644 index 315fb0118..000000000 --- a/libc/nt/ntdll/PssNtFreeSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PssNtFreeSnapshot,PssNtFreeSnapshot diff --git a/libc/nt/ntdll/PssNtFreeWalkMarker.S b/libc/nt/ntdll/PssNtFreeWalkMarker.S deleted file mode 100644 index ad3ddba62..000000000 --- a/libc/nt/ntdll/PssNtFreeWalkMarker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PssNtFreeWalkMarker,PssNtFreeWalkMarker diff --git a/libc/nt/ntdll/PssNtQuerySnapshot.S b/libc/nt/ntdll/PssNtQuerySnapshot.S deleted file mode 100644 index b489d852f..000000000 --- a/libc/nt/ntdll/PssNtQuerySnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PssNtQuerySnapshot,PssNtQuerySnapshot diff --git a/libc/nt/ntdll/PssNtValidateDescriptor.S b/libc/nt/ntdll/PssNtValidateDescriptor.S deleted file mode 100644 index 465a0d6b0..000000000 --- a/libc/nt/ntdll/PssNtValidateDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PssNtValidateDescriptor,PssNtValidateDescriptor diff --git a/libc/nt/ntdll/PssNtWalkSnapshot.S b/libc/nt/ntdll/PssNtWalkSnapshot.S deleted file mode 100644 index 5ead71ef0..000000000 --- a/libc/nt/ntdll/PssNtWalkSnapshot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp PssNtWalkSnapshot,PssNtWalkSnapshot diff --git a/libc/nt/ntdll/RtlAbortRXact.S b/libc/nt/ntdll/RtlAbortRXact.S deleted file mode 100644 index 67d2d9fbb..000000000 --- a/libc/nt/ntdll/RtlAbortRXact.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAbortRXact,RtlAbortRXact diff --git a/libc/nt/ntdll/RtlAbsoluteToSelfRelativeSD.S b/libc/nt/ntdll/RtlAbsoluteToSelfRelativeSD.S deleted file mode 100644 index 573c57bdb..000000000 --- a/libc/nt/ntdll/RtlAbsoluteToSelfRelativeSD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAbsoluteToSelfRelativeSD,RtlAbsoluteToSelfRelativeSD diff --git a/libc/nt/ntdll/RtlAcquirePebLock.S b/libc/nt/ntdll/RtlAcquirePebLock.S deleted file mode 100644 index 58abf2f5a..000000000 --- a/libc/nt/ntdll/RtlAcquirePebLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAcquirePebLock,RtlAcquirePebLock diff --git a/libc/nt/ntdll/RtlAcquirePrivilege.S b/libc/nt/ntdll/RtlAcquirePrivilege.S deleted file mode 100644 index 7ee78b300..000000000 --- a/libc/nt/ntdll/RtlAcquirePrivilege.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAcquirePrivilege,RtlAcquirePrivilege diff --git a/libc/nt/ntdll/RtlAcquireReleaseSRWLockExclusive.S b/libc/nt/ntdll/RtlAcquireReleaseSRWLockExclusive.S deleted file mode 100644 index 8308eabc8..000000000 --- a/libc/nt/ntdll/RtlAcquireReleaseSRWLockExclusive.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAcquireReleaseSRWLockExclusive,RtlAcquireReleaseSRWLockExclusive diff --git a/libc/nt/ntdll/RtlAcquireResourceExclusive.S b/libc/nt/ntdll/RtlAcquireResourceExclusive.S deleted file mode 100644 index b46f666c6..000000000 --- a/libc/nt/ntdll/RtlAcquireResourceExclusive.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAcquireResourceExclusive,RtlAcquireResourceExclusive diff --git a/libc/nt/ntdll/RtlAcquireResourceShared.S b/libc/nt/ntdll/RtlAcquireResourceShared.S deleted file mode 100644 index b20d8970d..000000000 --- a/libc/nt/ntdll/RtlAcquireResourceShared.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAcquireResourceShared,RtlAcquireResourceShared diff --git a/libc/nt/ntdll/RtlAcquireSRWLockExclusive.S b/libc/nt/ntdll/RtlAcquireSRWLockExclusive.S deleted file mode 100644 index 91895ff73..000000000 --- a/libc/nt/ntdll/RtlAcquireSRWLockExclusive.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAcquireSRWLockExclusive,RtlAcquireSRWLockExclusive diff --git a/libc/nt/ntdll/RtlAcquireSRWLockShared.S b/libc/nt/ntdll/RtlAcquireSRWLockShared.S deleted file mode 100644 index 631b23e29..000000000 --- a/libc/nt/ntdll/RtlAcquireSRWLockShared.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAcquireSRWLockShared,RtlAcquireSRWLockShared diff --git a/libc/nt/ntdll/RtlActivateActivationContext.S b/libc/nt/ntdll/RtlActivateActivationContext.S deleted file mode 100644 index 302184655..000000000 --- a/libc/nt/ntdll/RtlActivateActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlActivateActivationContext,RtlActivateActivationContext diff --git a/libc/nt/ntdll/RtlActivateActivationContextEx.S b/libc/nt/ntdll/RtlActivateActivationContextEx.S deleted file mode 100644 index 998681f14..000000000 --- a/libc/nt/ntdll/RtlActivateActivationContextEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlActivateActivationContextEx,RtlActivateActivationContextEx diff --git a/libc/nt/ntdll/RtlActivateActivationContextUnsafeFast.S b/libc/nt/ntdll/RtlActivateActivationContextUnsafeFast.S deleted file mode 100644 index a1e94393a..000000000 --- a/libc/nt/ntdll/RtlActivateActivationContextUnsafeFast.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlActivateActivationContextUnsafeFast,RtlActivateActivationContextUnsafeFast diff --git a/libc/nt/ntdll/RtlAddAccessAllowedAce.S b/libc/nt/ntdll/RtlAddAccessAllowedAce.S deleted file mode 100644 index 040a08d7e..000000000 --- a/libc/nt/ntdll/RtlAddAccessAllowedAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAccessAllowedAce,RtlAddAccessAllowedAce diff --git a/libc/nt/ntdll/RtlAddAccessAllowedAceEx.S b/libc/nt/ntdll/RtlAddAccessAllowedAceEx.S deleted file mode 100644 index c334fbf49..000000000 --- a/libc/nt/ntdll/RtlAddAccessAllowedAceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAccessAllowedAceEx,RtlAddAccessAllowedAceEx diff --git a/libc/nt/ntdll/RtlAddAccessAllowedObjectAce.S b/libc/nt/ntdll/RtlAddAccessAllowedObjectAce.S deleted file mode 100644 index 3614ba151..000000000 --- a/libc/nt/ntdll/RtlAddAccessAllowedObjectAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAccessAllowedObjectAce,RtlAddAccessAllowedObjectAce diff --git a/libc/nt/ntdll/RtlAddAccessDeniedAce.S b/libc/nt/ntdll/RtlAddAccessDeniedAce.S deleted file mode 100644 index 52d0eb724..000000000 --- a/libc/nt/ntdll/RtlAddAccessDeniedAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAccessDeniedAce,RtlAddAccessDeniedAce diff --git a/libc/nt/ntdll/RtlAddAccessDeniedAceEx.S b/libc/nt/ntdll/RtlAddAccessDeniedAceEx.S deleted file mode 100644 index 96bc34003..000000000 --- a/libc/nt/ntdll/RtlAddAccessDeniedAceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAccessDeniedAceEx,RtlAddAccessDeniedAceEx diff --git a/libc/nt/ntdll/RtlAddAccessDeniedObjectAce.S b/libc/nt/ntdll/RtlAddAccessDeniedObjectAce.S deleted file mode 100644 index 7ca7c9917..000000000 --- a/libc/nt/ntdll/RtlAddAccessDeniedObjectAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAccessDeniedObjectAce,RtlAddAccessDeniedObjectAce diff --git a/libc/nt/ntdll/RtlAddAccessFilterAce.S b/libc/nt/ntdll/RtlAddAccessFilterAce.S deleted file mode 100644 index 9d2a09c4a..000000000 --- a/libc/nt/ntdll/RtlAddAccessFilterAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAccessFilterAce,RtlAddAccessFilterAce diff --git a/libc/nt/ntdll/RtlAddAce.S b/libc/nt/ntdll/RtlAddAce.S deleted file mode 100644 index 5334b630f..000000000 --- a/libc/nt/ntdll/RtlAddAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAce,RtlAddAce diff --git a/libc/nt/ntdll/RtlAddActionToRXact.S b/libc/nt/ntdll/RtlAddActionToRXact.S deleted file mode 100644 index 9fb6d4212..000000000 --- a/libc/nt/ntdll/RtlAddActionToRXact.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddActionToRXact,RtlAddActionToRXact diff --git a/libc/nt/ntdll/RtlAddAtomToAtomTable.S b/libc/nt/ntdll/RtlAddAtomToAtomTable.S deleted file mode 100644 index 8de1bceb6..000000000 --- a/libc/nt/ntdll/RtlAddAtomToAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAtomToAtomTable,RtlAddAtomToAtomTable diff --git a/libc/nt/ntdll/RtlAddAttributeActionToRXact.S b/libc/nt/ntdll/RtlAddAttributeActionToRXact.S deleted file mode 100644 index 8558ff4b2..000000000 --- a/libc/nt/ntdll/RtlAddAttributeActionToRXact.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAttributeActionToRXact,RtlAddAttributeActionToRXact diff --git a/libc/nt/ntdll/RtlAddAuditAccessAce.S b/libc/nt/ntdll/RtlAddAuditAccessAce.S deleted file mode 100644 index 099cb283c..000000000 --- a/libc/nt/ntdll/RtlAddAuditAccessAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAuditAccessAce,RtlAddAuditAccessAce diff --git a/libc/nt/ntdll/RtlAddAuditAccessAceEx.S b/libc/nt/ntdll/RtlAddAuditAccessAceEx.S deleted file mode 100644 index aea7c577e..000000000 --- a/libc/nt/ntdll/RtlAddAuditAccessAceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAuditAccessAceEx,RtlAddAuditAccessAceEx diff --git a/libc/nt/ntdll/RtlAddAuditAccessObjectAce.S b/libc/nt/ntdll/RtlAddAuditAccessObjectAce.S deleted file mode 100644 index a3f07e741..000000000 --- a/libc/nt/ntdll/RtlAddAuditAccessObjectAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddAuditAccessObjectAce,RtlAddAuditAccessObjectAce diff --git a/libc/nt/ntdll/RtlAddCompoundAce.S b/libc/nt/ntdll/RtlAddCompoundAce.S deleted file mode 100644 index 2f32b1b02..000000000 --- a/libc/nt/ntdll/RtlAddCompoundAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddCompoundAce,RtlAddCompoundAce diff --git a/libc/nt/ntdll/RtlAddFunctionTable.S b/libc/nt/ntdll/RtlAddFunctionTable.S deleted file mode 100644 index f21a939b4..000000000 --- a/libc/nt/ntdll/RtlAddFunctionTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddFunctionTable,RtlAddFunctionTable diff --git a/libc/nt/ntdll/RtlAddGrowableFunctionTable.S b/libc/nt/ntdll/RtlAddGrowableFunctionTable.S deleted file mode 100644 index 853392080..000000000 --- a/libc/nt/ntdll/RtlAddGrowableFunctionTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddGrowableFunctionTable,RtlAddGrowableFunctionTable diff --git a/libc/nt/ntdll/RtlAddIntegrityLabelToBoundaryDescriptor.S b/libc/nt/ntdll/RtlAddIntegrityLabelToBoundaryDescriptor.S deleted file mode 100644 index 93ee46940..000000000 --- a/libc/nt/ntdll/RtlAddIntegrityLabelToBoundaryDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddIntegrityLabelToBoundaryDescriptor,RtlAddIntegrityLabelToBoundaryDescriptor diff --git a/libc/nt/ntdll/RtlAddMandatoryAce.S b/libc/nt/ntdll/RtlAddMandatoryAce.S deleted file mode 100644 index d9961fdf9..000000000 --- a/libc/nt/ntdll/RtlAddMandatoryAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddMandatoryAce,RtlAddMandatoryAce diff --git a/libc/nt/ntdll/RtlAddProcessTrustLabelAce.S b/libc/nt/ntdll/RtlAddProcessTrustLabelAce.S deleted file mode 100644 index e56f74fd1..000000000 --- a/libc/nt/ntdll/RtlAddProcessTrustLabelAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddProcessTrustLabelAce,RtlAddProcessTrustLabelAce diff --git a/libc/nt/ntdll/RtlAddRefActivationContext.S b/libc/nt/ntdll/RtlAddRefActivationContext.S deleted file mode 100644 index d7377d991..000000000 --- a/libc/nt/ntdll/RtlAddRefActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddRefActivationContext,RtlAddRefActivationContext diff --git a/libc/nt/ntdll/RtlAddRefMemoryStream.S b/libc/nt/ntdll/RtlAddRefMemoryStream.S deleted file mode 100644 index 923839dff..000000000 --- a/libc/nt/ntdll/RtlAddRefMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddRefMemoryStream,RtlAddRefMemoryStream diff --git a/libc/nt/ntdll/RtlAddResourceAttributeAce.S b/libc/nt/ntdll/RtlAddResourceAttributeAce.S deleted file mode 100644 index 8f89b404f..000000000 --- a/libc/nt/ntdll/RtlAddResourceAttributeAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddResourceAttributeAce,RtlAddResourceAttributeAce diff --git a/libc/nt/ntdll/RtlAddSIDToBoundaryDescriptor.S b/libc/nt/ntdll/RtlAddSIDToBoundaryDescriptor.S deleted file mode 100644 index d6558658d..000000000 --- a/libc/nt/ntdll/RtlAddSIDToBoundaryDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddSIDToBoundaryDescriptor,RtlAddSIDToBoundaryDescriptor diff --git a/libc/nt/ntdll/RtlAddScopedPolicyIDAce.S b/libc/nt/ntdll/RtlAddScopedPolicyIDAce.S deleted file mode 100644 index f7a04c4e1..000000000 --- a/libc/nt/ntdll/RtlAddScopedPolicyIDAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddScopedPolicyIDAce,RtlAddScopedPolicyIDAce diff --git a/libc/nt/ntdll/RtlAddVectoredContinueHandler.S b/libc/nt/ntdll/RtlAddVectoredContinueHandler.S deleted file mode 100644 index 3e6ff332b..000000000 --- a/libc/nt/ntdll/RtlAddVectoredContinueHandler.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddVectoredContinueHandler,RtlAddVectoredContinueHandler diff --git a/libc/nt/ntdll/RtlAddVectoredExceptionHandler.S b/libc/nt/ntdll/RtlAddVectoredExceptionHandler.S deleted file mode 100644 index 1f88628c7..000000000 --- a/libc/nt/ntdll/RtlAddVectoredExceptionHandler.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddVectoredExceptionHandler,RtlAddVectoredExceptionHandler diff --git a/libc/nt/ntdll/RtlAddressInSectionTable.S b/libc/nt/ntdll/RtlAddressInSectionTable.S deleted file mode 100644 index 4809de94b..000000000 --- a/libc/nt/ntdll/RtlAddressInSectionTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAddressInSectionTable,RtlAddressInSectionTable diff --git a/libc/nt/ntdll/RtlAdjustPrivilege.S b/libc/nt/ntdll/RtlAdjustPrivilege.S deleted file mode 100644 index b244de93b..000000000 --- a/libc/nt/ntdll/RtlAdjustPrivilege.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAdjustPrivilege,RtlAdjustPrivilege diff --git a/libc/nt/ntdll/RtlAllocateActivationContextStack.S b/libc/nt/ntdll/RtlAllocateActivationContextStack.S deleted file mode 100644 index 837a19201..000000000 --- a/libc/nt/ntdll/RtlAllocateActivationContextStack.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAllocateActivationContextStack,RtlAllocateActivationContextStack diff --git a/libc/nt/ntdll/RtlAllocateAndInitializeSid.S b/libc/nt/ntdll/RtlAllocateAndInitializeSid.S deleted file mode 100644 index 7eb99ab16..000000000 --- a/libc/nt/ntdll/RtlAllocateAndInitializeSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAllocateAndInitializeSid,RtlAllocateAndInitializeSid diff --git a/libc/nt/ntdll/RtlAllocateAndInitializeSidEx.S b/libc/nt/ntdll/RtlAllocateAndInitializeSidEx.S deleted file mode 100644 index 0ed90f8ca..000000000 --- a/libc/nt/ntdll/RtlAllocateAndInitializeSidEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAllocateAndInitializeSidEx,RtlAllocateAndInitializeSidEx diff --git a/libc/nt/ntdll/RtlAllocateHandle.S b/libc/nt/ntdll/RtlAllocateHandle.S deleted file mode 100644 index 3cb969646..000000000 --- a/libc/nt/ntdll/RtlAllocateHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAllocateHandle,RtlAllocateHandle diff --git a/libc/nt/ntdll/RtlAllocateMemoryBlockLookaside.S b/libc/nt/ntdll/RtlAllocateMemoryBlockLookaside.S deleted file mode 100644 index e246d627b..000000000 --- a/libc/nt/ntdll/RtlAllocateMemoryBlockLookaside.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAllocateMemoryBlockLookaside,RtlAllocateMemoryBlockLookaside diff --git a/libc/nt/ntdll/RtlAllocateMemoryZone.S b/libc/nt/ntdll/RtlAllocateMemoryZone.S deleted file mode 100644 index fb4f41769..000000000 --- a/libc/nt/ntdll/RtlAllocateMemoryZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAllocateMemoryZone,RtlAllocateMemoryZone diff --git a/libc/nt/ntdll/RtlAllocateWnfSerializationGroup.S b/libc/nt/ntdll/RtlAllocateWnfSerializationGroup.S deleted file mode 100644 index 2ec986e6e..000000000 --- a/libc/nt/ntdll/RtlAllocateWnfSerializationGroup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAllocateWnfSerializationGroup,RtlAllocateWnfSerializationGroup diff --git a/libc/nt/ntdll/RtlAnsiCharToUnicodeChar.S b/libc/nt/ntdll/RtlAnsiCharToUnicodeChar.S deleted file mode 100644 index c678eb5bf..000000000 --- a/libc/nt/ntdll/RtlAnsiCharToUnicodeChar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAnsiCharToUnicodeChar,RtlAnsiCharToUnicodeChar diff --git a/libc/nt/ntdll/RtlAnsiStringToUnicodeSize.S b/libc/nt/ntdll/RtlAnsiStringToUnicodeSize.S deleted file mode 100644 index 50f9fdcc3..000000000 --- a/libc/nt/ntdll/RtlAnsiStringToUnicodeSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAnsiStringToUnicodeSize,RtlAnsiStringToUnicodeSize diff --git a/libc/nt/ntdll/RtlAnsiStringToUnicodeString.S b/libc/nt/ntdll/RtlAnsiStringToUnicodeString.S deleted file mode 100644 index ac4af4627..000000000 --- a/libc/nt/ntdll/RtlAnsiStringToUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAnsiStringToUnicodeString,RtlAnsiStringToUnicodeString diff --git a/libc/nt/ntdll/RtlAppendAsciizToString.S b/libc/nt/ntdll/RtlAppendAsciizToString.S deleted file mode 100644 index 0437057d3..000000000 --- a/libc/nt/ntdll/RtlAppendAsciizToString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAppendAsciizToString,RtlAppendAsciizToString diff --git a/libc/nt/ntdll/RtlAppendPathElement.S b/libc/nt/ntdll/RtlAppendPathElement.S deleted file mode 100644 index 5c8105569..000000000 --- a/libc/nt/ntdll/RtlAppendPathElement.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAppendPathElement,RtlAppendPathElement diff --git a/libc/nt/ntdll/RtlAppendStringToString.S b/libc/nt/ntdll/RtlAppendStringToString.S deleted file mode 100644 index 0e960bb2a..000000000 --- a/libc/nt/ntdll/RtlAppendStringToString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAppendStringToString,RtlAppendStringToString diff --git a/libc/nt/ntdll/RtlAppendUnicodeStringToString.S b/libc/nt/ntdll/RtlAppendUnicodeStringToString.S deleted file mode 100644 index 666fa8e52..000000000 --- a/libc/nt/ntdll/RtlAppendUnicodeStringToString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAppendUnicodeStringToString,RtlAppendUnicodeStringToString diff --git a/libc/nt/ntdll/RtlAppendUnicodeToString.S b/libc/nt/ntdll/RtlAppendUnicodeToString.S deleted file mode 100644 index 0c1356806..000000000 --- a/libc/nt/ntdll/RtlAppendUnicodeToString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAppendUnicodeToString,RtlAppendUnicodeToString diff --git a/libc/nt/ntdll/RtlApplicationVerifierStop.S b/libc/nt/ntdll/RtlApplicationVerifierStop.S deleted file mode 100644 index 7ae75fe7a..000000000 --- a/libc/nt/ntdll/RtlApplicationVerifierStop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlApplicationVerifierStop,RtlApplicationVerifierStop diff --git a/libc/nt/ntdll/RtlApplyRXact.S b/libc/nt/ntdll/RtlApplyRXact.S deleted file mode 100644 index 9ec18d09b..000000000 --- a/libc/nt/ntdll/RtlApplyRXact.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlApplyRXact,RtlApplyRXact diff --git a/libc/nt/ntdll/RtlApplyRXactNoFlush.S b/libc/nt/ntdll/RtlApplyRXactNoFlush.S deleted file mode 100644 index 7087d99a2..000000000 --- a/libc/nt/ntdll/RtlApplyRXactNoFlush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlApplyRXactNoFlush,RtlApplyRXactNoFlush diff --git a/libc/nt/ntdll/RtlAppxIsFileOwnedByTrustedInstaller.S b/libc/nt/ntdll/RtlAppxIsFileOwnedByTrustedInstaller.S deleted file mode 100644 index 028c988ad..000000000 --- a/libc/nt/ntdll/RtlAppxIsFileOwnedByTrustedInstaller.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAppxIsFileOwnedByTrustedInstaller,RtlAppxIsFileOwnedByTrustedInstaller diff --git a/libc/nt/ntdll/RtlAreAllAccessesGranted.S b/libc/nt/ntdll/RtlAreAllAccessesGranted.S deleted file mode 100644 index 2d1d13c02..000000000 --- a/libc/nt/ntdll/RtlAreAllAccessesGranted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAreAllAccessesGranted,RtlAreAllAccessesGranted diff --git a/libc/nt/ntdll/RtlAreAnyAccessesGranted.S b/libc/nt/ntdll/RtlAreAnyAccessesGranted.S deleted file mode 100644 index 947612251..000000000 --- a/libc/nt/ntdll/RtlAreAnyAccessesGranted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAreAnyAccessesGranted,RtlAreAnyAccessesGranted diff --git a/libc/nt/ntdll/RtlAreBitsClear.S b/libc/nt/ntdll/RtlAreBitsClear.S deleted file mode 100644 index c350395e8..000000000 --- a/libc/nt/ntdll/RtlAreBitsClear.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAreBitsClear,RtlAreBitsClear diff --git a/libc/nt/ntdll/RtlAreBitsSet.S b/libc/nt/ntdll/RtlAreBitsSet.S deleted file mode 100644 index f6415e8ac..000000000 --- a/libc/nt/ntdll/RtlAreBitsSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAreBitsSet,RtlAreBitsSet diff --git a/libc/nt/ntdll/RtlAreLongPathsEnabled.S b/libc/nt/ntdll/RtlAreLongPathsEnabled.S deleted file mode 100644 index 15f08ff49..000000000 --- a/libc/nt/ntdll/RtlAreLongPathsEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAreLongPathsEnabled,RtlAreLongPathsEnabled diff --git a/libc/nt/ntdll/RtlAssert.S b/libc/nt/ntdll/RtlAssert.S deleted file mode 100644 index 6d20582d5..000000000 --- a/libc/nt/ntdll/RtlAssert.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAssert,RtlAssert diff --git a/libc/nt/ntdll/RtlAvlInsertNodeEx.S b/libc/nt/ntdll/RtlAvlInsertNodeEx.S deleted file mode 100644 index 3bc58ad0d..000000000 --- a/libc/nt/ntdll/RtlAvlInsertNodeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAvlInsertNodeEx,RtlAvlInsertNodeEx diff --git a/libc/nt/ntdll/RtlAvlRemoveNode.S b/libc/nt/ntdll/RtlAvlRemoveNode.S deleted file mode 100644 index 24633ea28..000000000 --- a/libc/nt/ntdll/RtlAvlRemoveNode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlAvlRemoveNode,RtlAvlRemoveNode diff --git a/libc/nt/ntdll/RtlBarrier.S b/libc/nt/ntdll/RtlBarrier.S deleted file mode 100644 index 097bf4f20..000000000 --- a/libc/nt/ntdll/RtlBarrier.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlBarrier,RtlBarrier diff --git a/libc/nt/ntdll/RtlBarrierForDelete.S b/libc/nt/ntdll/RtlBarrierForDelete.S deleted file mode 100644 index 9f0bbd122..000000000 --- a/libc/nt/ntdll/RtlBarrierForDelete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlBarrierForDelete,RtlBarrierForDelete diff --git a/libc/nt/ntdll/RtlCallEnclaveReturn.S b/libc/nt/ntdll/RtlCallEnclaveReturn.S deleted file mode 100644 index fae79cd7c..000000000 --- a/libc/nt/ntdll/RtlCallEnclaveReturn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCallEnclaveReturn,RtlCallEnclaveReturn diff --git a/libc/nt/ntdll/RtlCancelTimer.S b/libc/nt/ntdll/RtlCancelTimer.S deleted file mode 100644 index 464e46fb7..000000000 --- a/libc/nt/ntdll/RtlCancelTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCancelTimer,RtlCancelTimer diff --git a/libc/nt/ntdll/RtlCanonicalizeDomainName.S b/libc/nt/ntdll/RtlCanonicalizeDomainName.S deleted file mode 100644 index b220309d2..000000000 --- a/libc/nt/ntdll/RtlCanonicalizeDomainName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCanonicalizeDomainName,RtlCanonicalizeDomainName diff --git a/libc/nt/ntdll/RtlCapabilityCheck.S b/libc/nt/ntdll/RtlCapabilityCheck.S deleted file mode 100644 index 09e6a9b72..000000000 --- a/libc/nt/ntdll/RtlCapabilityCheck.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCapabilityCheck,RtlCapabilityCheck diff --git a/libc/nt/ntdll/RtlCapabilityCheckForSingleSessionSku.S b/libc/nt/ntdll/RtlCapabilityCheckForSingleSessionSku.S deleted file mode 100644 index 682214bf7..000000000 --- a/libc/nt/ntdll/RtlCapabilityCheckForSingleSessionSku.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCapabilityCheckForSingleSessionSku,RtlCapabilityCheckForSingleSessionSku diff --git a/libc/nt/ntdll/RtlCaptureContext.S b/libc/nt/ntdll/RtlCaptureContext.S deleted file mode 100644 index 16b28cc6f..000000000 --- a/libc/nt/ntdll/RtlCaptureContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCaptureContext,RtlCaptureContext diff --git a/libc/nt/ntdll/RtlCaptureStackBackTrace.S b/libc/nt/ntdll/RtlCaptureStackBackTrace.S deleted file mode 100644 index 729abbb5f..000000000 --- a/libc/nt/ntdll/RtlCaptureStackBackTrace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCaptureStackBackTrace,RtlCaptureStackBackTrace diff --git a/libc/nt/ntdll/RtlCharToInteger.S b/libc/nt/ntdll/RtlCharToInteger.S deleted file mode 100644 index e2383d4ad..000000000 --- a/libc/nt/ntdll/RtlCharToInteger.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCharToInteger,RtlCharToInteger diff --git a/libc/nt/ntdll/RtlCheckBootStatusIntegrity.S b/libc/nt/ntdll/RtlCheckBootStatusIntegrity.S deleted file mode 100644 index 5a7bf3608..000000000 --- a/libc/nt/ntdll/RtlCheckBootStatusIntegrity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckBootStatusIntegrity,RtlCheckBootStatusIntegrity diff --git a/libc/nt/ntdll/RtlCheckForOrphanedCriticalSections.S b/libc/nt/ntdll/RtlCheckForOrphanedCriticalSections.S deleted file mode 100644 index e15efe1c9..000000000 --- a/libc/nt/ntdll/RtlCheckForOrphanedCriticalSections.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckForOrphanedCriticalSections,RtlCheckForOrphanedCriticalSections diff --git a/libc/nt/ntdll/RtlCheckPortableOperatingSystem.S b/libc/nt/ntdll/RtlCheckPortableOperatingSystem.S deleted file mode 100644 index 249f76d12..000000000 --- a/libc/nt/ntdll/RtlCheckPortableOperatingSystem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckPortableOperatingSystem,RtlCheckPortableOperatingSystem diff --git a/libc/nt/ntdll/RtlCheckRegistryKey.S b/libc/nt/ntdll/RtlCheckRegistryKey.S deleted file mode 100644 index 87880908f..000000000 --- a/libc/nt/ntdll/RtlCheckRegistryKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckRegistryKey,RtlCheckRegistryKey diff --git a/libc/nt/ntdll/RtlCheckSandboxedToken.S b/libc/nt/ntdll/RtlCheckSandboxedToken.S deleted file mode 100644 index e08e02022..000000000 --- a/libc/nt/ntdll/RtlCheckSandboxedToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckSandboxedToken,RtlCheckSandboxedToken diff --git a/libc/nt/ntdll/RtlCheckSystemBootStatusIntegrity.S b/libc/nt/ntdll/RtlCheckSystemBootStatusIntegrity.S deleted file mode 100644 index 47df12bae..000000000 --- a/libc/nt/ntdll/RtlCheckSystemBootStatusIntegrity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckSystemBootStatusIntegrity,RtlCheckSystemBootStatusIntegrity diff --git a/libc/nt/ntdll/RtlCheckTokenCapability.S b/libc/nt/ntdll/RtlCheckTokenCapability.S deleted file mode 100644 index eb5dbc072..000000000 --- a/libc/nt/ntdll/RtlCheckTokenCapability.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckTokenCapability,RtlCheckTokenCapability diff --git a/libc/nt/ntdll/RtlCheckTokenMembership.S b/libc/nt/ntdll/RtlCheckTokenMembership.S deleted file mode 100644 index 3cc46b014..000000000 --- a/libc/nt/ntdll/RtlCheckTokenMembership.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckTokenMembership,RtlCheckTokenMembership diff --git a/libc/nt/ntdll/RtlCheckTokenMembershipEx.S b/libc/nt/ntdll/RtlCheckTokenMembershipEx.S deleted file mode 100644 index 7d5610f94..000000000 --- a/libc/nt/ntdll/RtlCheckTokenMembershipEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCheckTokenMembershipEx,RtlCheckTokenMembershipEx diff --git a/libc/nt/ntdll/RtlCleanUpTEBLangLists.S b/libc/nt/ntdll/RtlCleanUpTEBLangLists.S deleted file mode 100644 index 0b0760906..000000000 --- a/libc/nt/ntdll/RtlCleanUpTEBLangLists.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCleanUpTEBLangLists,RtlCleanUpTEBLangLists diff --git a/libc/nt/ntdll/RtlClearAllBits.S b/libc/nt/ntdll/RtlClearAllBits.S deleted file mode 100644 index 7fbba0d2f..000000000 --- a/libc/nt/ntdll/RtlClearAllBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlClearAllBits,RtlClearAllBits diff --git a/libc/nt/ntdll/RtlClearBit.S b/libc/nt/ntdll/RtlClearBit.S deleted file mode 100644 index da1e0078f..000000000 --- a/libc/nt/ntdll/RtlClearBit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlClearBit,RtlClearBit diff --git a/libc/nt/ntdll/RtlClearBits.S b/libc/nt/ntdll/RtlClearBits.S deleted file mode 100644 index 060962e84..000000000 --- a/libc/nt/ntdll/RtlClearBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlClearBits,RtlClearBits diff --git a/libc/nt/ntdll/RtlClearThreadWorkOnBehalfTicket.S b/libc/nt/ntdll/RtlClearThreadWorkOnBehalfTicket.S deleted file mode 100644 index 53b68a9e6..000000000 --- a/libc/nt/ntdll/RtlClearThreadWorkOnBehalfTicket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlClearThreadWorkOnBehalfTicket,RtlClearThreadWorkOnBehalfTicket diff --git a/libc/nt/ntdll/RtlCloneMemoryStream.S b/libc/nt/ntdll/RtlCloneMemoryStream.S deleted file mode 100644 index 3947ef55a..000000000 --- a/libc/nt/ntdll/RtlCloneMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCloneMemoryStream,RtlCloneMemoryStream diff --git a/libc/nt/ntdll/RtlCmDecodeMemIoResource.S b/libc/nt/ntdll/RtlCmDecodeMemIoResource.S deleted file mode 100644 index 856772fe6..000000000 --- a/libc/nt/ntdll/RtlCmDecodeMemIoResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCmDecodeMemIoResource,RtlCmDecodeMemIoResource diff --git a/libc/nt/ntdll/RtlCmEncodeMemIoResource.S b/libc/nt/ntdll/RtlCmEncodeMemIoResource.S deleted file mode 100644 index 598e8626c..000000000 --- a/libc/nt/ntdll/RtlCmEncodeMemIoResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCmEncodeMemIoResource,RtlCmEncodeMemIoResource diff --git a/libc/nt/ntdll/RtlCommitDebugInfo.S b/libc/nt/ntdll/RtlCommitDebugInfo.S deleted file mode 100644 index 8c168e805..000000000 --- a/libc/nt/ntdll/RtlCommitDebugInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCommitDebugInfo,RtlCommitDebugInfo diff --git a/libc/nt/ntdll/RtlCommitMemoryStream.S b/libc/nt/ntdll/RtlCommitMemoryStream.S deleted file mode 100644 index ca7684379..000000000 --- a/libc/nt/ntdll/RtlCommitMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCommitMemoryStream,RtlCommitMemoryStream diff --git a/libc/nt/ntdll/RtlCompactHeap.S b/libc/nt/ntdll/RtlCompactHeap.S deleted file mode 100644 index ac178875a..000000000 --- a/libc/nt/ntdll/RtlCompactHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompactHeap,RtlCompactHeap diff --git a/libc/nt/ntdll/RtlCompareAltitudes.S b/libc/nt/ntdll/RtlCompareAltitudes.S deleted file mode 100644 index 2b56b73de..000000000 --- a/libc/nt/ntdll/RtlCompareAltitudes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompareAltitudes,RtlCompareAltitudes diff --git a/libc/nt/ntdll/RtlCompareMemory.S b/libc/nt/ntdll/RtlCompareMemory.S deleted file mode 100644 index 7046a84fe..000000000 --- a/libc/nt/ntdll/RtlCompareMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompareMemory,RtlCompareMemory diff --git a/libc/nt/ntdll/RtlCompareMemoryUlong.S b/libc/nt/ntdll/RtlCompareMemoryUlong.S deleted file mode 100644 index 571e3e516..000000000 --- a/libc/nt/ntdll/RtlCompareMemoryUlong.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompareMemoryUlong,RtlCompareMemoryUlong diff --git a/libc/nt/ntdll/RtlCompareString.S b/libc/nt/ntdll/RtlCompareString.S deleted file mode 100644 index 3fd9df5dd..000000000 --- a/libc/nt/ntdll/RtlCompareString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompareString,RtlCompareString diff --git a/libc/nt/ntdll/RtlCompareUnicodeString.S b/libc/nt/ntdll/RtlCompareUnicodeString.S deleted file mode 100644 index b8c0002a4..000000000 --- a/libc/nt/ntdll/RtlCompareUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompareUnicodeString,RtlCompareUnicodeString diff --git a/libc/nt/ntdll/RtlCompareUnicodeStrings.S b/libc/nt/ntdll/RtlCompareUnicodeStrings.S deleted file mode 100644 index 7c9336117..000000000 --- a/libc/nt/ntdll/RtlCompareUnicodeStrings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompareUnicodeStrings,RtlCompareUnicodeStrings diff --git a/libc/nt/ntdll/RtlCompleteProcessCloning.S b/libc/nt/ntdll/RtlCompleteProcessCloning.S deleted file mode 100644 index 2a3f61077..000000000 --- a/libc/nt/ntdll/RtlCompleteProcessCloning.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompleteProcessCloning,RtlCompleteProcessCloning diff --git a/libc/nt/ntdll/RtlCompressBuffer.S b/libc/nt/ntdll/RtlCompressBuffer.S deleted file mode 100644 index 2c5e3ab20..000000000 --- a/libc/nt/ntdll/RtlCompressBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCompressBuffer,RtlCompressBuffer diff --git a/libc/nt/ntdll/RtlComputeCrc32.S b/libc/nt/ntdll/RtlComputeCrc32.S deleted file mode 100644 index 5aee14d96..000000000 --- a/libc/nt/ntdll/RtlComputeCrc32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlComputeCrc32,RtlComputeCrc32 diff --git a/libc/nt/ntdll/RtlComputeImportTableHash.S b/libc/nt/ntdll/RtlComputeImportTableHash.S deleted file mode 100644 index 33f1318d4..000000000 --- a/libc/nt/ntdll/RtlComputeImportTableHash.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlComputeImportTableHash,RtlComputeImportTableHash diff --git a/libc/nt/ntdll/RtlComputePrivatizedDllName_U.S b/libc/nt/ntdll/RtlComputePrivatizedDllName_U.S deleted file mode 100644 index 9133f730e..000000000 --- a/libc/nt/ntdll/RtlComputePrivatizedDllName_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlComputePrivatizedDllName_U,RtlComputePrivatizedDllName_U diff --git a/libc/nt/ntdll/RtlConnectToSm.S b/libc/nt/ntdll/RtlConnectToSm.S deleted file mode 100644 index 65c363f61..000000000 --- a/libc/nt/ntdll/RtlConnectToSm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlConnectToSm,RtlConnectToSm diff --git a/libc/nt/ntdll/RtlConsoleMultiByteToUnicodeN.S b/libc/nt/ntdll/RtlConsoleMultiByteToUnicodeN.S deleted file mode 100644 index 4ba45f962..000000000 --- a/libc/nt/ntdll/RtlConsoleMultiByteToUnicodeN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlConsoleMultiByteToUnicodeN,RtlConsoleMultiByteToUnicodeN diff --git a/libc/nt/ntdll/RtlContractHashTable.S b/libc/nt/ntdll/RtlContractHashTable.S deleted file mode 100644 index 2674fec44..000000000 --- a/libc/nt/ntdll/RtlContractHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlContractHashTable,RtlContractHashTable diff --git a/libc/nt/ntdll/RtlConvertDeviceFamilyInfoToString.S b/libc/nt/ntdll/RtlConvertDeviceFamilyInfoToString.S deleted file mode 100644 index 12533a70f..000000000 --- a/libc/nt/ntdll/RtlConvertDeviceFamilyInfoToString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlConvertDeviceFamilyInfoToString,RtlConvertDeviceFamilyInfoToString diff --git a/libc/nt/ntdll/RtlConvertExclusiveToShared.S b/libc/nt/ntdll/RtlConvertExclusiveToShared.S deleted file mode 100644 index 8d95c4f2b..000000000 --- a/libc/nt/ntdll/RtlConvertExclusiveToShared.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlConvertExclusiveToShared,RtlConvertExclusiveToShared diff --git a/libc/nt/ntdll/RtlConvertLCIDToString.S b/libc/nt/ntdll/RtlConvertLCIDToString.S deleted file mode 100644 index 4e478f811..000000000 --- a/libc/nt/ntdll/RtlConvertLCIDToString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlConvertLCIDToString,RtlConvertLCIDToString diff --git a/libc/nt/ntdll/RtlConvertSRWLockExclusiveToShared.S b/libc/nt/ntdll/RtlConvertSRWLockExclusiveToShared.S deleted file mode 100644 index 6e7e984a7..000000000 --- a/libc/nt/ntdll/RtlConvertSRWLockExclusiveToShared.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlConvertSRWLockExclusiveToShared,RtlConvertSRWLockExclusiveToShared diff --git a/libc/nt/ntdll/RtlConvertSharedToExclusive.S b/libc/nt/ntdll/RtlConvertSharedToExclusive.S deleted file mode 100644 index 1f94a02d1..000000000 --- a/libc/nt/ntdll/RtlConvertSharedToExclusive.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlConvertSharedToExclusive,RtlConvertSharedToExclusive diff --git a/libc/nt/ntdll/RtlConvertToAutoInheritSecurityObject.S b/libc/nt/ntdll/RtlConvertToAutoInheritSecurityObject.S deleted file mode 100644 index 458eb0d63..000000000 --- a/libc/nt/ntdll/RtlConvertToAutoInheritSecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlConvertToAutoInheritSecurityObject,RtlConvertToAutoInheritSecurityObject diff --git a/libc/nt/ntdll/RtlCopyBitMap.S b/libc/nt/ntdll/RtlCopyBitMap.S deleted file mode 100644 index 9486afa00..000000000 --- a/libc/nt/ntdll/RtlCopyBitMap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyBitMap,RtlCopyBitMap diff --git a/libc/nt/ntdll/RtlCopyContext.S b/libc/nt/ntdll/RtlCopyContext.S deleted file mode 100644 index 2625bd34d..000000000 --- a/libc/nt/ntdll/RtlCopyContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyContext,RtlCopyContext diff --git a/libc/nt/ntdll/RtlCopyExtendedContext.S b/libc/nt/ntdll/RtlCopyExtendedContext.S deleted file mode 100644 index 37dd6414d..000000000 --- a/libc/nt/ntdll/RtlCopyExtendedContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyExtendedContext,RtlCopyExtendedContext diff --git a/libc/nt/ntdll/RtlCopyLuid.S b/libc/nt/ntdll/RtlCopyLuid.S deleted file mode 100644 index fffd54624..000000000 --- a/libc/nt/ntdll/RtlCopyLuid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyLuid,RtlCopyLuid diff --git a/libc/nt/ntdll/RtlCopyLuidAndAttributesArray.S b/libc/nt/ntdll/RtlCopyLuidAndAttributesArray.S deleted file mode 100644 index c1a7b2f36..000000000 --- a/libc/nt/ntdll/RtlCopyLuidAndAttributesArray.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyLuidAndAttributesArray,RtlCopyLuidAndAttributesArray diff --git a/libc/nt/ntdll/RtlCopyMappedMemory.S b/libc/nt/ntdll/RtlCopyMappedMemory.S deleted file mode 100644 index 1bc4da134..000000000 --- a/libc/nt/ntdll/RtlCopyMappedMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyMappedMemory,RtlCopyMappedMemory diff --git a/libc/nt/ntdll/RtlCopyMemory.S b/libc/nt/ntdll/RtlCopyMemory.S deleted file mode 100644 index d99d2770b..000000000 --- a/libc/nt/ntdll/RtlCopyMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyMemory,RtlCopyMemory diff --git a/libc/nt/ntdll/RtlCopyMemoryNonTemporal.S b/libc/nt/ntdll/RtlCopyMemoryNonTemporal.S deleted file mode 100644 index bc3c199d0..000000000 --- a/libc/nt/ntdll/RtlCopyMemoryNonTemporal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyMemoryNonTemporal,RtlCopyMemoryNonTemporal diff --git a/libc/nt/ntdll/RtlCopyMemoryStreamTo.S b/libc/nt/ntdll/RtlCopyMemoryStreamTo.S deleted file mode 100644 index e6da82323..000000000 --- a/libc/nt/ntdll/RtlCopyMemoryStreamTo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyMemoryStreamTo,RtlCopyMemoryStreamTo diff --git a/libc/nt/ntdll/RtlCopyOutOfProcessMemoryStreamTo.S b/libc/nt/ntdll/RtlCopyOutOfProcessMemoryStreamTo.S deleted file mode 100644 index c85dd461e..000000000 --- a/libc/nt/ntdll/RtlCopyOutOfProcessMemoryStreamTo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyOutOfProcessMemoryStreamTo,RtlCopyOutOfProcessMemoryStreamTo diff --git a/libc/nt/ntdll/RtlCopySecurityDescriptor.S b/libc/nt/ntdll/RtlCopySecurityDescriptor.S deleted file mode 100644 index 807e09d79..000000000 --- a/libc/nt/ntdll/RtlCopySecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopySecurityDescriptor,RtlCopySecurityDescriptor diff --git a/libc/nt/ntdll/RtlCopySid.S b/libc/nt/ntdll/RtlCopySid.S deleted file mode 100644 index 698f5e36a..000000000 --- a/libc/nt/ntdll/RtlCopySid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopySid,RtlCopySid diff --git a/libc/nt/ntdll/RtlCopySidAndAttributesArray.S b/libc/nt/ntdll/RtlCopySidAndAttributesArray.S deleted file mode 100644 index bac8309a5..000000000 --- a/libc/nt/ntdll/RtlCopySidAndAttributesArray.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopySidAndAttributesArray,RtlCopySidAndAttributesArray diff --git a/libc/nt/ntdll/RtlCopyString.S b/libc/nt/ntdll/RtlCopyString.S deleted file mode 100644 index 53bfec3f0..000000000 --- a/libc/nt/ntdll/RtlCopyString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyString,RtlCopyString diff --git a/libc/nt/ntdll/RtlCopyUnicodeString.S b/libc/nt/ntdll/RtlCopyUnicodeString.S deleted file mode 100644 index 334a04b8d..000000000 --- a/libc/nt/ntdll/RtlCopyUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCopyUnicodeString,RtlCopyUnicodeString diff --git a/libc/nt/ntdll/RtlCrc32.S b/libc/nt/ntdll/RtlCrc32.S deleted file mode 100644 index 1a4c74df5..000000000 --- a/libc/nt/ntdll/RtlCrc32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCrc32,RtlCrc32 diff --git a/libc/nt/ntdll/RtlCrc64.S b/libc/nt/ntdll/RtlCrc64.S deleted file mode 100644 index 43a7d7840..000000000 --- a/libc/nt/ntdll/RtlCrc64.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCrc64,RtlCrc64 diff --git a/libc/nt/ntdll/RtlCreateAcl.S b/libc/nt/ntdll/RtlCreateAcl.S deleted file mode 100644 index 68aaad502..000000000 --- a/libc/nt/ntdll/RtlCreateAcl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateAcl,RtlCreateAcl diff --git a/libc/nt/ntdll/RtlCreateActivationContext.S b/libc/nt/ntdll/RtlCreateActivationContext.S deleted file mode 100644 index 8404d1ad1..000000000 --- a/libc/nt/ntdll/RtlCreateActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateActivationContext,RtlCreateActivationContext diff --git a/libc/nt/ntdll/RtlCreateAndSetSD.S b/libc/nt/ntdll/RtlCreateAndSetSD.S deleted file mode 100644 index 57b9b2e30..000000000 --- a/libc/nt/ntdll/RtlCreateAndSetSD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateAndSetSD,RtlCreateAndSetSD diff --git a/libc/nt/ntdll/RtlCreateAtomTable.S b/libc/nt/ntdll/RtlCreateAtomTable.S deleted file mode 100644 index e82a57413..000000000 --- a/libc/nt/ntdll/RtlCreateAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateAtomTable,RtlCreateAtomTable diff --git a/libc/nt/ntdll/RtlCreateBootStatusDataFile.S b/libc/nt/ntdll/RtlCreateBootStatusDataFile.S deleted file mode 100644 index 2821f6509..000000000 --- a/libc/nt/ntdll/RtlCreateBootStatusDataFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateBootStatusDataFile,RtlCreateBootStatusDataFile diff --git a/libc/nt/ntdll/RtlCreateBoundaryDescriptor.S b/libc/nt/ntdll/RtlCreateBoundaryDescriptor.S deleted file mode 100644 index acda977a1..000000000 --- a/libc/nt/ntdll/RtlCreateBoundaryDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateBoundaryDescriptor,RtlCreateBoundaryDescriptor diff --git a/libc/nt/ntdll/RtlCreateEnvironment.S b/libc/nt/ntdll/RtlCreateEnvironment.S deleted file mode 100644 index 6c88c6689..000000000 --- a/libc/nt/ntdll/RtlCreateEnvironment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateEnvironment,RtlCreateEnvironment diff --git a/libc/nt/ntdll/RtlCreateEnvironmentEx.S b/libc/nt/ntdll/RtlCreateEnvironmentEx.S deleted file mode 100644 index 8a6f6b744..000000000 --- a/libc/nt/ntdll/RtlCreateEnvironmentEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateEnvironmentEx,RtlCreateEnvironmentEx diff --git a/libc/nt/ntdll/RtlCreateHashTable.S b/libc/nt/ntdll/RtlCreateHashTable.S deleted file mode 100644 index f0f717bac..000000000 --- a/libc/nt/ntdll/RtlCreateHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateHashTable,RtlCreateHashTable diff --git a/libc/nt/ntdll/RtlCreateHashTableEx.S b/libc/nt/ntdll/RtlCreateHashTableEx.S deleted file mode 100644 index e06718ba9..000000000 --- a/libc/nt/ntdll/RtlCreateHashTableEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateHashTableEx,RtlCreateHashTableEx diff --git a/libc/nt/ntdll/RtlCreateMemoryBlockLookaside.S b/libc/nt/ntdll/RtlCreateMemoryBlockLookaside.S deleted file mode 100644 index 86be46b2f..000000000 --- a/libc/nt/ntdll/RtlCreateMemoryBlockLookaside.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateMemoryBlockLookaside,RtlCreateMemoryBlockLookaside diff --git a/libc/nt/ntdll/RtlCreateMemoryZone.S b/libc/nt/ntdll/RtlCreateMemoryZone.S deleted file mode 100644 index 541da9b17..000000000 --- a/libc/nt/ntdll/RtlCreateMemoryZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateMemoryZone,RtlCreateMemoryZone diff --git a/libc/nt/ntdll/RtlCreateProcessParametersEx.S b/libc/nt/ntdll/RtlCreateProcessParametersEx.S deleted file mode 100644 index 27dccf96e..000000000 --- a/libc/nt/ntdll/RtlCreateProcessParametersEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateProcessParametersEx,RtlCreateProcessParametersEx diff --git a/libc/nt/ntdll/RtlCreateProcessReflection.S b/libc/nt/ntdll/RtlCreateProcessReflection.S deleted file mode 100644 index de7a174c8..000000000 --- a/libc/nt/ntdll/RtlCreateProcessReflection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateProcessReflection,RtlCreateProcessReflection diff --git a/libc/nt/ntdll/RtlCreateQueryDebugBuffer.S b/libc/nt/ntdll/RtlCreateQueryDebugBuffer.S deleted file mode 100644 index 95d78e723..000000000 --- a/libc/nt/ntdll/RtlCreateQueryDebugBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateQueryDebugBuffer,RtlCreateQueryDebugBuffer diff --git a/libc/nt/ntdll/RtlCreateRegistryKey.S b/libc/nt/ntdll/RtlCreateRegistryKey.S deleted file mode 100644 index 2bd100745..000000000 --- a/libc/nt/ntdll/RtlCreateRegistryKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateRegistryKey,RtlCreateRegistryKey diff --git a/libc/nt/ntdll/RtlCreateSecurityDescriptor.S b/libc/nt/ntdll/RtlCreateSecurityDescriptor.S deleted file mode 100644 index 28561efb4..000000000 --- a/libc/nt/ntdll/RtlCreateSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateSecurityDescriptor,RtlCreateSecurityDescriptor diff --git a/libc/nt/ntdll/RtlCreateServiceSid.S b/libc/nt/ntdll/RtlCreateServiceSid.S deleted file mode 100644 index 4f377b583..000000000 --- a/libc/nt/ntdll/RtlCreateServiceSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateServiceSid,RtlCreateServiceSid diff --git a/libc/nt/ntdll/RtlCreateSystemVolumeInformationFolder.S b/libc/nt/ntdll/RtlCreateSystemVolumeInformationFolder.S deleted file mode 100644 index 4fd7a5f1b..000000000 --- a/libc/nt/ntdll/RtlCreateSystemVolumeInformationFolder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateSystemVolumeInformationFolder,RtlCreateSystemVolumeInformationFolder diff --git a/libc/nt/ntdll/RtlCreateTagHeap.S b/libc/nt/ntdll/RtlCreateTagHeap.S deleted file mode 100644 index dd348cc19..000000000 --- a/libc/nt/ntdll/RtlCreateTagHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateTagHeap,RtlCreateTagHeap diff --git a/libc/nt/ntdll/RtlCreateTimer.S b/libc/nt/ntdll/RtlCreateTimer.S deleted file mode 100644 index 81d29b3de..000000000 --- a/libc/nt/ntdll/RtlCreateTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateTimer,RtlCreateTimer diff --git a/libc/nt/ntdll/RtlCreateTimerQueue.S b/libc/nt/ntdll/RtlCreateTimerQueue.S deleted file mode 100644 index d210831fa..000000000 --- a/libc/nt/ntdll/RtlCreateTimerQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateTimerQueue,RtlCreateTimerQueue diff --git a/libc/nt/ntdll/RtlCreateUmsCompletionList.S b/libc/nt/ntdll/RtlCreateUmsCompletionList.S deleted file mode 100644 index 10abbca87..000000000 --- a/libc/nt/ntdll/RtlCreateUmsCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUmsCompletionList,RtlCreateUmsCompletionList diff --git a/libc/nt/ntdll/RtlCreateUmsThreadContext.S b/libc/nt/ntdll/RtlCreateUmsThreadContext.S deleted file mode 100644 index 4996fbacd..000000000 --- a/libc/nt/ntdll/RtlCreateUmsThreadContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUmsThreadContext,RtlCreateUmsThreadContext diff --git a/libc/nt/ntdll/RtlCreateUnicodeString.S b/libc/nt/ntdll/RtlCreateUnicodeString.S deleted file mode 100644 index 8ff0f55aa..000000000 --- a/libc/nt/ntdll/RtlCreateUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUnicodeString,RtlCreateUnicodeString diff --git a/libc/nt/ntdll/RtlCreateUnicodeStringFromAsciiz.S b/libc/nt/ntdll/RtlCreateUnicodeStringFromAsciiz.S deleted file mode 100644 index c3ee9a1af..000000000 --- a/libc/nt/ntdll/RtlCreateUnicodeStringFromAsciiz.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUnicodeStringFromAsciiz,RtlCreateUnicodeStringFromAsciiz diff --git a/libc/nt/ntdll/RtlCreateUserProcess.S b/libc/nt/ntdll/RtlCreateUserProcess.S deleted file mode 100644 index e5d1ccab7..000000000 --- a/libc/nt/ntdll/RtlCreateUserProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUserProcess,RtlCreateUserProcess diff --git a/libc/nt/ntdll/RtlCreateUserProcessEx.S b/libc/nt/ntdll/RtlCreateUserProcessEx.S deleted file mode 100644 index c6c3d45c7..000000000 --- a/libc/nt/ntdll/RtlCreateUserProcessEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUserProcessEx,RtlCreateUserProcessEx diff --git a/libc/nt/ntdll/RtlCreateUserSecurityObject.S b/libc/nt/ntdll/RtlCreateUserSecurityObject.S deleted file mode 100644 index a6cdb4ed4..000000000 --- a/libc/nt/ntdll/RtlCreateUserSecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUserSecurityObject,RtlCreateUserSecurityObject diff --git a/libc/nt/ntdll/RtlCreateUserStack.S b/libc/nt/ntdll/RtlCreateUserStack.S deleted file mode 100644 index d47b415ba..000000000 --- a/libc/nt/ntdll/RtlCreateUserStack.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUserStack,RtlCreateUserStack diff --git a/libc/nt/ntdll/RtlCreateUserThread.S b/libc/nt/ntdll/RtlCreateUserThread.S deleted file mode 100644 index 559e2ec82..000000000 --- a/libc/nt/ntdll/RtlCreateUserThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateUserThread,RtlCreateUserThread diff --git a/libc/nt/ntdll/RtlCreateVirtualAccountSid.S b/libc/nt/ntdll/RtlCreateVirtualAccountSid.S deleted file mode 100644 index 68583a236..000000000 --- a/libc/nt/ntdll/RtlCreateVirtualAccountSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCreateVirtualAccountSid,RtlCreateVirtualAccountSid diff --git a/libc/nt/ntdll/RtlCultureNameToLCID.S b/libc/nt/ntdll/RtlCultureNameToLCID.S deleted file mode 100644 index 4d663022e..000000000 --- a/libc/nt/ntdll/RtlCultureNameToLCID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCultureNameToLCID,RtlCultureNameToLCID diff --git a/libc/nt/ntdll/RtlCustomCPToUnicodeN.S b/libc/nt/ntdll/RtlCustomCPToUnicodeN.S deleted file mode 100644 index 1611e4d3b..000000000 --- a/libc/nt/ntdll/RtlCustomCPToUnicodeN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCustomCPToUnicodeN,RtlCustomCPToUnicodeN diff --git a/libc/nt/ntdll/RtlCutoverTimeToSystemTime.S b/libc/nt/ntdll/RtlCutoverTimeToSystemTime.S deleted file mode 100644 index 545dd868f..000000000 --- a/libc/nt/ntdll/RtlCutoverTimeToSystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlCutoverTimeToSystemTime,RtlCutoverTimeToSystemTime diff --git a/libc/nt/ntdll/RtlDeCommitDebugInfo.S b/libc/nt/ntdll/RtlDeCommitDebugInfo.S deleted file mode 100644 index 90d3f57d3..000000000 --- a/libc/nt/ntdll/RtlDeCommitDebugInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeCommitDebugInfo,RtlDeCommitDebugInfo diff --git a/libc/nt/ntdll/RtlDeNormalizeProcessParams.S b/libc/nt/ntdll/RtlDeNormalizeProcessParams.S deleted file mode 100644 index 883685bf7..000000000 --- a/libc/nt/ntdll/RtlDeNormalizeProcessParams.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeNormalizeProcessParams,RtlDeNormalizeProcessParams diff --git a/libc/nt/ntdll/RtlDeactivateActivationContext.S b/libc/nt/ntdll/RtlDeactivateActivationContext.S deleted file mode 100644 index ed2099a63..000000000 --- a/libc/nt/ntdll/RtlDeactivateActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeactivateActivationContext,RtlDeactivateActivationContext diff --git a/libc/nt/ntdll/RtlDeactivateActivationContextUnsafeFast.S b/libc/nt/ntdll/RtlDeactivateActivationContextUnsafeFast.S deleted file mode 100644 index b8f23e5ed..000000000 --- a/libc/nt/ntdll/RtlDeactivateActivationContextUnsafeFast.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeactivateActivationContextUnsafeFast,RtlDeactivateActivationContextUnsafeFast diff --git a/libc/nt/ntdll/RtlDebugPrintTimes.S b/libc/nt/ntdll/RtlDebugPrintTimes.S deleted file mode 100644 index 4d7b46d5b..000000000 --- a/libc/nt/ntdll/RtlDebugPrintTimes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDebugPrintTimes,RtlDebugPrintTimes diff --git a/libc/nt/ntdll/RtlDecodePointer.S b/libc/nt/ntdll/RtlDecodePointer.S deleted file mode 100644 index 0afca2eab..000000000 --- a/libc/nt/ntdll/RtlDecodePointer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDecodePointer,RtlDecodePointer diff --git a/libc/nt/ntdll/RtlDecodeRemotePointer.S b/libc/nt/ntdll/RtlDecodeRemotePointer.S deleted file mode 100644 index 41591be39..000000000 --- a/libc/nt/ntdll/RtlDecodeRemotePointer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDecodeRemotePointer,RtlDecodeRemotePointer diff --git a/libc/nt/ntdll/RtlDecodeSystemPointer.S b/libc/nt/ntdll/RtlDecodeSystemPointer.S deleted file mode 100644 index d8734d95f..000000000 --- a/libc/nt/ntdll/RtlDecodeSystemPointer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDecodeSystemPointer,RtlDecodeSystemPointer diff --git a/libc/nt/ntdll/RtlDecompressBuffer.S b/libc/nt/ntdll/RtlDecompressBuffer.S deleted file mode 100644 index 06f7662f1..000000000 --- a/libc/nt/ntdll/RtlDecompressBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDecompressBuffer,RtlDecompressBuffer diff --git a/libc/nt/ntdll/RtlDecompressBufferEx.S b/libc/nt/ntdll/RtlDecompressBufferEx.S deleted file mode 100644 index bb6c2ee97..000000000 --- a/libc/nt/ntdll/RtlDecompressBufferEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDecompressBufferEx,RtlDecompressBufferEx diff --git a/libc/nt/ntdll/RtlDecompressFragment.S b/libc/nt/ntdll/RtlDecompressFragment.S deleted file mode 100644 index 361425d5c..000000000 --- a/libc/nt/ntdll/RtlDecompressFragment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDecompressFragment,RtlDecompressFragment diff --git a/libc/nt/ntdll/RtlDefaultNpAcl.S b/libc/nt/ntdll/RtlDefaultNpAcl.S deleted file mode 100644 index 2e92f32d5..000000000 --- a/libc/nt/ntdll/RtlDefaultNpAcl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDefaultNpAcl,RtlDefaultNpAcl diff --git a/libc/nt/ntdll/RtlDelete.S b/libc/nt/ntdll/RtlDelete.S deleted file mode 100644 index c70c96db6..000000000 --- a/libc/nt/ntdll/RtlDelete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDelete,RtlDelete diff --git a/libc/nt/ntdll/RtlDeleteAce.S b/libc/nt/ntdll/RtlDeleteAce.S deleted file mode 100644 index 0bca39ac6..000000000 --- a/libc/nt/ntdll/RtlDeleteAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteAce,RtlDeleteAce diff --git a/libc/nt/ntdll/RtlDeleteAtomFromAtomTable.S b/libc/nt/ntdll/RtlDeleteAtomFromAtomTable.S deleted file mode 100644 index 09770aaec..000000000 --- a/libc/nt/ntdll/RtlDeleteAtomFromAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteAtomFromAtomTable,RtlDeleteAtomFromAtomTable diff --git a/libc/nt/ntdll/RtlDeleteBarrier.S b/libc/nt/ntdll/RtlDeleteBarrier.S deleted file mode 100644 index af196fb55..000000000 --- a/libc/nt/ntdll/RtlDeleteBarrier.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteBarrier,RtlDeleteBarrier diff --git a/libc/nt/ntdll/RtlDeleteBoundaryDescriptor.S b/libc/nt/ntdll/RtlDeleteBoundaryDescriptor.S deleted file mode 100644 index fab2a3c57..000000000 --- a/libc/nt/ntdll/RtlDeleteBoundaryDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteBoundaryDescriptor,RtlDeleteBoundaryDescriptor diff --git a/libc/nt/ntdll/RtlDeleteElementGenericTable.S b/libc/nt/ntdll/RtlDeleteElementGenericTable.S deleted file mode 100644 index e1b584b2f..000000000 --- a/libc/nt/ntdll/RtlDeleteElementGenericTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteElementGenericTable,RtlDeleteElementGenericTable diff --git a/libc/nt/ntdll/RtlDeleteElementGenericTableAvl.S b/libc/nt/ntdll/RtlDeleteElementGenericTableAvl.S deleted file mode 100644 index a9d3e31da..000000000 --- a/libc/nt/ntdll/RtlDeleteElementGenericTableAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteElementGenericTableAvl,RtlDeleteElementGenericTableAvl diff --git a/libc/nt/ntdll/RtlDeleteElementGenericTableAvlEx.S b/libc/nt/ntdll/RtlDeleteElementGenericTableAvlEx.S deleted file mode 100644 index d58895db4..000000000 --- a/libc/nt/ntdll/RtlDeleteElementGenericTableAvlEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteElementGenericTableAvlEx,RtlDeleteElementGenericTableAvlEx diff --git a/libc/nt/ntdll/RtlDeleteFunctionTable.S b/libc/nt/ntdll/RtlDeleteFunctionTable.S deleted file mode 100644 index fa97755c2..000000000 --- a/libc/nt/ntdll/RtlDeleteFunctionTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteFunctionTable,RtlDeleteFunctionTable diff --git a/libc/nt/ntdll/RtlDeleteGrowableFunctionTable.S b/libc/nt/ntdll/RtlDeleteGrowableFunctionTable.S deleted file mode 100644 index f97c4d5b0..000000000 --- a/libc/nt/ntdll/RtlDeleteGrowableFunctionTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteGrowableFunctionTable,RtlDeleteGrowableFunctionTable diff --git a/libc/nt/ntdll/RtlDeleteHashTable.S b/libc/nt/ntdll/RtlDeleteHashTable.S deleted file mode 100644 index 2cbdd6400..000000000 --- a/libc/nt/ntdll/RtlDeleteHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteHashTable,RtlDeleteHashTable diff --git a/libc/nt/ntdll/RtlDeleteNoSplay.S b/libc/nt/ntdll/RtlDeleteNoSplay.S deleted file mode 100644 index c95a2667a..000000000 --- a/libc/nt/ntdll/RtlDeleteNoSplay.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteNoSplay,RtlDeleteNoSplay diff --git a/libc/nt/ntdll/RtlDeleteRegistryValue.S b/libc/nt/ntdll/RtlDeleteRegistryValue.S deleted file mode 100644 index 8e4104c92..000000000 --- a/libc/nt/ntdll/RtlDeleteRegistryValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteRegistryValue,RtlDeleteRegistryValue diff --git a/libc/nt/ntdll/RtlDeleteResource.S b/libc/nt/ntdll/RtlDeleteResource.S deleted file mode 100644 index aa3cf6084..000000000 --- a/libc/nt/ntdll/RtlDeleteResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteResource,RtlDeleteResource diff --git a/libc/nt/ntdll/RtlDeleteSecurityObject.S b/libc/nt/ntdll/RtlDeleteSecurityObject.S deleted file mode 100644 index b9e13c830..000000000 --- a/libc/nt/ntdll/RtlDeleteSecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteSecurityObject,RtlDeleteSecurityObject diff --git a/libc/nt/ntdll/RtlDeleteTimer.S b/libc/nt/ntdll/RtlDeleteTimer.S deleted file mode 100644 index 4f7826a1a..000000000 --- a/libc/nt/ntdll/RtlDeleteTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteTimer,RtlDeleteTimer diff --git a/libc/nt/ntdll/RtlDeleteTimerQueue.S b/libc/nt/ntdll/RtlDeleteTimerQueue.S deleted file mode 100644 index c753c687a..000000000 --- a/libc/nt/ntdll/RtlDeleteTimerQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteTimerQueue,RtlDeleteTimerQueue diff --git a/libc/nt/ntdll/RtlDeleteTimerQueueEx.S b/libc/nt/ntdll/RtlDeleteTimerQueueEx.S deleted file mode 100644 index f0d8f5977..000000000 --- a/libc/nt/ntdll/RtlDeleteTimerQueueEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteTimerQueueEx,RtlDeleteTimerQueueEx diff --git a/libc/nt/ntdll/RtlDeleteUmsCompletionList.S b/libc/nt/ntdll/RtlDeleteUmsCompletionList.S deleted file mode 100644 index 90ba7a6aa..000000000 --- a/libc/nt/ntdll/RtlDeleteUmsCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteUmsCompletionList,RtlDeleteUmsCompletionList diff --git a/libc/nt/ntdll/RtlDeleteUmsThreadContext.S b/libc/nt/ntdll/RtlDeleteUmsThreadContext.S deleted file mode 100644 index cbe4203a8..000000000 --- a/libc/nt/ntdll/RtlDeleteUmsThreadContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeleteUmsThreadContext,RtlDeleteUmsThreadContext diff --git a/libc/nt/ntdll/RtlDequeueUmsCompletionListItems.S b/libc/nt/ntdll/RtlDequeueUmsCompletionListItems.S deleted file mode 100644 index 1a21784ac..000000000 --- a/libc/nt/ntdll/RtlDequeueUmsCompletionListItems.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDequeueUmsCompletionListItems,RtlDequeueUmsCompletionListItems diff --git a/libc/nt/ntdll/RtlDeregisterSecureMemoryCacheCallback.S b/libc/nt/ntdll/RtlDeregisterSecureMemoryCacheCallback.S deleted file mode 100644 index 544b3d192..000000000 --- a/libc/nt/ntdll/RtlDeregisterSecureMemoryCacheCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeregisterSecureMemoryCacheCallback,RtlDeregisterSecureMemoryCacheCallback diff --git a/libc/nt/ntdll/RtlDeregisterWait.S b/libc/nt/ntdll/RtlDeregisterWait.S deleted file mode 100644 index ddaff8854..000000000 --- a/libc/nt/ntdll/RtlDeregisterWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeregisterWait,RtlDeregisterWait diff --git a/libc/nt/ntdll/RtlDeregisterWaitEx.S b/libc/nt/ntdll/RtlDeregisterWaitEx.S deleted file mode 100644 index e6a09d8ea..000000000 --- a/libc/nt/ntdll/RtlDeregisterWaitEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeregisterWaitEx,RtlDeregisterWaitEx diff --git a/libc/nt/ntdll/RtlDeriveCapabilitySidsFromName.S b/libc/nt/ntdll/RtlDeriveCapabilitySidsFromName.S deleted file mode 100644 index 61891d0b2..000000000 --- a/libc/nt/ntdll/RtlDeriveCapabilitySidsFromName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDeriveCapabilitySidsFromName,RtlDeriveCapabilitySidsFromName diff --git a/libc/nt/ntdll/RtlDestroyAtomTable.S b/libc/nt/ntdll/RtlDestroyAtomTable.S deleted file mode 100644 index 27682d04a..000000000 --- a/libc/nt/ntdll/RtlDestroyAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDestroyAtomTable,RtlDestroyAtomTable diff --git a/libc/nt/ntdll/RtlDestroyEnvironment.S b/libc/nt/ntdll/RtlDestroyEnvironment.S deleted file mode 100644 index 3967ad604..000000000 --- a/libc/nt/ntdll/RtlDestroyEnvironment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDestroyEnvironment,RtlDestroyEnvironment diff --git a/libc/nt/ntdll/RtlDestroyHandleTable.S b/libc/nt/ntdll/RtlDestroyHandleTable.S deleted file mode 100644 index a474b9a64..000000000 --- a/libc/nt/ntdll/RtlDestroyHandleTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDestroyHandleTable,RtlDestroyHandleTable diff --git a/libc/nt/ntdll/RtlDestroyMemoryBlockLookaside.S b/libc/nt/ntdll/RtlDestroyMemoryBlockLookaside.S deleted file mode 100644 index a99d24542..000000000 --- a/libc/nt/ntdll/RtlDestroyMemoryBlockLookaside.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDestroyMemoryBlockLookaside,RtlDestroyMemoryBlockLookaside diff --git a/libc/nt/ntdll/RtlDestroyMemoryZone.S b/libc/nt/ntdll/RtlDestroyMemoryZone.S deleted file mode 100644 index 665a99c9a..000000000 --- a/libc/nt/ntdll/RtlDestroyMemoryZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDestroyMemoryZone,RtlDestroyMemoryZone diff --git a/libc/nt/ntdll/RtlDestroyQueryDebugBuffer.S b/libc/nt/ntdll/RtlDestroyQueryDebugBuffer.S deleted file mode 100644 index 418f1ef02..000000000 --- a/libc/nt/ntdll/RtlDestroyQueryDebugBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDestroyQueryDebugBuffer,RtlDestroyQueryDebugBuffer diff --git a/libc/nt/ntdll/RtlDetectHeapLeaks.S b/libc/nt/ntdll/RtlDetectHeapLeaks.S deleted file mode 100644 index 9f7391685..000000000 --- a/libc/nt/ntdll/RtlDetectHeapLeaks.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDetectHeapLeaks,RtlDetectHeapLeaks diff --git a/libc/nt/ntdll/RtlDetermineDosPathNameType_U.S b/libc/nt/ntdll/RtlDetermineDosPathNameType_U.S deleted file mode 100644 index 023752ca4..000000000 --- a/libc/nt/ntdll/RtlDetermineDosPathNameType_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDetermineDosPathNameType_U,RtlDetermineDosPathNameType_U diff --git a/libc/nt/ntdll/RtlDisableThreadProfiling.S b/libc/nt/ntdll/RtlDisableThreadProfiling.S deleted file mode 100644 index e68f43ff5..000000000 --- a/libc/nt/ntdll/RtlDisableThreadProfiling.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDisableThreadProfiling,RtlDisableThreadProfiling diff --git a/libc/nt/ntdll/RtlDllShutdownInProgress.S b/libc/nt/ntdll/RtlDllShutdownInProgress.S deleted file mode 100644 index c8d03181c..000000000 --- a/libc/nt/ntdll/RtlDllShutdownInProgress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDllShutdownInProgress,RtlDllShutdownInProgress diff --git a/libc/nt/ntdll/RtlDnsHostNameToComputerName.S b/libc/nt/ntdll/RtlDnsHostNameToComputerName.S deleted file mode 100644 index f7305c327..000000000 --- a/libc/nt/ntdll/RtlDnsHostNameToComputerName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDnsHostNameToComputerName,RtlDnsHostNameToComputerName diff --git a/libc/nt/ntdll/RtlDoesFileExists_U.S b/libc/nt/ntdll/RtlDoesFileExists_U.S deleted file mode 100644 index 8f4856e21..000000000 --- a/libc/nt/ntdll/RtlDoesFileExists_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDoesFileExists_U,RtlDoesFileExists_U diff --git a/libc/nt/ntdll/RtlDosApplyFileIsolationRedirection_Ustr.S b/libc/nt/ntdll/RtlDosApplyFileIsolationRedirection_Ustr.S deleted file mode 100644 index 87f9b85a7..000000000 --- a/libc/nt/ntdll/RtlDosApplyFileIsolationRedirection_Ustr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosApplyFileIsolationRedirection_Ustr,RtlDosApplyFileIsolationRedirection_Ustr diff --git a/libc/nt/ntdll/RtlDosLongPathNameToNtPathName_U_WithStatus.S b/libc/nt/ntdll/RtlDosLongPathNameToNtPathName_U_WithStatus.S deleted file mode 100644 index bce51d8ea..000000000 --- a/libc/nt/ntdll/RtlDosLongPathNameToNtPathName_U_WithStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosLongPathNameToNtPathName_U_WithStatus,RtlDosLongPathNameToNtPathName_U_WithStatus diff --git a/libc/nt/ntdll/RtlDosLongPathNameToRelativeNtPathName_U_WithStatus.S b/libc/nt/ntdll/RtlDosLongPathNameToRelativeNtPathName_U_WithStatus.S deleted file mode 100644 index b770bc021..000000000 --- a/libc/nt/ntdll/RtlDosLongPathNameToRelativeNtPathName_U_WithStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosLongPathNameToRelativeNtPathName_U_WithStatus,RtlDosLongPathNameToRelativeNtPathName_U_WithStatus diff --git a/libc/nt/ntdll/RtlDosPathNameToNtPathName_U.S b/libc/nt/ntdll/RtlDosPathNameToNtPathName_U.S deleted file mode 100644 index 28f24bebd..000000000 --- a/libc/nt/ntdll/RtlDosPathNameToNtPathName_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosPathNameToNtPathName_U,RtlDosPathNameToNtPathName_U diff --git a/libc/nt/ntdll/RtlDosPathNameToNtPathName_U_WithStatus.S b/libc/nt/ntdll/RtlDosPathNameToNtPathName_U_WithStatus.S deleted file mode 100644 index 6124260bf..000000000 --- a/libc/nt/ntdll/RtlDosPathNameToNtPathName_U_WithStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosPathNameToNtPathName_U_WithStatus,RtlDosPathNameToNtPathName_U_WithStatus diff --git a/libc/nt/ntdll/RtlDosPathNameToRelativeNtPathName_U.S b/libc/nt/ntdll/RtlDosPathNameToRelativeNtPathName_U.S deleted file mode 100644 index 4e760db14..000000000 --- a/libc/nt/ntdll/RtlDosPathNameToRelativeNtPathName_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosPathNameToRelativeNtPathName_U,RtlDosPathNameToRelativeNtPathName_U diff --git a/libc/nt/ntdll/RtlDosPathNameToRelativeNtPathName_U_WithStatus.S b/libc/nt/ntdll/RtlDosPathNameToRelativeNtPathName_U_WithStatus.S deleted file mode 100644 index cc08d9e37..000000000 --- a/libc/nt/ntdll/RtlDosPathNameToRelativeNtPathName_U_WithStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosPathNameToRelativeNtPathName_U_WithStatus,RtlDosPathNameToRelativeNtPathName_U_WithStatus diff --git a/libc/nt/ntdll/RtlDosSearchPath_U.S b/libc/nt/ntdll/RtlDosSearchPath_U.S deleted file mode 100644 index 114afd8c8..000000000 --- a/libc/nt/ntdll/RtlDosSearchPath_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosSearchPath_U,RtlDosSearchPath_U diff --git a/libc/nt/ntdll/RtlDosSearchPath_Ustr.S b/libc/nt/ntdll/RtlDosSearchPath_Ustr.S deleted file mode 100644 index 7964aee6b..000000000 --- a/libc/nt/ntdll/RtlDosSearchPath_Ustr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDosSearchPath_Ustr,RtlDosSearchPath_Ustr diff --git a/libc/nt/ntdll/RtlDowncaseUnicodeChar.S b/libc/nt/ntdll/RtlDowncaseUnicodeChar.S deleted file mode 100644 index 6612a7a19..000000000 --- a/libc/nt/ntdll/RtlDowncaseUnicodeChar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDowncaseUnicodeChar,RtlDowncaseUnicodeChar diff --git a/libc/nt/ntdll/RtlDowncaseUnicodeString.S b/libc/nt/ntdll/RtlDowncaseUnicodeString.S deleted file mode 100644 index 34c3aef6c..000000000 --- a/libc/nt/ntdll/RtlDowncaseUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDowncaseUnicodeString,RtlDowncaseUnicodeString diff --git a/libc/nt/ntdll/RtlDrainNonVolatileFlush.S b/libc/nt/ntdll/RtlDrainNonVolatileFlush.S deleted file mode 100644 index 4013bb5f6..000000000 --- a/libc/nt/ntdll/RtlDrainNonVolatileFlush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDrainNonVolatileFlush,RtlDrainNonVolatileFlush diff --git a/libc/nt/ntdll/RtlDumpResource.S b/libc/nt/ntdll/RtlDumpResource.S deleted file mode 100644 index 591a96785..000000000 --- a/libc/nt/ntdll/RtlDumpResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDumpResource,RtlDumpResource diff --git a/libc/nt/ntdll/RtlDuplicateUnicodeString.S b/libc/nt/ntdll/RtlDuplicateUnicodeString.S deleted file mode 100644 index eae6e223a..000000000 --- a/libc/nt/ntdll/RtlDuplicateUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlDuplicateUnicodeString,RtlDuplicateUnicodeString diff --git a/libc/nt/ntdll/RtlEmptyAtomTable.S b/libc/nt/ntdll/RtlEmptyAtomTable.S deleted file mode 100644 index b655c42d4..000000000 --- a/libc/nt/ntdll/RtlEmptyAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEmptyAtomTable,RtlEmptyAtomTable diff --git a/libc/nt/ntdll/RtlEnableEarlyCriticalSectionEventCreation.S b/libc/nt/ntdll/RtlEnableEarlyCriticalSectionEventCreation.S deleted file mode 100644 index a703e7b61..000000000 --- a/libc/nt/ntdll/RtlEnableEarlyCriticalSectionEventCreation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnableEarlyCriticalSectionEventCreation,RtlEnableEarlyCriticalSectionEventCreation diff --git a/libc/nt/ntdll/RtlEnableThreadProfiling.S b/libc/nt/ntdll/RtlEnableThreadProfiling.S deleted file mode 100644 index 0ee7c8fb3..000000000 --- a/libc/nt/ntdll/RtlEnableThreadProfiling.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnableThreadProfiling,RtlEnableThreadProfiling diff --git a/libc/nt/ntdll/RtlEnclaveCallDispatch.S b/libc/nt/ntdll/RtlEnclaveCallDispatch.S deleted file mode 100644 index fd2fd001d..000000000 --- a/libc/nt/ntdll/RtlEnclaveCallDispatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnclaveCallDispatch,RtlEnclaveCallDispatch diff --git a/libc/nt/ntdll/RtlEnclaveCallDispatchReturn.S b/libc/nt/ntdll/RtlEnclaveCallDispatchReturn.S deleted file mode 100644 index 51761091a..000000000 --- a/libc/nt/ntdll/RtlEnclaveCallDispatchReturn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnclaveCallDispatchReturn,RtlEnclaveCallDispatchReturn diff --git a/libc/nt/ntdll/RtlEncodePointer.S b/libc/nt/ntdll/RtlEncodePointer.S deleted file mode 100644 index ea1f1ed40..000000000 --- a/libc/nt/ntdll/RtlEncodePointer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEncodePointer,RtlEncodePointer diff --git a/libc/nt/ntdll/RtlEncodeRemotePointer.S b/libc/nt/ntdll/RtlEncodeRemotePointer.S deleted file mode 100644 index 546e92025..000000000 --- a/libc/nt/ntdll/RtlEncodeRemotePointer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEncodeRemotePointer,RtlEncodeRemotePointer diff --git a/libc/nt/ntdll/RtlEncodeSystemPointer.S b/libc/nt/ntdll/RtlEncodeSystemPointer.S deleted file mode 100644 index 1fb2080a7..000000000 --- a/libc/nt/ntdll/RtlEncodeSystemPointer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEncodeSystemPointer,RtlEncodeSystemPointer diff --git a/libc/nt/ntdll/RtlEndEnumerationHashTable.S b/libc/nt/ntdll/RtlEndEnumerationHashTable.S deleted file mode 100644 index b176cd25b..000000000 --- a/libc/nt/ntdll/RtlEndEnumerationHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEndEnumerationHashTable,RtlEndEnumerationHashTable diff --git a/libc/nt/ntdll/RtlEndStrongEnumerationHashTable.S b/libc/nt/ntdll/RtlEndStrongEnumerationHashTable.S deleted file mode 100644 index ecc79419f..000000000 --- a/libc/nt/ntdll/RtlEndStrongEnumerationHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEndStrongEnumerationHashTable,RtlEndStrongEnumerationHashTable diff --git a/libc/nt/ntdll/RtlEndWeakEnumerationHashTable.S b/libc/nt/ntdll/RtlEndWeakEnumerationHashTable.S deleted file mode 100644 index d649982aa..000000000 --- a/libc/nt/ntdll/RtlEndWeakEnumerationHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEndWeakEnumerationHashTable,RtlEndWeakEnumerationHashTable diff --git a/libc/nt/ntdll/RtlEnterUmsSchedulingMode.S b/libc/nt/ntdll/RtlEnterUmsSchedulingMode.S deleted file mode 100644 index 399fdf2ef..000000000 --- a/libc/nt/ntdll/RtlEnterUmsSchedulingMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnterUmsSchedulingMode,RtlEnterUmsSchedulingMode diff --git a/libc/nt/ntdll/RtlEnumProcessHeaps.S b/libc/nt/ntdll/RtlEnumProcessHeaps.S deleted file mode 100644 index 269d90fed..000000000 --- a/libc/nt/ntdll/RtlEnumProcessHeaps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnumProcessHeaps,RtlEnumProcessHeaps diff --git a/libc/nt/ntdll/RtlEnumerateEntryHashTable.S b/libc/nt/ntdll/RtlEnumerateEntryHashTable.S deleted file mode 100644 index 567a3aae8..000000000 --- a/libc/nt/ntdll/RtlEnumerateEntryHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnumerateEntryHashTable,RtlEnumerateEntryHashTable diff --git a/libc/nt/ntdll/RtlEnumerateGenericTable.S b/libc/nt/ntdll/RtlEnumerateGenericTable.S deleted file mode 100644 index 9a0a5b660..000000000 --- a/libc/nt/ntdll/RtlEnumerateGenericTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnumerateGenericTable,RtlEnumerateGenericTable diff --git a/libc/nt/ntdll/RtlEnumerateGenericTableAvl.S b/libc/nt/ntdll/RtlEnumerateGenericTableAvl.S deleted file mode 100644 index 81878a0f6..000000000 --- a/libc/nt/ntdll/RtlEnumerateGenericTableAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnumerateGenericTableAvl,RtlEnumerateGenericTableAvl diff --git a/libc/nt/ntdll/RtlEnumerateGenericTableLikeADirectory.S b/libc/nt/ntdll/RtlEnumerateGenericTableLikeADirectory.S deleted file mode 100644 index 2dc53721c..000000000 --- a/libc/nt/ntdll/RtlEnumerateGenericTableLikeADirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnumerateGenericTableLikeADirectory,RtlEnumerateGenericTableLikeADirectory diff --git a/libc/nt/ntdll/RtlEnumerateGenericTableWithoutSplaying.S b/libc/nt/ntdll/RtlEnumerateGenericTableWithoutSplaying.S deleted file mode 100644 index 674d79139..000000000 --- a/libc/nt/ntdll/RtlEnumerateGenericTableWithoutSplaying.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnumerateGenericTableWithoutSplaying,RtlEnumerateGenericTableWithoutSplaying diff --git a/libc/nt/ntdll/RtlEnumerateGenericTableWithoutSplayingAvl.S b/libc/nt/ntdll/RtlEnumerateGenericTableWithoutSplayingAvl.S deleted file mode 100644 index 525c7bbd7..000000000 --- a/libc/nt/ntdll/RtlEnumerateGenericTableWithoutSplayingAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEnumerateGenericTableWithoutSplayingAvl,RtlEnumerateGenericTableWithoutSplayingAvl diff --git a/libc/nt/ntdll/RtlEqualComputerName.S b/libc/nt/ntdll/RtlEqualComputerName.S deleted file mode 100644 index fe10519e7..000000000 --- a/libc/nt/ntdll/RtlEqualComputerName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEqualComputerName,RtlEqualComputerName diff --git a/libc/nt/ntdll/RtlEqualDomainName.S b/libc/nt/ntdll/RtlEqualDomainName.S deleted file mode 100644 index 3a8becb67..000000000 --- a/libc/nt/ntdll/RtlEqualDomainName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEqualDomainName,RtlEqualDomainName diff --git a/libc/nt/ntdll/RtlEqualLuid.S b/libc/nt/ntdll/RtlEqualLuid.S deleted file mode 100644 index e57678a83..000000000 --- a/libc/nt/ntdll/RtlEqualLuid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEqualLuid,RtlEqualLuid diff --git a/libc/nt/ntdll/RtlEqualPrefixSid.S b/libc/nt/ntdll/RtlEqualPrefixSid.S deleted file mode 100644 index a1ed4df8a..000000000 --- a/libc/nt/ntdll/RtlEqualPrefixSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEqualPrefixSid,RtlEqualPrefixSid diff --git a/libc/nt/ntdll/RtlEqualSid.S b/libc/nt/ntdll/RtlEqualSid.S deleted file mode 100644 index 479bc48b8..000000000 --- a/libc/nt/ntdll/RtlEqualSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEqualSid,RtlEqualSid diff --git a/libc/nt/ntdll/RtlEqualString.S b/libc/nt/ntdll/RtlEqualString.S deleted file mode 100644 index 82388dbb5..000000000 --- a/libc/nt/ntdll/RtlEqualString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEqualString,RtlEqualString diff --git a/libc/nt/ntdll/RtlEqualUnicodeString.S b/libc/nt/ntdll/RtlEqualUnicodeString.S deleted file mode 100644 index 0f4ea0810..000000000 --- a/libc/nt/ntdll/RtlEqualUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEqualUnicodeString,RtlEqualUnicodeString diff --git a/libc/nt/ntdll/RtlEqualWnfChangeStamps.S b/libc/nt/ntdll/RtlEqualWnfChangeStamps.S deleted file mode 100644 index add549a9f..000000000 --- a/libc/nt/ntdll/RtlEqualWnfChangeStamps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEqualWnfChangeStamps,RtlEqualWnfChangeStamps diff --git a/libc/nt/ntdll/RtlEraseUnicodeString.S b/libc/nt/ntdll/RtlEraseUnicodeString.S deleted file mode 100644 index 74d15fc32..000000000 --- a/libc/nt/ntdll/RtlEraseUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEraseUnicodeString,RtlEraseUnicodeString diff --git a/libc/nt/ntdll/RtlEthernetAddressToStringW.S b/libc/nt/ntdll/RtlEthernetAddressToStringW.S deleted file mode 100644 index b3f6d5418..000000000 --- a/libc/nt/ntdll/RtlEthernetAddressToStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEthernetAddressToStringW,RtlEthernetAddressToString diff --git a/libc/nt/ntdll/RtlEthernetStringToAddressW.S b/libc/nt/ntdll/RtlEthernetStringToAddressW.S deleted file mode 100644 index 94c739460..000000000 --- a/libc/nt/ntdll/RtlEthernetStringToAddressW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlEthernetStringToAddressW,RtlEthernetStringToAddress diff --git a/libc/nt/ntdll/RtlExecuteUmsThread.S b/libc/nt/ntdll/RtlExecuteUmsThread.S deleted file mode 100644 index dd3ef08b4..000000000 --- a/libc/nt/ntdll/RtlExecuteUmsThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExecuteUmsThread,RtlExecuteUmsThread diff --git a/libc/nt/ntdll/RtlExitUserProcess.S b/libc/nt/ntdll/RtlExitUserProcess.S deleted file mode 100644 index dc0bccec4..000000000 --- a/libc/nt/ntdll/RtlExitUserProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExitUserProcess,RtlExitUserProcess diff --git a/libc/nt/ntdll/RtlExitUserThread.S b/libc/nt/ntdll/RtlExitUserThread.S deleted file mode 100644 index 7bf36fe94..000000000 --- a/libc/nt/ntdll/RtlExitUserThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExitUserThread,RtlExitUserThread diff --git a/libc/nt/ntdll/RtlExpandEnvironmentStrings.S b/libc/nt/ntdll/RtlExpandEnvironmentStrings.S deleted file mode 100644 index e100286ca..000000000 --- a/libc/nt/ntdll/RtlExpandEnvironmentStrings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExpandEnvironmentStrings,RtlExpandEnvironmentStrings diff --git a/libc/nt/ntdll/RtlExpandEnvironmentStrings_U.S b/libc/nt/ntdll/RtlExpandEnvironmentStrings_U.S deleted file mode 100644 index 8bfab0eca..000000000 --- a/libc/nt/ntdll/RtlExpandEnvironmentStrings_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExpandEnvironmentStrings_U,RtlExpandEnvironmentStrings_U diff --git a/libc/nt/ntdll/RtlExpandHashTable.S b/libc/nt/ntdll/RtlExpandHashTable.S deleted file mode 100644 index b010fc14d..000000000 --- a/libc/nt/ntdll/RtlExpandHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExpandHashTable,RtlExpandHashTable diff --git a/libc/nt/ntdll/RtlExtendCorrelationVector.S b/libc/nt/ntdll/RtlExtendCorrelationVector.S deleted file mode 100644 index 3f055a0f7..000000000 --- a/libc/nt/ntdll/RtlExtendCorrelationVector.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExtendCorrelationVector,RtlExtendCorrelationVector diff --git a/libc/nt/ntdll/RtlExtendMemoryBlockLookaside.S b/libc/nt/ntdll/RtlExtendMemoryBlockLookaside.S deleted file mode 100644 index 3c37ef125..000000000 --- a/libc/nt/ntdll/RtlExtendMemoryBlockLookaside.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExtendMemoryBlockLookaside,RtlExtendMemoryBlockLookaside diff --git a/libc/nt/ntdll/RtlExtendMemoryZone.S b/libc/nt/ntdll/RtlExtendMemoryZone.S deleted file mode 100644 index eebccb8c4..000000000 --- a/libc/nt/ntdll/RtlExtendMemoryZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExtendMemoryZone,RtlExtendMemoryZone diff --git a/libc/nt/ntdll/RtlExtractBitMap.S b/libc/nt/ntdll/RtlExtractBitMap.S deleted file mode 100644 index a72bfcf73..000000000 --- a/libc/nt/ntdll/RtlExtractBitMap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlExtractBitMap,RtlExtractBitMap diff --git a/libc/nt/ntdll/RtlFillMemory.S b/libc/nt/ntdll/RtlFillMemory.S deleted file mode 100644 index 8eb1a3962..000000000 --- a/libc/nt/ntdll/RtlFillMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFillMemory,RtlFillMemory diff --git a/libc/nt/ntdll/RtlFinalReleaseOutOfProcessMemoryStream.S b/libc/nt/ntdll/RtlFinalReleaseOutOfProcessMemoryStream.S deleted file mode 100644 index 246762690..000000000 --- a/libc/nt/ntdll/RtlFinalReleaseOutOfProcessMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFinalReleaseOutOfProcessMemoryStream,RtlFinalReleaseOutOfProcessMemoryStream diff --git a/libc/nt/ntdll/RtlFindAceByType.S b/libc/nt/ntdll/RtlFindAceByType.S deleted file mode 100644 index e84e3aa35..000000000 --- a/libc/nt/ntdll/RtlFindAceByType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindAceByType,RtlFindAceByType diff --git a/libc/nt/ntdll/RtlFindActivationContextSectionGuid.S b/libc/nt/ntdll/RtlFindActivationContextSectionGuid.S deleted file mode 100644 index 6b42f47a6..000000000 --- a/libc/nt/ntdll/RtlFindActivationContextSectionGuid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindActivationContextSectionGuid,RtlFindActivationContextSectionGuid diff --git a/libc/nt/ntdll/RtlFindActivationContextSectionString.S b/libc/nt/ntdll/RtlFindActivationContextSectionString.S deleted file mode 100644 index f617df4e1..000000000 --- a/libc/nt/ntdll/RtlFindActivationContextSectionString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindActivationContextSectionString,RtlFindActivationContextSectionString diff --git a/libc/nt/ntdll/RtlFindCharInUnicodeString.S b/libc/nt/ntdll/RtlFindCharInUnicodeString.S deleted file mode 100644 index f269144d0..000000000 --- a/libc/nt/ntdll/RtlFindCharInUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindCharInUnicodeString,RtlFindCharInUnicodeString diff --git a/libc/nt/ntdll/RtlFindClearBits.S b/libc/nt/ntdll/RtlFindClearBits.S deleted file mode 100644 index a58b07f63..000000000 --- a/libc/nt/ntdll/RtlFindClearBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindClearBits,RtlFindClearBits diff --git a/libc/nt/ntdll/RtlFindClearBitsAndSet.S b/libc/nt/ntdll/RtlFindClearBitsAndSet.S deleted file mode 100644 index eb4c57567..000000000 --- a/libc/nt/ntdll/RtlFindClearBitsAndSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindClearBitsAndSet,RtlFindClearBitsAndSet diff --git a/libc/nt/ntdll/RtlFindClearRuns.S b/libc/nt/ntdll/RtlFindClearRuns.S deleted file mode 100644 index 1e8fd23c0..000000000 --- a/libc/nt/ntdll/RtlFindClearRuns.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindClearRuns,RtlFindClearRuns diff --git a/libc/nt/ntdll/RtlFindClosestEncodableLength.S b/libc/nt/ntdll/RtlFindClosestEncodableLength.S deleted file mode 100644 index 6c6509052..000000000 --- a/libc/nt/ntdll/RtlFindClosestEncodableLength.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindClosestEncodableLength,RtlFindClosestEncodableLength diff --git a/libc/nt/ntdll/RtlFindExportedRoutineByName.S b/libc/nt/ntdll/RtlFindExportedRoutineByName.S deleted file mode 100644 index bd043b177..000000000 --- a/libc/nt/ntdll/RtlFindExportedRoutineByName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindExportedRoutineByName,RtlFindExportedRoutineByName diff --git a/libc/nt/ntdll/RtlFindLastBackwardRunClear.S b/libc/nt/ntdll/RtlFindLastBackwardRunClear.S deleted file mode 100644 index b0d9ef65c..000000000 --- a/libc/nt/ntdll/RtlFindLastBackwardRunClear.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindLastBackwardRunClear,RtlFindLastBackwardRunClear diff --git a/libc/nt/ntdll/RtlFindLeastSignificantBit.S b/libc/nt/ntdll/RtlFindLeastSignificantBit.S deleted file mode 100644 index 65d04bf02..000000000 --- a/libc/nt/ntdll/RtlFindLeastSignificantBit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindLeastSignificantBit,RtlFindLeastSignificantBit diff --git a/libc/nt/ntdll/RtlFindLongestRunClear.S b/libc/nt/ntdll/RtlFindLongestRunClear.S deleted file mode 100644 index cf1ef7669..000000000 --- a/libc/nt/ntdll/RtlFindLongestRunClear.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindLongestRunClear,RtlFindLongestRunClear diff --git a/libc/nt/ntdll/RtlFindMessage.S b/libc/nt/ntdll/RtlFindMessage.S deleted file mode 100644 index 5f5dee810..000000000 --- a/libc/nt/ntdll/RtlFindMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindMessage,RtlFindMessage diff --git a/libc/nt/ntdll/RtlFindMostSignificantBit.S b/libc/nt/ntdll/RtlFindMostSignificantBit.S deleted file mode 100644 index 1afb79476..000000000 --- a/libc/nt/ntdll/RtlFindMostSignificantBit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindMostSignificantBit,RtlFindMostSignificantBit diff --git a/libc/nt/ntdll/RtlFindNextForwardRunClear.S b/libc/nt/ntdll/RtlFindNextForwardRunClear.S deleted file mode 100644 index 52c046baf..000000000 --- a/libc/nt/ntdll/RtlFindNextForwardRunClear.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindNextForwardRunClear,RtlFindNextForwardRunClear diff --git a/libc/nt/ntdll/RtlFindSetBits.S b/libc/nt/ntdll/RtlFindSetBits.S deleted file mode 100644 index a46627995..000000000 --- a/libc/nt/ntdll/RtlFindSetBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindSetBits,RtlFindSetBits diff --git a/libc/nt/ntdll/RtlFindSetBitsAndClear.S b/libc/nt/ntdll/RtlFindSetBitsAndClear.S deleted file mode 100644 index 501817d37..000000000 --- a/libc/nt/ntdll/RtlFindSetBitsAndClear.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindSetBitsAndClear,RtlFindSetBitsAndClear diff --git a/libc/nt/ntdll/RtlFindUnicodeSubstring.S b/libc/nt/ntdll/RtlFindUnicodeSubstring.S deleted file mode 100644 index 6bcc4e5a6..000000000 --- a/libc/nt/ntdll/RtlFindUnicodeSubstring.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFindUnicodeSubstring,RtlFindUnicodeSubstring diff --git a/libc/nt/ntdll/RtlFirstEntrySList.S b/libc/nt/ntdll/RtlFirstEntrySList.S deleted file mode 100644 index e1f088784..000000000 --- a/libc/nt/ntdll/RtlFirstEntrySList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFirstEntrySList,RtlFirstEntrySList diff --git a/libc/nt/ntdll/RtlFirstFreeAce.S b/libc/nt/ntdll/RtlFirstFreeAce.S deleted file mode 100644 index 4511d16cd..000000000 --- a/libc/nt/ntdll/RtlFirstFreeAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFirstFreeAce,RtlFirstFreeAce diff --git a/libc/nt/ntdll/RtlFlsAlloc.S b/libc/nt/ntdll/RtlFlsAlloc.S deleted file mode 100644 index 6a73b05cb..000000000 --- a/libc/nt/ntdll/RtlFlsAlloc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFlsAlloc,RtlFlsAlloc diff --git a/libc/nt/ntdll/RtlFlsFree.S b/libc/nt/ntdll/RtlFlsFree.S deleted file mode 100644 index 865b3f7ab..000000000 --- a/libc/nt/ntdll/RtlFlsFree.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFlsFree,RtlFlsFree diff --git a/libc/nt/ntdll/RtlFlushHeaps.S b/libc/nt/ntdll/RtlFlushHeaps.S deleted file mode 100644 index 7831bce53..000000000 --- a/libc/nt/ntdll/RtlFlushHeaps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFlushHeaps,RtlFlushHeaps diff --git a/libc/nt/ntdll/RtlFlushNonVolatileMemory.S b/libc/nt/ntdll/RtlFlushNonVolatileMemory.S deleted file mode 100644 index aac15c8cc..000000000 --- a/libc/nt/ntdll/RtlFlushNonVolatileMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFlushNonVolatileMemory,RtlFlushNonVolatileMemory diff --git a/libc/nt/ntdll/RtlFlushNonVolatileMemoryRanges.S b/libc/nt/ntdll/RtlFlushNonVolatileMemoryRanges.S deleted file mode 100644 index eec8de3a0..000000000 --- a/libc/nt/ntdll/RtlFlushNonVolatileMemoryRanges.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFlushNonVolatileMemoryRanges,RtlFlushNonVolatileMemoryRanges diff --git a/libc/nt/ntdll/RtlFlushSecureMemoryCache.S b/libc/nt/ntdll/RtlFlushSecureMemoryCache.S deleted file mode 100644 index 0f4b8dda3..000000000 --- a/libc/nt/ntdll/RtlFlushSecureMemoryCache.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFlushSecureMemoryCache,RtlFlushSecureMemoryCache diff --git a/libc/nt/ntdll/RtlFormatCurrentUserKeyPath.S b/libc/nt/ntdll/RtlFormatCurrentUserKeyPath.S deleted file mode 100644 index 5da53d146..000000000 --- a/libc/nt/ntdll/RtlFormatCurrentUserKeyPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFormatCurrentUserKeyPath,RtlFormatCurrentUserKeyPath diff --git a/libc/nt/ntdll/RtlFormatMessage.S b/libc/nt/ntdll/RtlFormatMessage.S deleted file mode 100644 index ee94010e8..000000000 --- a/libc/nt/ntdll/RtlFormatMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFormatMessage,RtlFormatMessage diff --git a/libc/nt/ntdll/RtlFormatMessageEx.S b/libc/nt/ntdll/RtlFormatMessageEx.S deleted file mode 100644 index 1a15e9f88..000000000 --- a/libc/nt/ntdll/RtlFormatMessageEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFormatMessageEx,RtlFormatMessageEx diff --git a/libc/nt/ntdll/RtlFreeActivationContextStack.S b/libc/nt/ntdll/RtlFreeActivationContextStack.S deleted file mode 100644 index 9ca7a3b2a..000000000 --- a/libc/nt/ntdll/RtlFreeActivationContextStack.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeActivationContextStack,RtlFreeActivationContextStack diff --git a/libc/nt/ntdll/RtlFreeAnsiString.S b/libc/nt/ntdll/RtlFreeAnsiString.S deleted file mode 100644 index d2b6c8f3c..000000000 --- a/libc/nt/ntdll/RtlFreeAnsiString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeAnsiString,RtlFreeAnsiString diff --git a/libc/nt/ntdll/RtlFreeHandle.S b/libc/nt/ntdll/RtlFreeHandle.S deleted file mode 100644 index 75f8e4c8e..000000000 --- a/libc/nt/ntdll/RtlFreeHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeHandle,RtlFreeHandle diff --git a/libc/nt/ntdll/RtlFreeMemoryBlockLookaside.S b/libc/nt/ntdll/RtlFreeMemoryBlockLookaside.S deleted file mode 100644 index 860825cbe..000000000 --- a/libc/nt/ntdll/RtlFreeMemoryBlockLookaside.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeMemoryBlockLookaside,RtlFreeMemoryBlockLookaside diff --git a/libc/nt/ntdll/RtlFreeNonVolatileToken.S b/libc/nt/ntdll/RtlFreeNonVolatileToken.S deleted file mode 100644 index a8f34fd70..000000000 --- a/libc/nt/ntdll/RtlFreeNonVolatileToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeNonVolatileToken,RtlFreeNonVolatileToken diff --git a/libc/nt/ntdll/RtlFreeOemString.S b/libc/nt/ntdll/RtlFreeOemString.S deleted file mode 100644 index f9d31d937..000000000 --- a/libc/nt/ntdll/RtlFreeOemString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeOemString,RtlFreeOemString diff --git a/libc/nt/ntdll/RtlFreeSid.S b/libc/nt/ntdll/RtlFreeSid.S deleted file mode 100644 index 23a09f610..000000000 --- a/libc/nt/ntdll/RtlFreeSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeSid,RtlFreeSid diff --git a/libc/nt/ntdll/RtlFreeThreadActivationContextStack.S b/libc/nt/ntdll/RtlFreeThreadActivationContextStack.S deleted file mode 100644 index 73adff013..000000000 --- a/libc/nt/ntdll/RtlFreeThreadActivationContextStack.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeThreadActivationContextStack,RtlFreeThreadActivationContextStack diff --git a/libc/nt/ntdll/RtlFreeUserStack.S b/libc/nt/ntdll/RtlFreeUserStack.S deleted file mode 100644 index afd023615..000000000 --- a/libc/nt/ntdll/RtlFreeUserStack.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlFreeUserStack,RtlFreeUserStack diff --git a/libc/nt/ntdll/RtlGUIDFromString.S b/libc/nt/ntdll/RtlGUIDFromString.S deleted file mode 100644 index 576224e19..000000000 --- a/libc/nt/ntdll/RtlGUIDFromString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGUIDFromString,RtlGUIDFromString diff --git a/libc/nt/ntdll/RtlGenerate8dot3Name.S b/libc/nt/ntdll/RtlGenerate8dot3Name.S deleted file mode 100644 index 90bb0a307..000000000 --- a/libc/nt/ntdll/RtlGenerate8dot3Name.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGenerate8dot3Name,RtlGenerate8dot3Name diff --git a/libc/nt/ntdll/RtlGetAce.S b/libc/nt/ntdll/RtlGetAce.S deleted file mode 100644 index 0d1a4b00e..000000000 --- a/libc/nt/ntdll/RtlGetAce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetAce,RtlGetAce diff --git a/libc/nt/ntdll/RtlGetActiveActivationContext.S b/libc/nt/ntdll/RtlGetActiveActivationContext.S deleted file mode 100644 index 2c44f2a72..000000000 --- a/libc/nt/ntdll/RtlGetActiveActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetActiveActivationContext,RtlGetActiveActivationContext diff --git a/libc/nt/ntdll/RtlGetActiveConsoleId.S b/libc/nt/ntdll/RtlGetActiveConsoleId.S deleted file mode 100644 index b8922a569..000000000 --- a/libc/nt/ntdll/RtlGetActiveConsoleId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetActiveConsoleId,RtlGetActiveConsoleId diff --git a/libc/nt/ntdll/RtlGetAppContainerNamedObjectPath.S b/libc/nt/ntdll/RtlGetAppContainerNamedObjectPath.S deleted file mode 100644 index 32ff34b33..000000000 --- a/libc/nt/ntdll/RtlGetAppContainerNamedObjectPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetAppContainerNamedObjectPath,RtlGetAppContainerNamedObjectPath diff --git a/libc/nt/ntdll/RtlGetAppContainerParent.S b/libc/nt/ntdll/RtlGetAppContainerParent.S deleted file mode 100644 index e7973e346..000000000 --- a/libc/nt/ntdll/RtlGetAppContainerParent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetAppContainerParent,RtlGetAppContainerParent diff --git a/libc/nt/ntdll/RtlGetAppContainerSidType.S b/libc/nt/ntdll/RtlGetAppContainerSidType.S deleted file mode 100644 index 0b33053b9..000000000 --- a/libc/nt/ntdll/RtlGetAppContainerSidType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetAppContainerSidType,RtlGetAppContainerSidType diff --git a/libc/nt/ntdll/RtlGetCallersAddress.S b/libc/nt/ntdll/RtlGetCallersAddress.S deleted file mode 100644 index 0d8966e0d..000000000 --- a/libc/nt/ntdll/RtlGetCallersAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCallersAddress,RtlGetCallersAddress diff --git a/libc/nt/ntdll/RtlGetCompressionWorkSpaceSize.S b/libc/nt/ntdll/RtlGetCompressionWorkSpaceSize.S deleted file mode 100644 index 23b50d236..000000000 --- a/libc/nt/ntdll/RtlGetCompressionWorkSpaceSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCompressionWorkSpaceSize,RtlGetCompressionWorkSpaceSize diff --git a/libc/nt/ntdll/RtlGetConsoleSessionForegroundProcessId.S b/libc/nt/ntdll/RtlGetConsoleSessionForegroundProcessId.S deleted file mode 100644 index 38b9f20e0..000000000 --- a/libc/nt/ntdll/RtlGetConsoleSessionForegroundProcessId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetConsoleSessionForegroundProcessId,RtlGetConsoleSessionForegroundProcessId diff --git a/libc/nt/ntdll/RtlGetControlSecurityDescriptor.S b/libc/nt/ntdll/RtlGetControlSecurityDescriptor.S deleted file mode 100644 index 6bd159c4a..000000000 --- a/libc/nt/ntdll/RtlGetControlSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetControlSecurityDescriptor,RtlGetControlSecurityDescriptor diff --git a/libc/nt/ntdll/RtlGetCriticalSectionRecursionCount.S b/libc/nt/ntdll/RtlGetCriticalSectionRecursionCount.S deleted file mode 100644 index c669fe1ef..000000000 --- a/libc/nt/ntdll/RtlGetCriticalSectionRecursionCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCriticalSectionRecursionCount,RtlGetCriticalSectionRecursionCount diff --git a/libc/nt/ntdll/RtlGetCurrentDirectory_U.S b/libc/nt/ntdll/RtlGetCurrentDirectory_U.S deleted file mode 100644 index 49bf6e098..000000000 --- a/libc/nt/ntdll/RtlGetCurrentDirectory_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCurrentDirectory_U,RtlGetCurrentDirectory_U diff --git a/libc/nt/ntdll/RtlGetCurrentPeb.S b/libc/nt/ntdll/RtlGetCurrentPeb.S deleted file mode 100644 index 0772b9dd4..000000000 --- a/libc/nt/ntdll/RtlGetCurrentPeb.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCurrentPeb,RtlGetCurrentPeb diff --git a/libc/nt/ntdll/RtlGetCurrentProcessorNumber.S b/libc/nt/ntdll/RtlGetCurrentProcessorNumber.S deleted file mode 100644 index 3beae0722..000000000 --- a/libc/nt/ntdll/RtlGetCurrentProcessorNumber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCurrentProcessorNumber,RtlGetCurrentProcessorNumber diff --git a/libc/nt/ntdll/RtlGetCurrentProcessorNumberEx.S b/libc/nt/ntdll/RtlGetCurrentProcessorNumberEx.S deleted file mode 100644 index 61131dc72..000000000 --- a/libc/nt/ntdll/RtlGetCurrentProcessorNumberEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCurrentProcessorNumberEx,RtlGetCurrentProcessorNumberEx diff --git a/libc/nt/ntdll/RtlGetCurrentServiceSessionId.S b/libc/nt/ntdll/RtlGetCurrentServiceSessionId.S deleted file mode 100644 index b1c91d4c2..000000000 --- a/libc/nt/ntdll/RtlGetCurrentServiceSessionId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCurrentServiceSessionId,RtlGetCurrentServiceSessionId diff --git a/libc/nt/ntdll/RtlGetCurrentTransaction.S b/libc/nt/ntdll/RtlGetCurrentTransaction.S deleted file mode 100644 index 8e3aa1d6c..000000000 --- a/libc/nt/ntdll/RtlGetCurrentTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCurrentTransaction,RtlGetCurrentTransaction diff --git a/libc/nt/ntdll/RtlGetCurrentUmsThread.S b/libc/nt/ntdll/RtlGetCurrentUmsThread.S deleted file mode 100644 index f92e998fb..000000000 --- a/libc/nt/ntdll/RtlGetCurrentUmsThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetCurrentUmsThread,RtlGetCurrentUmsThread diff --git a/libc/nt/ntdll/RtlGetDaclSecurityDescriptor.S b/libc/nt/ntdll/RtlGetDaclSecurityDescriptor.S deleted file mode 100644 index 369d1b694..000000000 --- a/libc/nt/ntdll/RtlGetDaclSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetDaclSecurityDescriptor,RtlGetDaclSecurityDescriptor diff --git a/libc/nt/ntdll/RtlGetDeviceFamilyInfoEnum.S b/libc/nt/ntdll/RtlGetDeviceFamilyInfoEnum.S deleted file mode 100644 index 82668ff70..000000000 --- a/libc/nt/ntdll/RtlGetDeviceFamilyInfoEnum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetDeviceFamilyInfoEnum,RtlGetDeviceFamilyInfoEnum diff --git a/libc/nt/ntdll/RtlGetElementGenericTable.S b/libc/nt/ntdll/RtlGetElementGenericTable.S deleted file mode 100644 index 55b9f872f..000000000 --- a/libc/nt/ntdll/RtlGetElementGenericTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetElementGenericTable,RtlGetElementGenericTable diff --git a/libc/nt/ntdll/RtlGetElementGenericTableAvl.S b/libc/nt/ntdll/RtlGetElementGenericTableAvl.S deleted file mode 100644 index eb0799fd2..000000000 --- a/libc/nt/ntdll/RtlGetElementGenericTableAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetElementGenericTableAvl,RtlGetElementGenericTableAvl diff --git a/libc/nt/ntdll/RtlGetEnabledExtendedFeatures.S b/libc/nt/ntdll/RtlGetEnabledExtendedFeatures.S deleted file mode 100644 index 32821c3ef..000000000 --- a/libc/nt/ntdll/RtlGetEnabledExtendedFeatures.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetEnabledExtendedFeatures,RtlGetEnabledExtendedFeatures diff --git a/libc/nt/ntdll/RtlGetExePath.S b/libc/nt/ntdll/RtlGetExePath.S deleted file mode 100644 index 989692b31..000000000 --- a/libc/nt/ntdll/RtlGetExePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetExePath,RtlGetExePath diff --git a/libc/nt/ntdll/RtlGetExtendedContextLength.S b/libc/nt/ntdll/RtlGetExtendedContextLength.S deleted file mode 100644 index 7b546e7ff..000000000 --- a/libc/nt/ntdll/RtlGetExtendedContextLength.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetExtendedContextLength,RtlGetExtendedContextLength diff --git a/libc/nt/ntdll/RtlGetExtendedFeaturesMask.S b/libc/nt/ntdll/RtlGetExtendedFeaturesMask.S deleted file mode 100644 index ac3892e5b..000000000 --- a/libc/nt/ntdll/RtlGetExtendedFeaturesMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetExtendedFeaturesMask,RtlGetExtendedFeaturesMask diff --git a/libc/nt/ntdll/RtlGetFileMUIPath.S b/libc/nt/ntdll/RtlGetFileMUIPath.S deleted file mode 100644 index b9d6c9fec..000000000 --- a/libc/nt/ntdll/RtlGetFileMUIPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetFileMUIPath,RtlGetFileMUIPath diff --git a/libc/nt/ntdll/RtlGetFrame.S b/libc/nt/ntdll/RtlGetFrame.S deleted file mode 100644 index e637a1386..000000000 --- a/libc/nt/ntdll/RtlGetFrame.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetFrame,RtlGetFrame diff --git a/libc/nt/ntdll/RtlGetFullPathName_U.S b/libc/nt/ntdll/RtlGetFullPathName_U.S deleted file mode 100644 index 8b6f2b60a..000000000 --- a/libc/nt/ntdll/RtlGetFullPathName_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetFullPathName_U,RtlGetFullPathName_U diff --git a/libc/nt/ntdll/RtlGetFullPathName_UEx.S b/libc/nt/ntdll/RtlGetFullPathName_UEx.S deleted file mode 100644 index 972d40b74..000000000 --- a/libc/nt/ntdll/RtlGetFullPathName_UEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetFullPathName_UEx,RtlGetFullPathName_UEx diff --git a/libc/nt/ntdll/RtlGetFullPathName_UstrEx.S b/libc/nt/ntdll/RtlGetFullPathName_UstrEx.S deleted file mode 100644 index 720a80e06..000000000 --- a/libc/nt/ntdll/RtlGetFullPathName_UstrEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetFullPathName_UstrEx,RtlGetFullPathName_UstrEx diff --git a/libc/nt/ntdll/RtlGetFunctionTableListHead.S b/libc/nt/ntdll/RtlGetFunctionTableListHead.S deleted file mode 100644 index f692c63c8..000000000 --- a/libc/nt/ntdll/RtlGetFunctionTableListHead.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetFunctionTableListHead,RtlGetFunctionTableListHead diff --git a/libc/nt/ntdll/RtlGetGroupSecurityDescriptor.S b/libc/nt/ntdll/RtlGetGroupSecurityDescriptor.S deleted file mode 100644 index 3f4669751..000000000 --- a/libc/nt/ntdll/RtlGetGroupSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetGroupSecurityDescriptor,RtlGetGroupSecurityDescriptor diff --git a/libc/nt/ntdll/RtlGetIntegerAtom.S b/libc/nt/ntdll/RtlGetIntegerAtom.S deleted file mode 100644 index 755f27bde..000000000 --- a/libc/nt/ntdll/RtlGetIntegerAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetIntegerAtom,RtlGetIntegerAtom diff --git a/libc/nt/ntdll/RtlGetInterruptTimePrecise.S b/libc/nt/ntdll/RtlGetInterruptTimePrecise.S deleted file mode 100644 index 30e3ad045..000000000 --- a/libc/nt/ntdll/RtlGetInterruptTimePrecise.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetInterruptTimePrecise,RtlGetInterruptTimePrecise diff --git a/libc/nt/ntdll/RtlGetLastNtStatus.S b/libc/nt/ntdll/RtlGetLastNtStatus.S deleted file mode 100644 index 013c87883..000000000 --- a/libc/nt/ntdll/RtlGetLastNtStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetLastNtStatus,RtlGetLastNtStatus diff --git a/libc/nt/ntdll/RtlGetLastWin32Error.S b/libc/nt/ntdll/RtlGetLastWin32Error.S deleted file mode 100644 index 55b8073dc..000000000 --- a/libc/nt/ntdll/RtlGetLastWin32Error.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetLastWin32Error,RtlGetLastWin32Error diff --git a/libc/nt/ntdll/RtlGetLengthWithoutLastFullDosOrNtPathElement.S b/libc/nt/ntdll/RtlGetLengthWithoutLastFullDosOrNtPathElement.S deleted file mode 100644 index 3337a8279..000000000 --- a/libc/nt/ntdll/RtlGetLengthWithoutLastFullDosOrNtPathElement.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetLengthWithoutLastFullDosOrNtPathElement,RtlGetLengthWithoutLastFullDosOrNtPathElement diff --git a/libc/nt/ntdll/RtlGetLengthWithoutTrailingPathSeperators.S b/libc/nt/ntdll/RtlGetLengthWithoutTrailingPathSeperators.S deleted file mode 100644 index 5db6d88b1..000000000 --- a/libc/nt/ntdll/RtlGetLengthWithoutTrailingPathSeperators.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetLengthWithoutTrailingPathSeperators,RtlGetLengthWithoutTrailingPathSeperators diff --git a/libc/nt/ntdll/RtlGetLocaleFileMappingAddress.S b/libc/nt/ntdll/RtlGetLocaleFileMappingAddress.S deleted file mode 100644 index 1d658c76c..000000000 --- a/libc/nt/ntdll/RtlGetLocaleFileMappingAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetLocaleFileMappingAddress,RtlGetLocaleFileMappingAddress diff --git a/libc/nt/ntdll/RtlGetLongestNtPathLength.S b/libc/nt/ntdll/RtlGetLongestNtPathLength.S deleted file mode 100644 index 861c2a4a3..000000000 --- a/libc/nt/ntdll/RtlGetLongestNtPathLength.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetLongestNtPathLength,RtlGetLongestNtPathLength diff --git a/libc/nt/ntdll/RtlGetNativeSystemInformation.S b/libc/nt/ntdll/RtlGetNativeSystemInformation.S deleted file mode 100644 index 7a227f762..000000000 --- a/libc/nt/ntdll/RtlGetNativeSystemInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetNativeSystemInformation,RtlGetNativeSystemInformation diff --git a/libc/nt/ntdll/RtlGetNextEntryHashTable.S b/libc/nt/ntdll/RtlGetNextEntryHashTable.S deleted file mode 100644 index e27481280..000000000 --- a/libc/nt/ntdll/RtlGetNextEntryHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetNextEntryHashTable,RtlGetNextEntryHashTable diff --git a/libc/nt/ntdll/RtlGetNextUmsListItem.S b/libc/nt/ntdll/RtlGetNextUmsListItem.S deleted file mode 100644 index 0335b9066..000000000 --- a/libc/nt/ntdll/RtlGetNextUmsListItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetNextUmsListItem,RtlGetNextUmsListItem diff --git a/libc/nt/ntdll/RtlGetNonVolatileToken.S b/libc/nt/ntdll/RtlGetNonVolatileToken.S deleted file mode 100644 index 18cd9531d..000000000 --- a/libc/nt/ntdll/RtlGetNonVolatileToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetNonVolatileToken,RtlGetNonVolatileToken diff --git a/libc/nt/ntdll/RtlGetNtGlobalFlags.S b/libc/nt/ntdll/RtlGetNtGlobalFlags.S deleted file mode 100644 index 9bc52cc65..000000000 --- a/libc/nt/ntdll/RtlGetNtGlobalFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetNtGlobalFlags,RtlGetNtGlobalFlags diff --git a/libc/nt/ntdll/RtlGetNtProductType.S b/libc/nt/ntdll/RtlGetNtProductType.S deleted file mode 100644 index 4d9bb0a9a..000000000 --- a/libc/nt/ntdll/RtlGetNtProductType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetNtProductType,RtlGetNtProductType diff --git a/libc/nt/ntdll/RtlGetNtSystemRoot.S b/libc/nt/ntdll/RtlGetNtSystemRoot.S deleted file mode 100644 index 5deb1caef..000000000 --- a/libc/nt/ntdll/RtlGetNtSystemRoot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetNtSystemRoot,RtlGetNtSystemRoot diff --git a/libc/nt/ntdll/RtlGetNtVersionNumbers.S b/libc/nt/ntdll/RtlGetNtVersionNumbers.S deleted file mode 100644 index d92fef59e..000000000 --- a/libc/nt/ntdll/RtlGetNtVersionNumbers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetNtVersionNumbers,RtlGetNtVersionNumbers diff --git a/libc/nt/ntdll/RtlGetOwnerSecurityDescriptor.S b/libc/nt/ntdll/RtlGetOwnerSecurityDescriptor.S deleted file mode 100644 index e17ee5a45..000000000 --- a/libc/nt/ntdll/RtlGetOwnerSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetOwnerSecurityDescriptor,RtlGetOwnerSecurityDescriptor diff --git a/libc/nt/ntdll/RtlGetParentLocaleName.S b/libc/nt/ntdll/RtlGetParentLocaleName.S deleted file mode 100644 index a87684892..000000000 --- a/libc/nt/ntdll/RtlGetParentLocaleName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetParentLocaleName,RtlGetParentLocaleName diff --git a/libc/nt/ntdll/RtlGetPersistedStateLocation.S b/libc/nt/ntdll/RtlGetPersistedStateLocation.S deleted file mode 100644 index 689caeaa3..000000000 --- a/libc/nt/ntdll/RtlGetPersistedStateLocation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetPersistedStateLocation,RtlGetPersistedStateLocation diff --git a/libc/nt/ntdll/RtlGetProcessPreferredUILanguages.S b/libc/nt/ntdll/RtlGetProcessPreferredUILanguages.S deleted file mode 100644 index 4dca3684f..000000000 --- a/libc/nt/ntdll/RtlGetProcessPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetProcessPreferredUILanguages,RtlGetProcessPreferredUILanguages diff --git a/libc/nt/ntdll/RtlGetProductInfo.S b/libc/nt/ntdll/RtlGetProductInfo.S deleted file mode 100644 index 1001bf930..000000000 --- a/libc/nt/ntdll/RtlGetProductInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetProductInfo,RtlGetProductInfo diff --git a/libc/nt/ntdll/RtlGetSaclSecurityDescriptor.S b/libc/nt/ntdll/RtlGetSaclSecurityDescriptor.S deleted file mode 100644 index 5f79589ec..000000000 --- a/libc/nt/ntdll/RtlGetSaclSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSaclSecurityDescriptor,RtlGetSaclSecurityDescriptor diff --git a/libc/nt/ntdll/RtlGetSearchPath.S b/libc/nt/ntdll/RtlGetSearchPath.S deleted file mode 100644 index aebf76e42..000000000 --- a/libc/nt/ntdll/RtlGetSearchPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSearchPath,RtlGetSearchPath diff --git a/libc/nt/ntdll/RtlGetSecurityDescriptorRMControl.S b/libc/nt/ntdll/RtlGetSecurityDescriptorRMControl.S deleted file mode 100644 index eec6943b3..000000000 --- a/libc/nt/ntdll/RtlGetSecurityDescriptorRMControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSecurityDescriptorRMControl,RtlGetSecurityDescriptorRMControl diff --git a/libc/nt/ntdll/RtlGetSessionProperties.S b/libc/nt/ntdll/RtlGetSessionProperties.S deleted file mode 100644 index 9e2817859..000000000 --- a/libc/nt/ntdll/RtlGetSessionProperties.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSessionProperties,RtlGetSessionProperties diff --git a/libc/nt/ntdll/RtlGetSetBootStatusData.S b/libc/nt/ntdll/RtlGetSetBootStatusData.S deleted file mode 100644 index 976d17758..000000000 --- a/libc/nt/ntdll/RtlGetSetBootStatusData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSetBootStatusData,RtlGetSetBootStatusData diff --git a/libc/nt/ntdll/RtlGetSuiteMask.S b/libc/nt/ntdll/RtlGetSuiteMask.S deleted file mode 100644 index 2662d7869..000000000 --- a/libc/nt/ntdll/RtlGetSuiteMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSuiteMask,RtlGetSuiteMask diff --git a/libc/nt/ntdll/RtlGetSystemBootStatus.S b/libc/nt/ntdll/RtlGetSystemBootStatus.S deleted file mode 100644 index 714c54edb..000000000 --- a/libc/nt/ntdll/RtlGetSystemBootStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSystemBootStatus,RtlGetSystemBootStatus diff --git a/libc/nt/ntdll/RtlGetSystemBootStatusEx.S b/libc/nt/ntdll/RtlGetSystemBootStatusEx.S deleted file mode 100644 index 708cd8afe..000000000 --- a/libc/nt/ntdll/RtlGetSystemBootStatusEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSystemBootStatusEx,RtlGetSystemBootStatusEx diff --git a/libc/nt/ntdll/RtlGetSystemPreferredUILanguages.S b/libc/nt/ntdll/RtlGetSystemPreferredUILanguages.S deleted file mode 100644 index 84478186a..000000000 --- a/libc/nt/ntdll/RtlGetSystemPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSystemPreferredUILanguages,RtlGetSystemPreferredUILanguages diff --git a/libc/nt/ntdll/RtlGetSystemTimePrecise.S b/libc/nt/ntdll/RtlGetSystemTimePrecise.S deleted file mode 100644 index a1ca3e470..000000000 --- a/libc/nt/ntdll/RtlGetSystemTimePrecise.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetSystemTimePrecise,RtlGetSystemTimePrecise diff --git a/libc/nt/ntdll/RtlGetThreadErrorMode.S b/libc/nt/ntdll/RtlGetThreadErrorMode.S deleted file mode 100644 index a52b53b43..000000000 --- a/libc/nt/ntdll/RtlGetThreadErrorMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetThreadErrorMode,RtlGetThreadErrorMode diff --git a/libc/nt/ntdll/RtlGetThreadLangIdByIndex.S b/libc/nt/ntdll/RtlGetThreadLangIdByIndex.S deleted file mode 100644 index e6370d022..000000000 --- a/libc/nt/ntdll/RtlGetThreadLangIdByIndex.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetThreadLangIdByIndex,RtlGetThreadLangIdByIndex diff --git a/libc/nt/ntdll/RtlGetThreadPreferredUILanguages.S b/libc/nt/ntdll/RtlGetThreadPreferredUILanguages.S deleted file mode 100644 index f3153efc6..000000000 --- a/libc/nt/ntdll/RtlGetThreadPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetThreadPreferredUILanguages,RtlGetThreadPreferredUILanguages diff --git a/libc/nt/ntdll/RtlGetThreadWorkOnBehalfTicket.S b/libc/nt/ntdll/RtlGetThreadWorkOnBehalfTicket.S deleted file mode 100644 index aec8efe1d..000000000 --- a/libc/nt/ntdll/RtlGetThreadWorkOnBehalfTicket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetThreadWorkOnBehalfTicket,RtlGetThreadWorkOnBehalfTicket diff --git a/libc/nt/ntdll/RtlGetTokenNamedObjectPath.S b/libc/nt/ntdll/RtlGetTokenNamedObjectPath.S deleted file mode 100644 index 15c1eabde..000000000 --- a/libc/nt/ntdll/RtlGetTokenNamedObjectPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetTokenNamedObjectPath,RtlGetTokenNamedObjectPath diff --git a/libc/nt/ntdll/RtlGetUILanguageInfo.S b/libc/nt/ntdll/RtlGetUILanguageInfo.S deleted file mode 100644 index df47a32f2..000000000 --- a/libc/nt/ntdll/RtlGetUILanguageInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetUILanguageInfo,RtlGetUILanguageInfo diff --git a/libc/nt/ntdll/RtlGetUmsCompletionListEvent.S b/libc/nt/ntdll/RtlGetUmsCompletionListEvent.S deleted file mode 100644 index 38b3709b3..000000000 --- a/libc/nt/ntdll/RtlGetUmsCompletionListEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetUmsCompletionListEvent,RtlGetUmsCompletionListEvent diff --git a/libc/nt/ntdll/RtlGetUnloadEventTrace.S b/libc/nt/ntdll/RtlGetUnloadEventTrace.S deleted file mode 100644 index 8c03ad637..000000000 --- a/libc/nt/ntdll/RtlGetUnloadEventTrace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetUnloadEventTrace,RtlGetUnloadEventTrace diff --git a/libc/nt/ntdll/RtlGetUnloadEventTraceEx.S b/libc/nt/ntdll/RtlGetUnloadEventTraceEx.S deleted file mode 100644 index 8b954cec3..000000000 --- a/libc/nt/ntdll/RtlGetUnloadEventTraceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetUnloadEventTraceEx,RtlGetUnloadEventTraceEx diff --git a/libc/nt/ntdll/RtlGetUserInfoHeap.S b/libc/nt/ntdll/RtlGetUserInfoHeap.S deleted file mode 100644 index 004333c2f..000000000 --- a/libc/nt/ntdll/RtlGetUserInfoHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetUserInfoHeap,RtlGetUserInfoHeap diff --git a/libc/nt/ntdll/RtlGetUserPreferredUILanguages.S b/libc/nt/ntdll/RtlGetUserPreferredUILanguages.S deleted file mode 100644 index 5cb15877b..000000000 --- a/libc/nt/ntdll/RtlGetUserPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetUserPreferredUILanguages,RtlGetUserPreferredUILanguages diff --git a/libc/nt/ntdll/RtlGetVersion.S b/libc/nt/ntdll/RtlGetVersion.S deleted file mode 100644 index f789f3e53..000000000 --- a/libc/nt/ntdll/RtlGetVersion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGetVersion,RtlGetVersion diff --git a/libc/nt/ntdll/RtlGrowFunctionTable.S b/libc/nt/ntdll/RtlGrowFunctionTable.S deleted file mode 100644 index da6916890..000000000 --- a/libc/nt/ntdll/RtlGrowFunctionTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGrowFunctionTable,RtlGrowFunctionTable diff --git a/libc/nt/ntdll/RtlGuardCheckLongJumpTarget.S b/libc/nt/ntdll/RtlGuardCheckLongJumpTarget.S deleted file mode 100644 index 903766a22..000000000 --- a/libc/nt/ntdll/RtlGuardCheckLongJumpTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlGuardCheckLongJumpTarget,RtlGuardCheckLongJumpTarget diff --git a/libc/nt/ntdll/RtlHashUnicodeString.S b/libc/nt/ntdll/RtlHashUnicodeString.S deleted file mode 100644 index 66e517df1..000000000 --- a/libc/nt/ntdll/RtlHashUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlHashUnicodeString,RtlHashUnicodeString diff --git a/libc/nt/ntdll/RtlHeapTrkInitialize.S b/libc/nt/ntdll/RtlHeapTrkInitialize.S deleted file mode 100644 index fadcf44e8..000000000 --- a/libc/nt/ntdll/RtlHeapTrkInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlHeapTrkInitialize,RtlHeapTrkInitialize diff --git a/libc/nt/ntdll/RtlIdentifierAuthoritySid.S b/libc/nt/ntdll/RtlIdentifierAuthoritySid.S deleted file mode 100644 index 998b163c4..000000000 --- a/libc/nt/ntdll/RtlIdentifierAuthoritySid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIdentifierAuthoritySid,RtlIdentifierAuthoritySid diff --git a/libc/nt/ntdll/RtlIdnToAscii.S b/libc/nt/ntdll/RtlIdnToAscii.S deleted file mode 100644 index 3b10e3c4b..000000000 --- a/libc/nt/ntdll/RtlIdnToAscii.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIdnToAscii,RtlIdnToAscii diff --git a/libc/nt/ntdll/RtlIdnToNameprepUnicode.S b/libc/nt/ntdll/RtlIdnToNameprepUnicode.S deleted file mode 100644 index 43518e85f..000000000 --- a/libc/nt/ntdll/RtlIdnToNameprepUnicode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIdnToNameprepUnicode,RtlIdnToNameprepUnicode diff --git a/libc/nt/ntdll/RtlIdnToUnicode.S b/libc/nt/ntdll/RtlIdnToUnicode.S deleted file mode 100644 index 356ef0530..000000000 --- a/libc/nt/ntdll/RtlIdnToUnicode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIdnToUnicode,RtlIdnToUnicode diff --git a/libc/nt/ntdll/RtlImageDirectoryEntryToData.S b/libc/nt/ntdll/RtlImageDirectoryEntryToData.S deleted file mode 100644 index 50a0cafe6..000000000 --- a/libc/nt/ntdll/RtlImageDirectoryEntryToData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlImageDirectoryEntryToData,RtlImageDirectoryEntryToData diff --git a/libc/nt/ntdll/RtlImageNtHeader.S b/libc/nt/ntdll/RtlImageNtHeader.S deleted file mode 100644 index 253158044..000000000 --- a/libc/nt/ntdll/RtlImageNtHeader.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlImageNtHeader,RtlImageNtHeader diff --git a/libc/nt/ntdll/RtlImageNtHeaderEx.S b/libc/nt/ntdll/RtlImageNtHeaderEx.S deleted file mode 100644 index 853b9426f..000000000 --- a/libc/nt/ntdll/RtlImageNtHeaderEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlImageNtHeaderEx,RtlImageNtHeaderEx diff --git a/libc/nt/ntdll/RtlImageRvaToSection.S b/libc/nt/ntdll/RtlImageRvaToSection.S deleted file mode 100644 index a087e4f32..000000000 --- a/libc/nt/ntdll/RtlImageRvaToSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlImageRvaToSection,RtlImageRvaToSection diff --git a/libc/nt/ntdll/RtlImageRvaToVa.S b/libc/nt/ntdll/RtlImageRvaToVa.S deleted file mode 100644 index fd254da7a..000000000 --- a/libc/nt/ntdll/RtlImageRvaToVa.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlImageRvaToVa,RtlImageRvaToVa diff --git a/libc/nt/ntdll/RtlImpersonateSelf.S b/libc/nt/ntdll/RtlImpersonateSelf.S deleted file mode 100644 index c916b3c7d..000000000 --- a/libc/nt/ntdll/RtlImpersonateSelf.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlImpersonateSelf,RtlImpersonateSelf diff --git a/libc/nt/ntdll/RtlImpersonateSelfEx.S b/libc/nt/ntdll/RtlImpersonateSelfEx.S deleted file mode 100644 index 230cd902c..000000000 --- a/libc/nt/ntdll/RtlImpersonateSelfEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlImpersonateSelfEx,RtlImpersonateSelfEx diff --git a/libc/nt/ntdll/RtlIncrementCorrelationVector.S b/libc/nt/ntdll/RtlIncrementCorrelationVector.S deleted file mode 100644 index f9109bc95..000000000 --- a/libc/nt/ntdll/RtlIncrementCorrelationVector.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIncrementCorrelationVector,RtlIncrementCorrelationVector diff --git a/libc/nt/ntdll/RtlInitAnsiString.S b/libc/nt/ntdll/RtlInitAnsiString.S deleted file mode 100644 index 6d06992f0..000000000 --- a/libc/nt/ntdll/RtlInitAnsiString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitAnsiString,RtlInitAnsiString diff --git a/libc/nt/ntdll/RtlInitAnsiStringEx.S b/libc/nt/ntdll/RtlInitAnsiStringEx.S deleted file mode 100644 index c50096bc9..000000000 --- a/libc/nt/ntdll/RtlInitAnsiStringEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitAnsiStringEx,RtlInitAnsiStringEx diff --git a/libc/nt/ntdll/RtlInitBarrier.S b/libc/nt/ntdll/RtlInitBarrier.S deleted file mode 100644 index dc1816f2d..000000000 --- a/libc/nt/ntdll/RtlInitBarrier.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitBarrier,RtlInitBarrier diff --git a/libc/nt/ntdll/RtlInitCodePageTable.S b/libc/nt/ntdll/RtlInitCodePageTable.S deleted file mode 100644 index 64b56df99..000000000 --- a/libc/nt/ntdll/RtlInitCodePageTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitCodePageTable,RtlInitCodePageTable diff --git a/libc/nt/ntdll/RtlInitEnumerationHashTable.S b/libc/nt/ntdll/RtlInitEnumerationHashTable.S deleted file mode 100644 index 79046e786..000000000 --- a/libc/nt/ntdll/RtlInitEnumerationHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitEnumerationHashTable,RtlInitEnumerationHashTable diff --git a/libc/nt/ntdll/RtlInitMemoryStream.S b/libc/nt/ntdll/RtlInitMemoryStream.S deleted file mode 100644 index dc78a1fb2..000000000 --- a/libc/nt/ntdll/RtlInitMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitMemoryStream,RtlInitMemoryStream diff --git a/libc/nt/ntdll/RtlInitNlsTables.S b/libc/nt/ntdll/RtlInitNlsTables.S deleted file mode 100644 index 1556fea66..000000000 --- a/libc/nt/ntdll/RtlInitNlsTables.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitNlsTables,RtlInitNlsTables diff --git a/libc/nt/ntdll/RtlInitOutOfProcessMemoryStream.S b/libc/nt/ntdll/RtlInitOutOfProcessMemoryStream.S deleted file mode 100644 index 165614e77..000000000 --- a/libc/nt/ntdll/RtlInitOutOfProcessMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitOutOfProcessMemoryStream,RtlInitOutOfProcessMemoryStream diff --git a/libc/nt/ntdll/RtlInitString.S b/libc/nt/ntdll/RtlInitString.S deleted file mode 100644 index e01938364..000000000 --- a/libc/nt/ntdll/RtlInitString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitString,RtlInitString diff --git a/libc/nt/ntdll/RtlInitStringEx.S b/libc/nt/ntdll/RtlInitStringEx.S deleted file mode 100644 index c077c6835..000000000 --- a/libc/nt/ntdll/RtlInitStringEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitStringEx,RtlInitStringEx diff --git a/libc/nt/ntdll/RtlInitStrongEnumerationHashTable.S b/libc/nt/ntdll/RtlInitStrongEnumerationHashTable.S deleted file mode 100644 index 45a6b1bc2..000000000 --- a/libc/nt/ntdll/RtlInitStrongEnumerationHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitStrongEnumerationHashTable,RtlInitStrongEnumerationHashTable diff --git a/libc/nt/ntdll/RtlInitUnicodeStringEx.S b/libc/nt/ntdll/RtlInitUnicodeStringEx.S deleted file mode 100644 index 2db09efc2..000000000 --- a/libc/nt/ntdll/RtlInitUnicodeStringEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitUnicodeStringEx,RtlInitUnicodeStringEx diff --git a/libc/nt/ntdll/RtlInitWeakEnumerationHashTable.S b/libc/nt/ntdll/RtlInitWeakEnumerationHashTable.S deleted file mode 100644 index 95d6bf091..000000000 --- a/libc/nt/ntdll/RtlInitWeakEnumerationHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitWeakEnumerationHashTable,RtlInitWeakEnumerationHashTable diff --git a/libc/nt/ntdll/RtlInitializeAtomPackage.S b/libc/nt/ntdll/RtlInitializeAtomPackage.S deleted file mode 100644 index 7c8c7952f..000000000 --- a/libc/nt/ntdll/RtlInitializeAtomPackage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeAtomPackage,RtlInitializeAtomPackage diff --git a/libc/nt/ntdll/RtlInitializeBitMap.S b/libc/nt/ntdll/RtlInitializeBitMap.S deleted file mode 100644 index 0a67ce781..000000000 --- a/libc/nt/ntdll/RtlInitializeBitMap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeBitMap,RtlInitializeBitMap diff --git a/libc/nt/ntdll/RtlInitializeBitMapEx.S b/libc/nt/ntdll/RtlInitializeBitMapEx.S deleted file mode 100644 index 11d6c1346..000000000 --- a/libc/nt/ntdll/RtlInitializeBitMapEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeBitMapEx,RtlInitializeBitMapEx diff --git a/libc/nt/ntdll/RtlInitializeConditionVariable.S b/libc/nt/ntdll/RtlInitializeConditionVariable.S deleted file mode 100644 index 5ce69856e..000000000 --- a/libc/nt/ntdll/RtlInitializeConditionVariable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeConditionVariable,RtlInitializeConditionVariable diff --git a/libc/nt/ntdll/RtlInitializeContext.S b/libc/nt/ntdll/RtlInitializeContext.S deleted file mode 100644 index a538b8c8d..000000000 --- a/libc/nt/ntdll/RtlInitializeContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeContext,RtlInitializeContext diff --git a/libc/nt/ntdll/RtlInitializeCorrelationVector.S b/libc/nt/ntdll/RtlInitializeCorrelationVector.S deleted file mode 100644 index 219eefa80..000000000 --- a/libc/nt/ntdll/RtlInitializeCorrelationVector.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeCorrelationVector,RtlInitializeCorrelationVector diff --git a/libc/nt/ntdll/RtlInitializeCriticalSectionAndSpinCount.S b/libc/nt/ntdll/RtlInitializeCriticalSectionAndSpinCount.S deleted file mode 100644 index 392a452c9..000000000 --- a/libc/nt/ntdll/RtlInitializeCriticalSectionAndSpinCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeCriticalSectionAndSpinCount,RtlInitializeCriticalSectionAndSpinCount diff --git a/libc/nt/ntdll/RtlInitializeCriticalSectionEx.S b/libc/nt/ntdll/RtlInitializeCriticalSectionEx.S deleted file mode 100644 index 4ee27e9f0..000000000 --- a/libc/nt/ntdll/RtlInitializeCriticalSectionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeCriticalSectionEx,RtlInitializeCriticalSectionEx diff --git a/libc/nt/ntdll/RtlInitializeExtendedContext.S b/libc/nt/ntdll/RtlInitializeExtendedContext.S deleted file mode 100644 index 391fb3adc..000000000 --- a/libc/nt/ntdll/RtlInitializeExtendedContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeExtendedContext,RtlInitializeExtendedContext diff --git a/libc/nt/ntdll/RtlInitializeGenericTable.S b/libc/nt/ntdll/RtlInitializeGenericTable.S deleted file mode 100644 index 36f38f528..000000000 --- a/libc/nt/ntdll/RtlInitializeGenericTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeGenericTable,RtlInitializeGenericTable diff --git a/libc/nt/ntdll/RtlInitializeGenericTableAvl.S b/libc/nt/ntdll/RtlInitializeGenericTableAvl.S deleted file mode 100644 index 3d53d72e4..000000000 --- a/libc/nt/ntdll/RtlInitializeGenericTableAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeGenericTableAvl,RtlInitializeGenericTableAvl diff --git a/libc/nt/ntdll/RtlInitializeHandleTable.S b/libc/nt/ntdll/RtlInitializeHandleTable.S deleted file mode 100644 index eb3a7a189..000000000 --- a/libc/nt/ntdll/RtlInitializeHandleTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeHandleTable,RtlInitializeHandleTable diff --git a/libc/nt/ntdll/RtlInitializeNtUserPfn.S b/libc/nt/ntdll/RtlInitializeNtUserPfn.S deleted file mode 100644 index f17ca5908..000000000 --- a/libc/nt/ntdll/RtlInitializeNtUserPfn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeNtUserPfn,RtlInitializeNtUserPfn diff --git a/libc/nt/ntdll/RtlInitializeRXact.S b/libc/nt/ntdll/RtlInitializeRXact.S deleted file mode 100644 index f31beb1c9..000000000 --- a/libc/nt/ntdll/RtlInitializeRXact.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeRXact,RtlInitializeRXact diff --git a/libc/nt/ntdll/RtlInitializeResource.S b/libc/nt/ntdll/RtlInitializeResource.S deleted file mode 100644 index 998efb502..000000000 --- a/libc/nt/ntdll/RtlInitializeResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeResource,RtlInitializeResource diff --git a/libc/nt/ntdll/RtlInitializeSListHead.S b/libc/nt/ntdll/RtlInitializeSListHead.S deleted file mode 100644 index 1de4f61df..000000000 --- a/libc/nt/ntdll/RtlInitializeSListHead.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeSListHead,RtlInitializeSListHead diff --git a/libc/nt/ntdll/RtlInitializeSRWLock.S b/libc/nt/ntdll/RtlInitializeSRWLock.S deleted file mode 100644 index 91fa9bd35..000000000 --- a/libc/nt/ntdll/RtlInitializeSRWLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeSRWLock,RtlInitializeSRWLock diff --git a/libc/nt/ntdll/RtlInitializeSid.S b/libc/nt/ntdll/RtlInitializeSid.S deleted file mode 100644 index c9a0e2bb1..000000000 --- a/libc/nt/ntdll/RtlInitializeSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeSid,RtlInitializeSid diff --git a/libc/nt/ntdll/RtlInitializeSidEx.S b/libc/nt/ntdll/RtlInitializeSidEx.S deleted file mode 100644 index cfc50b4b9..000000000 --- a/libc/nt/ntdll/RtlInitializeSidEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInitializeSidEx,RtlInitializeSidEx diff --git a/libc/nt/ntdll/RtlInsertElementGenericTable.S b/libc/nt/ntdll/RtlInsertElementGenericTable.S deleted file mode 100644 index 2368dcd9a..000000000 --- a/libc/nt/ntdll/RtlInsertElementGenericTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInsertElementGenericTable,RtlInsertElementGenericTable diff --git a/libc/nt/ntdll/RtlInsertElementGenericTableAvl.S b/libc/nt/ntdll/RtlInsertElementGenericTableAvl.S deleted file mode 100644 index eb7ccfb9f..000000000 --- a/libc/nt/ntdll/RtlInsertElementGenericTableAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInsertElementGenericTableAvl,RtlInsertElementGenericTableAvl diff --git a/libc/nt/ntdll/RtlInsertElementGenericTableFull.S b/libc/nt/ntdll/RtlInsertElementGenericTableFull.S deleted file mode 100644 index 3efa52a4e..000000000 --- a/libc/nt/ntdll/RtlInsertElementGenericTableFull.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInsertElementGenericTableFull,RtlInsertElementGenericTableFull diff --git a/libc/nt/ntdll/RtlInsertElementGenericTableFullAvl.S b/libc/nt/ntdll/RtlInsertElementGenericTableFullAvl.S deleted file mode 100644 index e7573b794..000000000 --- a/libc/nt/ntdll/RtlInsertElementGenericTableFullAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInsertElementGenericTableFullAvl,RtlInsertElementGenericTableFullAvl diff --git a/libc/nt/ntdll/RtlInsertEntryHashTable.S b/libc/nt/ntdll/RtlInsertEntryHashTable.S deleted file mode 100644 index cfe30fc4c..000000000 --- a/libc/nt/ntdll/RtlInsertEntryHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInsertEntryHashTable,RtlInsertEntryHashTable diff --git a/libc/nt/ntdll/RtlInstallFunctionTableCallback.S b/libc/nt/ntdll/RtlInstallFunctionTableCallback.S deleted file mode 100644 index 1bba97481..000000000 --- a/libc/nt/ntdll/RtlInstallFunctionTableCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInstallFunctionTableCallback,RtlInstallFunctionTableCallback diff --git a/libc/nt/ntdll/RtlInt64ToUnicodeString.S b/libc/nt/ntdll/RtlInt64ToUnicodeString.S deleted file mode 100644 index deb7e922c..000000000 --- a/libc/nt/ntdll/RtlInt64ToUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInt64ToUnicodeString,RtlInt64ToUnicodeString diff --git a/libc/nt/ntdll/RtlIntegerToChar.S b/libc/nt/ntdll/RtlIntegerToChar.S deleted file mode 100644 index 911512856..000000000 --- a/libc/nt/ntdll/RtlIntegerToChar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIntegerToChar,RtlIntegerToChar diff --git a/libc/nt/ntdll/RtlIntegerToUnicodeString.S b/libc/nt/ntdll/RtlIntegerToUnicodeString.S deleted file mode 100644 index acffffe87..000000000 --- a/libc/nt/ntdll/RtlIntegerToUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIntegerToUnicodeString,RtlIntegerToUnicodeString diff --git a/libc/nt/ntdll/RtlInterlockedClearBitRun.S b/libc/nt/ntdll/RtlInterlockedClearBitRun.S deleted file mode 100644 index 8bf063982..000000000 --- a/libc/nt/ntdll/RtlInterlockedClearBitRun.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInterlockedClearBitRun,RtlInterlockedClearBitRun diff --git a/libc/nt/ntdll/RtlInterlockedFlushSList.S b/libc/nt/ntdll/RtlInterlockedFlushSList.S deleted file mode 100644 index 1efc7639d..000000000 --- a/libc/nt/ntdll/RtlInterlockedFlushSList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInterlockedFlushSList,RtlInterlockedFlushSList diff --git a/libc/nt/ntdll/RtlInterlockedPopEntrySList.S b/libc/nt/ntdll/RtlInterlockedPopEntrySList.S deleted file mode 100644 index 2bcb44437..000000000 --- a/libc/nt/ntdll/RtlInterlockedPopEntrySList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInterlockedPopEntrySList,RtlInterlockedPopEntrySList diff --git a/libc/nt/ntdll/RtlInterlockedPushEntrySList.S b/libc/nt/ntdll/RtlInterlockedPushEntrySList.S deleted file mode 100644 index 7640bad51..000000000 --- a/libc/nt/ntdll/RtlInterlockedPushEntrySList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInterlockedPushEntrySList,RtlInterlockedPushEntrySList diff --git a/libc/nt/ntdll/RtlInterlockedPushListSList.S b/libc/nt/ntdll/RtlInterlockedPushListSList.S deleted file mode 100644 index 123a827cc..000000000 --- a/libc/nt/ntdll/RtlInterlockedPushListSList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInterlockedPushListSList,RtlInterlockedPushListSList diff --git a/libc/nt/ntdll/RtlInterlockedPushListSListEx.S b/libc/nt/ntdll/RtlInterlockedPushListSListEx.S deleted file mode 100644 index ecae070e0..000000000 --- a/libc/nt/ntdll/RtlInterlockedPushListSListEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInterlockedPushListSListEx,RtlInterlockedPushListSListEx diff --git a/libc/nt/ntdll/RtlInterlockedSetBitRun.S b/libc/nt/ntdll/RtlInterlockedSetBitRun.S deleted file mode 100644 index d6a001673..000000000 --- a/libc/nt/ntdll/RtlInterlockedSetBitRun.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlInterlockedSetBitRun,RtlInterlockedSetBitRun diff --git a/libc/nt/ntdll/RtlIoDecodeMemIoResource.S b/libc/nt/ntdll/RtlIoDecodeMemIoResource.S deleted file mode 100644 index 40d1fe3de..000000000 --- a/libc/nt/ntdll/RtlIoDecodeMemIoResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIoDecodeMemIoResource,RtlIoDecodeMemIoResource diff --git a/libc/nt/ntdll/RtlIoEncodeMemIoResource.S b/libc/nt/ntdll/RtlIoEncodeMemIoResource.S deleted file mode 100644 index 96a8b2078..000000000 --- a/libc/nt/ntdll/RtlIoEncodeMemIoResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIoEncodeMemIoResource,RtlIoEncodeMemIoResource diff --git a/libc/nt/ntdll/RtlIpv4AddressToStringExW.S b/libc/nt/ntdll/RtlIpv4AddressToStringExW.S deleted file mode 100644 index 0eed8efaf..000000000 --- a/libc/nt/ntdll/RtlIpv4AddressToStringExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIpv4AddressToStringExW,RtlIpv4AddressToStringEx diff --git a/libc/nt/ntdll/RtlIpv4AddressToStringW.S b/libc/nt/ntdll/RtlIpv4AddressToStringW.S deleted file mode 100644 index 078016c69..000000000 --- a/libc/nt/ntdll/RtlIpv4AddressToStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIpv4AddressToStringW,RtlIpv4AddressToString diff --git a/libc/nt/ntdll/RtlIpv4StringToAddressExW.S b/libc/nt/ntdll/RtlIpv4StringToAddressExW.S deleted file mode 100644 index acd565ade..000000000 --- a/libc/nt/ntdll/RtlIpv4StringToAddressExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIpv4StringToAddressExW,RtlIpv4StringToAddressEx diff --git a/libc/nt/ntdll/RtlIpv4StringToAddressW.S b/libc/nt/ntdll/RtlIpv4StringToAddressW.S deleted file mode 100644 index cfcacd785..000000000 --- a/libc/nt/ntdll/RtlIpv4StringToAddressW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIpv4StringToAddressW,RtlIpv4StringToAddress diff --git a/libc/nt/ntdll/RtlIpv6AddressToStringExW.S b/libc/nt/ntdll/RtlIpv6AddressToStringExW.S deleted file mode 100644 index 5109fd699..000000000 --- a/libc/nt/ntdll/RtlIpv6AddressToStringExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIpv6AddressToStringExW,RtlIpv6AddressToStringEx diff --git a/libc/nt/ntdll/RtlIpv6AddressToStringW.S b/libc/nt/ntdll/RtlIpv6AddressToStringW.S deleted file mode 100644 index e4cc30e2a..000000000 --- a/libc/nt/ntdll/RtlIpv6AddressToStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIpv6AddressToStringW,RtlIpv6AddressToString diff --git a/libc/nt/ntdll/RtlIpv6StringToAddressExW.S b/libc/nt/ntdll/RtlIpv6StringToAddressExW.S deleted file mode 100644 index 179b66ce8..000000000 --- a/libc/nt/ntdll/RtlIpv6StringToAddressExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIpv6StringToAddressExW,RtlIpv6StringToAddressEx diff --git a/libc/nt/ntdll/RtlIpv6StringToAddressW.S b/libc/nt/ntdll/RtlIpv6StringToAddressW.S deleted file mode 100644 index 4911e1f69..000000000 --- a/libc/nt/ntdll/RtlIpv6StringToAddressW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIpv6StringToAddressW,RtlIpv6StringToAddress diff --git a/libc/nt/ntdll/RtlIsActivationContextActive.S b/libc/nt/ntdll/RtlIsActivationContextActive.S deleted file mode 100644 index 64fe3764c..000000000 --- a/libc/nt/ntdll/RtlIsActivationContextActive.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsActivationContextActive,RtlIsActivationContextActive diff --git a/libc/nt/ntdll/RtlIsCapabilitySid.S b/libc/nt/ntdll/RtlIsCapabilitySid.S deleted file mode 100644 index 59670ea9b..000000000 --- a/libc/nt/ntdll/RtlIsCapabilitySid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsCapabilitySid,RtlIsCapabilitySid diff --git a/libc/nt/ntdll/RtlIsCloudFilesPlaceholder.S b/libc/nt/ntdll/RtlIsCloudFilesPlaceholder.S deleted file mode 100644 index 937e10516..000000000 --- a/libc/nt/ntdll/RtlIsCloudFilesPlaceholder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsCloudFilesPlaceholder,RtlIsCloudFilesPlaceholder diff --git a/libc/nt/ntdll/RtlIsCriticalSectionLocked.S b/libc/nt/ntdll/RtlIsCriticalSectionLocked.S deleted file mode 100644 index 0f41d4088..000000000 --- a/libc/nt/ntdll/RtlIsCriticalSectionLocked.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsCriticalSectionLocked,RtlIsCriticalSectionLocked diff --git a/libc/nt/ntdll/RtlIsCriticalSectionLockedByThread.S b/libc/nt/ntdll/RtlIsCriticalSectionLockedByThread.S deleted file mode 100644 index 53f57d4b0..000000000 --- a/libc/nt/ntdll/RtlIsCriticalSectionLockedByThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsCriticalSectionLockedByThread,RtlIsCriticalSectionLockedByThread diff --git a/libc/nt/ntdll/RtlIsCurrentProcess.S b/libc/nt/ntdll/RtlIsCurrentProcess.S deleted file mode 100644 index 150655fec..000000000 --- a/libc/nt/ntdll/RtlIsCurrentProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsCurrentProcess,RtlIsCurrentProcess diff --git a/libc/nt/ntdll/RtlIsCurrentThread.S b/libc/nt/ntdll/RtlIsCurrentThread.S deleted file mode 100644 index b4d290c9b..000000000 --- a/libc/nt/ntdll/RtlIsCurrentThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsCurrentThread,RtlIsCurrentThread diff --git a/libc/nt/ntdll/RtlIsCurrentThreadAttachExempt.S b/libc/nt/ntdll/RtlIsCurrentThreadAttachExempt.S deleted file mode 100644 index 16b6b1948..000000000 --- a/libc/nt/ntdll/RtlIsCurrentThreadAttachExempt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsCurrentThreadAttachExempt,RtlIsCurrentThreadAttachExempt diff --git a/libc/nt/ntdll/RtlIsDosDeviceName_U.S b/libc/nt/ntdll/RtlIsDosDeviceName_U.S deleted file mode 100644 index acac7c359..000000000 --- a/libc/nt/ntdll/RtlIsDosDeviceName_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsDosDeviceName_U,RtlIsDosDeviceName_U diff --git a/libc/nt/ntdll/RtlIsElevatedRid.S b/libc/nt/ntdll/RtlIsElevatedRid.S deleted file mode 100644 index c79668c99..000000000 --- a/libc/nt/ntdll/RtlIsElevatedRid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsElevatedRid,RtlIsElevatedRid diff --git a/libc/nt/ntdll/RtlIsGenericTableEmpty.S b/libc/nt/ntdll/RtlIsGenericTableEmpty.S deleted file mode 100644 index ff48bb87f..000000000 --- a/libc/nt/ntdll/RtlIsGenericTableEmpty.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsGenericTableEmpty,RtlIsGenericTableEmpty diff --git a/libc/nt/ntdll/RtlIsGenericTableEmptyAvl.S b/libc/nt/ntdll/RtlIsGenericTableEmptyAvl.S deleted file mode 100644 index 06133d963..000000000 --- a/libc/nt/ntdll/RtlIsGenericTableEmptyAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsGenericTableEmptyAvl,RtlIsGenericTableEmptyAvl diff --git a/libc/nt/ntdll/RtlIsMultiSessionSku.S b/libc/nt/ntdll/RtlIsMultiSessionSku.S deleted file mode 100644 index 795feea6f..000000000 --- a/libc/nt/ntdll/RtlIsMultiSessionSku.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsMultiSessionSku,RtlIsMultiSessionSku diff --git a/libc/nt/ntdll/RtlIsMultiUsersInSessionSku.S b/libc/nt/ntdll/RtlIsMultiUsersInSessionSku.S deleted file mode 100644 index d83baf7fc..000000000 --- a/libc/nt/ntdll/RtlIsMultiUsersInSessionSku.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsMultiUsersInSessionSku,RtlIsMultiUsersInSessionSku diff --git a/libc/nt/ntdll/RtlIsNameInExpression.S b/libc/nt/ntdll/RtlIsNameInExpression.S deleted file mode 100644 index 727485ca5..000000000 --- a/libc/nt/ntdll/RtlIsNameInExpression.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsNameInExpression,RtlIsNameInExpression diff --git a/libc/nt/ntdll/RtlIsNameInUnUpcasedExpression.S b/libc/nt/ntdll/RtlIsNameInUnUpcasedExpression.S deleted file mode 100644 index 38bdb6917..000000000 --- a/libc/nt/ntdll/RtlIsNameInUnUpcasedExpression.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsNameInUnUpcasedExpression,RtlIsNameInUnUpcasedExpression diff --git a/libc/nt/ntdll/RtlIsNameLegalDOS8Dot3.S b/libc/nt/ntdll/RtlIsNameLegalDOS8Dot3.S deleted file mode 100644 index e63144b1f..000000000 --- a/libc/nt/ntdll/RtlIsNameLegalDOS8Dot3.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsNameLegalDOS8Dot3,RtlIsNameLegalDOS8Dot3 diff --git a/libc/nt/ntdll/RtlIsNonEmptyDirectoryReparsePointAllowed.S b/libc/nt/ntdll/RtlIsNonEmptyDirectoryReparsePointAllowed.S deleted file mode 100644 index 78dcf627b..000000000 --- a/libc/nt/ntdll/RtlIsNonEmptyDirectoryReparsePointAllowed.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsNonEmptyDirectoryReparsePointAllowed,RtlIsNonEmptyDirectoryReparsePointAllowed diff --git a/libc/nt/ntdll/RtlIsNormalizedString.S b/libc/nt/ntdll/RtlIsNormalizedString.S deleted file mode 100644 index e76df82d2..000000000 --- a/libc/nt/ntdll/RtlIsNormalizedString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsNormalizedString,RtlIsNormalizedString diff --git a/libc/nt/ntdll/RtlIsPackageSid.S b/libc/nt/ntdll/RtlIsPackageSid.S deleted file mode 100644 index 382157853..000000000 --- a/libc/nt/ntdll/RtlIsPackageSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsPackageSid,RtlIsPackageSid diff --git a/libc/nt/ntdll/RtlIsParentOfChildAppContainer.S b/libc/nt/ntdll/RtlIsParentOfChildAppContainer.S deleted file mode 100644 index 3452551b2..000000000 --- a/libc/nt/ntdll/RtlIsParentOfChildAppContainer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsParentOfChildAppContainer,RtlIsParentOfChildAppContainer diff --git a/libc/nt/ntdll/RtlIsPartialPlaceholder.S b/libc/nt/ntdll/RtlIsPartialPlaceholder.S deleted file mode 100644 index 3d33430da..000000000 --- a/libc/nt/ntdll/RtlIsPartialPlaceholder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsPartialPlaceholder,RtlIsPartialPlaceholder diff --git a/libc/nt/ntdll/RtlIsPartialPlaceholderFileHandle.S b/libc/nt/ntdll/RtlIsPartialPlaceholderFileHandle.S deleted file mode 100644 index 5ae15de4d..000000000 --- a/libc/nt/ntdll/RtlIsPartialPlaceholderFileHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsPartialPlaceholderFileHandle,RtlIsPartialPlaceholderFileHandle diff --git a/libc/nt/ntdll/RtlIsPartialPlaceholderFileInfo.S b/libc/nt/ntdll/RtlIsPartialPlaceholderFileInfo.S deleted file mode 100644 index 540053879..000000000 --- a/libc/nt/ntdll/RtlIsPartialPlaceholderFileInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsPartialPlaceholderFileInfo,RtlIsPartialPlaceholderFileInfo diff --git a/libc/nt/ntdll/RtlIsProcessorFeaturePresent.S b/libc/nt/ntdll/RtlIsProcessorFeaturePresent.S deleted file mode 100644 index d17fa223b..000000000 --- a/libc/nt/ntdll/RtlIsProcessorFeaturePresent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsProcessorFeaturePresent,RtlIsProcessorFeaturePresent diff --git a/libc/nt/ntdll/RtlIsStateSeparationEnabled.S b/libc/nt/ntdll/RtlIsStateSeparationEnabled.S deleted file mode 100644 index 68c40848d..000000000 --- a/libc/nt/ntdll/RtlIsStateSeparationEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsStateSeparationEnabled,RtlIsStateSeparationEnabled diff --git a/libc/nt/ntdll/RtlIsTextUnicode.S b/libc/nt/ntdll/RtlIsTextUnicode.S deleted file mode 100644 index 2075007bf..000000000 --- a/libc/nt/ntdll/RtlIsTextUnicode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsTextUnicode,RtlIsTextUnicode diff --git a/libc/nt/ntdll/RtlIsThreadWithinLoaderCallout.S b/libc/nt/ntdll/RtlIsThreadWithinLoaderCallout.S deleted file mode 100644 index 10f0b9978..000000000 --- a/libc/nt/ntdll/RtlIsThreadWithinLoaderCallout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsThreadWithinLoaderCallout,RtlIsThreadWithinLoaderCallout diff --git a/libc/nt/ntdll/RtlIsUntrustedObject.S b/libc/nt/ntdll/RtlIsUntrustedObject.S deleted file mode 100644 index 6b75f50c4..000000000 --- a/libc/nt/ntdll/RtlIsUntrustedObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsUntrustedObject,RtlIsUntrustedObject diff --git a/libc/nt/ntdll/RtlIsValidHandle.S b/libc/nt/ntdll/RtlIsValidHandle.S deleted file mode 100644 index f5177899d..000000000 --- a/libc/nt/ntdll/RtlIsValidHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsValidHandle,RtlIsValidHandle diff --git a/libc/nt/ntdll/RtlIsValidIndexHandle.S b/libc/nt/ntdll/RtlIsValidIndexHandle.S deleted file mode 100644 index b97622782..000000000 --- a/libc/nt/ntdll/RtlIsValidIndexHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsValidIndexHandle,RtlIsValidIndexHandle diff --git a/libc/nt/ntdll/RtlIsValidLocaleName.S b/libc/nt/ntdll/RtlIsValidLocaleName.S deleted file mode 100644 index 39f1ae10f..000000000 --- a/libc/nt/ntdll/RtlIsValidLocaleName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsValidLocaleName,RtlIsValidLocaleName diff --git a/libc/nt/ntdll/RtlIsValidProcessTrustLabelSid.S b/libc/nt/ntdll/RtlIsValidProcessTrustLabelSid.S deleted file mode 100644 index 0b062d8d1..000000000 --- a/libc/nt/ntdll/RtlIsValidProcessTrustLabelSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlIsValidProcessTrustLabelSid,RtlIsValidProcessTrustLabelSid diff --git a/libc/nt/ntdll/RtlKnownExceptionFilter.S b/libc/nt/ntdll/RtlKnownExceptionFilter.S deleted file mode 100644 index a4801d519..000000000 --- a/libc/nt/ntdll/RtlKnownExceptionFilter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlKnownExceptionFilter,RtlKnownExceptionFilter diff --git a/libc/nt/ntdll/RtlLCIDToCultureName.S b/libc/nt/ntdll/RtlLCIDToCultureName.S deleted file mode 100644 index 90dc41d93..000000000 --- a/libc/nt/ntdll/RtlLCIDToCultureName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLCIDToCultureName,RtlLCIDToCultureName diff --git a/libc/nt/ntdll/RtlLargeIntegerToChar.S b/libc/nt/ntdll/RtlLargeIntegerToChar.S deleted file mode 100644 index 0bf7e3f68..000000000 --- a/libc/nt/ntdll/RtlLargeIntegerToChar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLargeIntegerToChar,RtlLargeIntegerToChar diff --git a/libc/nt/ntdll/RtlLcidToLocaleName.S b/libc/nt/ntdll/RtlLcidToLocaleName.S deleted file mode 100644 index 3e7fe8493..000000000 --- a/libc/nt/ntdll/RtlLcidToLocaleName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLcidToLocaleName,RtlLcidToLocaleName diff --git a/libc/nt/ntdll/RtlLengthRequiredSid.S b/libc/nt/ntdll/RtlLengthRequiredSid.S deleted file mode 100644 index 9a5269513..000000000 --- a/libc/nt/ntdll/RtlLengthRequiredSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLengthRequiredSid,RtlLengthRequiredSid diff --git a/libc/nt/ntdll/RtlLengthSecurityDescriptor.S b/libc/nt/ntdll/RtlLengthSecurityDescriptor.S deleted file mode 100644 index c70fbeb2c..000000000 --- a/libc/nt/ntdll/RtlLengthSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLengthSecurityDescriptor,RtlLengthSecurityDescriptor diff --git a/libc/nt/ntdll/RtlLengthSid.S b/libc/nt/ntdll/RtlLengthSid.S deleted file mode 100644 index 18e7961c8..000000000 --- a/libc/nt/ntdll/RtlLengthSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLengthSid,RtlLengthSid diff --git a/libc/nt/ntdll/RtlLengthSidAsUnicodeString.S b/libc/nt/ntdll/RtlLengthSidAsUnicodeString.S deleted file mode 100644 index 0dd718292..000000000 --- a/libc/nt/ntdll/RtlLengthSidAsUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLengthSidAsUnicodeString,RtlLengthSidAsUnicodeString diff --git a/libc/nt/ntdll/RtlLoadString.S b/libc/nt/ntdll/RtlLoadString.S deleted file mode 100644 index 694c59dc4..000000000 --- a/libc/nt/ntdll/RtlLoadString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLoadString,RtlLoadString diff --git a/libc/nt/ntdll/RtlLocalTimeToSystemTime.S b/libc/nt/ntdll/RtlLocalTimeToSystemTime.S deleted file mode 100644 index 585cd0a4f..000000000 --- a/libc/nt/ntdll/RtlLocalTimeToSystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLocalTimeToSystemTime,RtlLocalTimeToSystemTime diff --git a/libc/nt/ntdll/RtlLocaleNameToLcid.S b/libc/nt/ntdll/RtlLocaleNameToLcid.S deleted file mode 100644 index 6c9a8a79e..000000000 --- a/libc/nt/ntdll/RtlLocaleNameToLcid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLocaleNameToLcid,RtlLocaleNameToLcid diff --git a/libc/nt/ntdll/RtlLocateExtendedFeature.S b/libc/nt/ntdll/RtlLocateExtendedFeature.S deleted file mode 100644 index 79aa8d5f5..000000000 --- a/libc/nt/ntdll/RtlLocateExtendedFeature.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLocateExtendedFeature,RtlLocateExtendedFeature diff --git a/libc/nt/ntdll/RtlLocateExtendedFeature2.S b/libc/nt/ntdll/RtlLocateExtendedFeature2.S deleted file mode 100644 index ff7448427..000000000 --- a/libc/nt/ntdll/RtlLocateExtendedFeature2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLocateExtendedFeature2,RtlLocateExtendedFeature2 diff --git a/libc/nt/ntdll/RtlLocateLegacyContext.S b/libc/nt/ntdll/RtlLocateLegacyContext.S deleted file mode 100644 index c92f719d3..000000000 --- a/libc/nt/ntdll/RtlLocateLegacyContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLocateLegacyContext,RtlLocateLegacyContext diff --git a/libc/nt/ntdll/RtlLockBootStatusData.S b/libc/nt/ntdll/RtlLockBootStatusData.S deleted file mode 100644 index 787d561d7..000000000 --- a/libc/nt/ntdll/RtlLockBootStatusData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLockBootStatusData,RtlLockBootStatusData diff --git a/libc/nt/ntdll/RtlLockCurrentThread.S b/libc/nt/ntdll/RtlLockCurrentThread.S deleted file mode 100644 index 240aa0314..000000000 --- a/libc/nt/ntdll/RtlLockCurrentThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLockCurrentThread,RtlLockCurrentThread diff --git a/libc/nt/ntdll/RtlLockMemoryBlockLookaside.S b/libc/nt/ntdll/RtlLockMemoryBlockLookaside.S deleted file mode 100644 index 7f0d3ad7e..000000000 --- a/libc/nt/ntdll/RtlLockMemoryBlockLookaside.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLockMemoryBlockLookaside,RtlLockMemoryBlockLookaside diff --git a/libc/nt/ntdll/RtlLockMemoryStreamRegion.S b/libc/nt/ntdll/RtlLockMemoryStreamRegion.S deleted file mode 100644 index d3fa78293..000000000 --- a/libc/nt/ntdll/RtlLockMemoryStreamRegion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLockMemoryStreamRegion,RtlLockMemoryStreamRegion diff --git a/libc/nt/ntdll/RtlLockMemoryZone.S b/libc/nt/ntdll/RtlLockMemoryZone.S deleted file mode 100644 index 0b909a092..000000000 --- a/libc/nt/ntdll/RtlLockMemoryZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLockMemoryZone,RtlLockMemoryZone diff --git a/libc/nt/ntdll/RtlLockModuleSection.S b/libc/nt/ntdll/RtlLockModuleSection.S deleted file mode 100644 index b09f6d872..000000000 --- a/libc/nt/ntdll/RtlLockModuleSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLockModuleSection,RtlLockModuleSection diff --git a/libc/nt/ntdll/RtlLogStackBackTrace.S b/libc/nt/ntdll/RtlLogStackBackTrace.S deleted file mode 100644 index c222878eb..000000000 --- a/libc/nt/ntdll/RtlLogStackBackTrace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLogStackBackTrace,RtlLogStackBackTrace diff --git a/libc/nt/ntdll/RtlLookupAtomInAtomTable.S b/libc/nt/ntdll/RtlLookupAtomInAtomTable.S deleted file mode 100644 index e8fab8a86..000000000 --- a/libc/nt/ntdll/RtlLookupAtomInAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupAtomInAtomTable,RtlLookupAtomInAtomTable diff --git a/libc/nt/ntdll/RtlLookupElementGenericTable.S b/libc/nt/ntdll/RtlLookupElementGenericTable.S deleted file mode 100644 index 3c75098c3..000000000 --- a/libc/nt/ntdll/RtlLookupElementGenericTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupElementGenericTable,RtlLookupElementGenericTable diff --git a/libc/nt/ntdll/RtlLookupElementGenericTableAvl.S b/libc/nt/ntdll/RtlLookupElementGenericTableAvl.S deleted file mode 100644 index cdbbec93f..000000000 --- a/libc/nt/ntdll/RtlLookupElementGenericTableAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupElementGenericTableAvl,RtlLookupElementGenericTableAvl diff --git a/libc/nt/ntdll/RtlLookupElementGenericTableFull.S b/libc/nt/ntdll/RtlLookupElementGenericTableFull.S deleted file mode 100644 index c0c95fdd9..000000000 --- a/libc/nt/ntdll/RtlLookupElementGenericTableFull.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupElementGenericTableFull,RtlLookupElementGenericTableFull diff --git a/libc/nt/ntdll/RtlLookupElementGenericTableFullAvl.S b/libc/nt/ntdll/RtlLookupElementGenericTableFullAvl.S deleted file mode 100644 index eb4bf0bf4..000000000 --- a/libc/nt/ntdll/RtlLookupElementGenericTableFullAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupElementGenericTableFullAvl,RtlLookupElementGenericTableFullAvl diff --git a/libc/nt/ntdll/RtlLookupEntryHashTable.S b/libc/nt/ntdll/RtlLookupEntryHashTable.S deleted file mode 100644 index 8e31cf385..000000000 --- a/libc/nt/ntdll/RtlLookupEntryHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupEntryHashTable,RtlLookupEntryHashTable diff --git a/libc/nt/ntdll/RtlLookupFirstMatchingElementGenericTableAvl.S b/libc/nt/ntdll/RtlLookupFirstMatchingElementGenericTableAvl.S deleted file mode 100644 index a3f61e0dc..000000000 --- a/libc/nt/ntdll/RtlLookupFirstMatchingElementGenericTableAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupFirstMatchingElementGenericTableAvl,RtlLookupFirstMatchingElementGenericTableAvl diff --git a/libc/nt/ntdll/RtlLookupFunctionEntry.S b/libc/nt/ntdll/RtlLookupFunctionEntry.S deleted file mode 100644 index 0f2be2fd2..000000000 --- a/libc/nt/ntdll/RtlLookupFunctionEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupFunctionEntry,RtlLookupFunctionEntry diff --git a/libc/nt/ntdll/RtlLookupFunctionTable.S b/libc/nt/ntdll/RtlLookupFunctionTable.S deleted file mode 100644 index 36d1dd4e2..000000000 --- a/libc/nt/ntdll/RtlLookupFunctionTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlLookupFunctionTable,RtlLookupFunctionTable diff --git a/libc/nt/ntdll/RtlMakeSelfRelativeSD.S b/libc/nt/ntdll/RtlMakeSelfRelativeSD.S deleted file mode 100644 index 663c9d815..000000000 --- a/libc/nt/ntdll/RtlMakeSelfRelativeSD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMakeSelfRelativeSD,RtlMakeSelfRelativeSD diff --git a/libc/nt/ntdll/RtlMapGenericMask.S b/libc/nt/ntdll/RtlMapGenericMask.S deleted file mode 100644 index 48a38f5dd..000000000 --- a/libc/nt/ntdll/RtlMapGenericMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMapGenericMask,RtlMapGenericMask diff --git a/libc/nt/ntdll/RtlMapSecurityErrorToNtStatus.S b/libc/nt/ntdll/RtlMapSecurityErrorToNtStatus.S deleted file mode 100644 index bf620ad6e..000000000 --- a/libc/nt/ntdll/RtlMapSecurityErrorToNtStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMapSecurityErrorToNtStatus,RtlMapSecurityErrorToNtStatus diff --git a/libc/nt/ntdll/RtlMoveMemory.S b/libc/nt/ntdll/RtlMoveMemory.S deleted file mode 100644 index c8f2e6ea5..000000000 --- a/libc/nt/ntdll/RtlMoveMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMoveMemory,RtlMoveMemory diff --git a/libc/nt/ntdll/RtlMultiAppendUnicodeStringBuffer.S b/libc/nt/ntdll/RtlMultiAppendUnicodeStringBuffer.S deleted file mode 100644 index e5bbefca0..000000000 --- a/libc/nt/ntdll/RtlMultiAppendUnicodeStringBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMultiAppendUnicodeStringBuffer,RtlMultiAppendUnicodeStringBuffer diff --git a/libc/nt/ntdll/RtlMultiByteToUnicodeN.S b/libc/nt/ntdll/RtlMultiByteToUnicodeN.S deleted file mode 100644 index c17664bb4..000000000 --- a/libc/nt/ntdll/RtlMultiByteToUnicodeN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMultiByteToUnicodeN,RtlMultiByteToUnicodeN diff --git a/libc/nt/ntdll/RtlMultiByteToUnicodeSize.S b/libc/nt/ntdll/RtlMultiByteToUnicodeSize.S deleted file mode 100644 index fe67c1f96..000000000 --- a/libc/nt/ntdll/RtlMultiByteToUnicodeSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMultiByteToUnicodeSize,RtlMultiByteToUnicodeSize diff --git a/libc/nt/ntdll/RtlMultipleAllocateHeap.S b/libc/nt/ntdll/RtlMultipleAllocateHeap.S deleted file mode 100644 index dbf268bb4..000000000 --- a/libc/nt/ntdll/RtlMultipleAllocateHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMultipleAllocateHeap,RtlMultipleAllocateHeap diff --git a/libc/nt/ntdll/RtlMultipleFreeHeap.S b/libc/nt/ntdll/RtlMultipleFreeHeap.S deleted file mode 100644 index ac117f6e8..000000000 --- a/libc/nt/ntdll/RtlMultipleFreeHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlMultipleFreeHeap,RtlMultipleFreeHeap diff --git a/libc/nt/ntdll/RtlNewInstanceSecurityObject.S b/libc/nt/ntdll/RtlNewInstanceSecurityObject.S deleted file mode 100644 index 20128fb86..000000000 --- a/libc/nt/ntdll/RtlNewInstanceSecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNewInstanceSecurityObject,RtlNewInstanceSecurityObject diff --git a/libc/nt/ntdll/RtlNewSecurityGrantedAccess.S b/libc/nt/ntdll/RtlNewSecurityGrantedAccess.S deleted file mode 100644 index ec1c885aa..000000000 --- a/libc/nt/ntdll/RtlNewSecurityGrantedAccess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNewSecurityGrantedAccess,RtlNewSecurityGrantedAccess diff --git a/libc/nt/ntdll/RtlNewSecurityObject.S b/libc/nt/ntdll/RtlNewSecurityObject.S deleted file mode 100644 index 6cada308e..000000000 --- a/libc/nt/ntdll/RtlNewSecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNewSecurityObject,RtlNewSecurityObject diff --git a/libc/nt/ntdll/RtlNewSecurityObjectEx.S b/libc/nt/ntdll/RtlNewSecurityObjectEx.S deleted file mode 100644 index 1c9ab45fa..000000000 --- a/libc/nt/ntdll/RtlNewSecurityObjectEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNewSecurityObjectEx,RtlNewSecurityObjectEx diff --git a/libc/nt/ntdll/RtlNewSecurityObjectWithMultipleInheritance.S b/libc/nt/ntdll/RtlNewSecurityObjectWithMultipleInheritance.S deleted file mode 100644 index 2f09ffa59..000000000 --- a/libc/nt/ntdll/RtlNewSecurityObjectWithMultipleInheritance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNewSecurityObjectWithMultipleInheritance,RtlNewSecurityObjectWithMultipleInheritance diff --git a/libc/nt/ntdll/RtlNormalizeProcessParams.S b/libc/nt/ntdll/RtlNormalizeProcessParams.S deleted file mode 100644 index c0b8891d4..000000000 --- a/libc/nt/ntdll/RtlNormalizeProcessParams.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNormalizeProcessParams,RtlNormalizeProcessParams diff --git a/libc/nt/ntdll/RtlNormalizeString.S b/libc/nt/ntdll/RtlNormalizeString.S deleted file mode 100644 index eb9cd81cf..000000000 --- a/libc/nt/ntdll/RtlNormalizeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNormalizeString,RtlNormalizeString diff --git a/libc/nt/ntdll/RtlNtPathNameToDosPathName.S b/libc/nt/ntdll/RtlNtPathNameToDosPathName.S deleted file mode 100644 index c22f0d7a5..000000000 --- a/libc/nt/ntdll/RtlNtPathNameToDosPathName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNtPathNameToDosPathName,RtlNtPathNameToDosPathName diff --git a/libc/nt/ntdll/RtlNtStatusToDosErrorNoTeb.S b/libc/nt/ntdll/RtlNtStatusToDosErrorNoTeb.S deleted file mode 100644 index 1969fa90c..000000000 --- a/libc/nt/ntdll/RtlNtStatusToDosErrorNoTeb.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNtStatusToDosErrorNoTeb,RtlNtStatusToDosErrorNoTeb diff --git a/libc/nt/ntdll/RtlNtdllName.S b/libc/nt/ntdll/RtlNtdllName.S deleted file mode 100644 index ae62c1077..000000000 --- a/libc/nt/ntdll/RtlNtdllName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNtdllName,RtlNtdllName diff --git a/libc/nt/ntdll/RtlNumberGenericTableElements.S b/libc/nt/ntdll/RtlNumberGenericTableElements.S deleted file mode 100644 index 6925d74d8..000000000 --- a/libc/nt/ntdll/RtlNumberGenericTableElements.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNumberGenericTableElements,RtlNumberGenericTableElements diff --git a/libc/nt/ntdll/RtlNumberGenericTableElementsAvl.S b/libc/nt/ntdll/RtlNumberGenericTableElementsAvl.S deleted file mode 100644 index 4f4f79eae..000000000 --- a/libc/nt/ntdll/RtlNumberGenericTableElementsAvl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNumberGenericTableElementsAvl,RtlNumberGenericTableElementsAvl diff --git a/libc/nt/ntdll/RtlNumberOfClearBits.S b/libc/nt/ntdll/RtlNumberOfClearBits.S deleted file mode 100644 index ede34e8d4..000000000 --- a/libc/nt/ntdll/RtlNumberOfClearBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNumberOfClearBits,RtlNumberOfClearBits diff --git a/libc/nt/ntdll/RtlNumberOfClearBitsInRange.S b/libc/nt/ntdll/RtlNumberOfClearBitsInRange.S deleted file mode 100644 index de098e9fe..000000000 --- a/libc/nt/ntdll/RtlNumberOfClearBitsInRange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNumberOfClearBitsInRange,RtlNumberOfClearBitsInRange diff --git a/libc/nt/ntdll/RtlNumberOfSetBits.S b/libc/nt/ntdll/RtlNumberOfSetBits.S deleted file mode 100644 index 1eaa4351e..000000000 --- a/libc/nt/ntdll/RtlNumberOfSetBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNumberOfSetBits,RtlNumberOfSetBits diff --git a/libc/nt/ntdll/RtlNumberOfSetBitsInRange.S b/libc/nt/ntdll/RtlNumberOfSetBitsInRange.S deleted file mode 100644 index 917e456fe..000000000 --- a/libc/nt/ntdll/RtlNumberOfSetBitsInRange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNumberOfSetBitsInRange,RtlNumberOfSetBitsInRange diff --git a/libc/nt/ntdll/RtlNumberOfSetBitsUlongPtr.S b/libc/nt/ntdll/RtlNumberOfSetBitsUlongPtr.S deleted file mode 100644 index b4c00228b..000000000 --- a/libc/nt/ntdll/RtlNumberOfSetBitsUlongPtr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlNumberOfSetBitsUlongPtr,RtlNumberOfSetBitsUlongPtr diff --git a/libc/nt/ntdll/RtlOemStringToUnicodeSize.S b/libc/nt/ntdll/RtlOemStringToUnicodeSize.S deleted file mode 100644 index c9b38eb58..000000000 --- a/libc/nt/ntdll/RtlOemStringToUnicodeSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlOemStringToUnicodeSize,RtlOemStringToUnicodeSize diff --git a/libc/nt/ntdll/RtlOemStringToUnicodeString.S b/libc/nt/ntdll/RtlOemStringToUnicodeString.S deleted file mode 100644 index 34792126e..000000000 --- a/libc/nt/ntdll/RtlOemStringToUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlOemStringToUnicodeString,RtlOemStringToUnicodeString diff --git a/libc/nt/ntdll/RtlOemToUnicodeN.S b/libc/nt/ntdll/RtlOemToUnicodeN.S deleted file mode 100644 index 3b13dd4fa..000000000 --- a/libc/nt/ntdll/RtlOemToUnicodeN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlOemToUnicodeN,RtlOemToUnicodeN diff --git a/libc/nt/ntdll/RtlOpenCurrentUser.S b/libc/nt/ntdll/RtlOpenCurrentUser.S deleted file mode 100644 index aad7a20a8..000000000 --- a/libc/nt/ntdll/RtlOpenCurrentUser.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlOpenCurrentUser,RtlOpenCurrentUser diff --git a/libc/nt/ntdll/RtlOsDeploymentState.S b/libc/nt/ntdll/RtlOsDeploymentState.S deleted file mode 100644 index 0a26258d3..000000000 --- a/libc/nt/ntdll/RtlOsDeploymentState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlOsDeploymentState,RtlOsDeploymentState diff --git a/libc/nt/ntdll/RtlOwnerAcesPresent.S b/libc/nt/ntdll/RtlOwnerAcesPresent.S deleted file mode 100644 index 162675442..000000000 --- a/libc/nt/ntdll/RtlOwnerAcesPresent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlOwnerAcesPresent,RtlOwnerAcesPresent diff --git a/libc/nt/ntdll/RtlPcToFileHeader.S b/libc/nt/ntdll/RtlPcToFileHeader.S deleted file mode 100644 index 25bec6634..000000000 --- a/libc/nt/ntdll/RtlPcToFileHeader.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlPcToFileHeader,RtlPcToFileHeader diff --git a/libc/nt/ntdll/RtlPinAtomInAtomTable.S b/libc/nt/ntdll/RtlPinAtomInAtomTable.S deleted file mode 100644 index 66aa3dd45..000000000 --- a/libc/nt/ntdll/RtlPinAtomInAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlPinAtomInAtomTable,RtlPinAtomInAtomTable diff --git a/libc/nt/ntdll/RtlPopFrame.S b/libc/nt/ntdll/RtlPopFrame.S deleted file mode 100644 index 64250e043..000000000 --- a/libc/nt/ntdll/RtlPopFrame.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlPopFrame,RtlPopFrame diff --git a/libc/nt/ntdll/RtlPrefixString.S b/libc/nt/ntdll/RtlPrefixString.S deleted file mode 100644 index 308cab32b..000000000 --- a/libc/nt/ntdll/RtlPrefixString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlPrefixString,RtlPrefixString diff --git a/libc/nt/ntdll/RtlPrefixUnicodeString.S b/libc/nt/ntdll/RtlPrefixUnicodeString.S deleted file mode 100644 index d1ae2a7a5..000000000 --- a/libc/nt/ntdll/RtlPrefixUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlPrefixUnicodeString,RtlPrefixUnicodeString diff --git a/libc/nt/ntdll/RtlPrepareForProcessCloning.S b/libc/nt/ntdll/RtlPrepareForProcessCloning.S deleted file mode 100644 index de6de1f6e..000000000 --- a/libc/nt/ntdll/RtlPrepareForProcessCloning.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlPrepareForProcessCloning,RtlPrepareForProcessCloning diff --git a/libc/nt/ntdll/RtlProcessFlsData.S b/libc/nt/ntdll/RtlProcessFlsData.S deleted file mode 100644 index 1c9f30ac9..000000000 --- a/libc/nt/ntdll/RtlProcessFlsData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlProcessFlsData,RtlProcessFlsData diff --git a/libc/nt/ntdll/RtlProtectHeap.S b/libc/nt/ntdll/RtlProtectHeap.S deleted file mode 100644 index eda6fe418..000000000 --- a/libc/nt/ntdll/RtlProtectHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlProtectHeap,RtlProtectHeap diff --git a/libc/nt/ntdll/RtlPublishWnfStateData.S b/libc/nt/ntdll/RtlPublishWnfStateData.S deleted file mode 100644 index 8a135aadf..000000000 --- a/libc/nt/ntdll/RtlPublishWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlPublishWnfStateData,RtlPublishWnfStateData diff --git a/libc/nt/ntdll/RtlPushFrame.S b/libc/nt/ntdll/RtlPushFrame.S deleted file mode 100644 index f753df608..000000000 --- a/libc/nt/ntdll/RtlPushFrame.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlPushFrame,RtlPushFrame diff --git a/libc/nt/ntdll/RtlQueryActivationContextApplicationSettings.S b/libc/nt/ntdll/RtlQueryActivationContextApplicationSettings.S deleted file mode 100644 index 12d5bd4c7..000000000 --- a/libc/nt/ntdll/RtlQueryActivationContextApplicationSettings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryActivationContextApplicationSettings,RtlQueryActivationContextApplicationSettings diff --git a/libc/nt/ntdll/RtlQueryAtomInAtomTable.S b/libc/nt/ntdll/RtlQueryAtomInAtomTable.S deleted file mode 100644 index 3d0f85583..000000000 --- a/libc/nt/ntdll/RtlQueryAtomInAtomTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryAtomInAtomTable,RtlQueryAtomInAtomTable diff --git a/libc/nt/ntdll/RtlQueryCriticalSectionOwner.S b/libc/nt/ntdll/RtlQueryCriticalSectionOwner.S deleted file mode 100644 index c0ce595ec..000000000 --- a/libc/nt/ntdll/RtlQueryCriticalSectionOwner.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryCriticalSectionOwner,RtlQueryCriticalSectionOwner diff --git a/libc/nt/ntdll/RtlQueryDepthSList.S b/libc/nt/ntdll/RtlQueryDepthSList.S deleted file mode 100644 index 0ce90ee04..000000000 --- a/libc/nt/ntdll/RtlQueryDepthSList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryDepthSList,RtlQueryDepthSList diff --git a/libc/nt/ntdll/RtlQueryDynamicTimeZoneInformation.S b/libc/nt/ntdll/RtlQueryDynamicTimeZoneInformation.S deleted file mode 100644 index 82c4118f7..000000000 --- a/libc/nt/ntdll/RtlQueryDynamicTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryDynamicTimeZoneInformation,RtlQueryDynamicTimeZoneInformation diff --git a/libc/nt/ntdll/RtlQueryElevationFlags.S b/libc/nt/ntdll/RtlQueryElevationFlags.S deleted file mode 100644 index 8f4e4248e..000000000 --- a/libc/nt/ntdll/RtlQueryElevationFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryElevationFlags,RtlQueryElevationFlags diff --git a/libc/nt/ntdll/RtlQueryEnvironmentVariable_U.S b/libc/nt/ntdll/RtlQueryEnvironmentVariable_U.S deleted file mode 100644 index 29dff0520..000000000 --- a/libc/nt/ntdll/RtlQueryEnvironmentVariable_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryEnvironmentVariable_U,RtlQueryEnvironmentVariable_U diff --git a/libc/nt/ntdll/RtlQueryHeapInformation.S b/libc/nt/ntdll/RtlQueryHeapInformation.S deleted file mode 100644 index 6e1126d58..000000000 --- a/libc/nt/ntdll/RtlQueryHeapInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryHeapInformation,RtlQueryHeapInformation diff --git a/libc/nt/ntdll/RtlQueryImageMitigationPolicy.S b/libc/nt/ntdll/RtlQueryImageMitigationPolicy.S deleted file mode 100644 index 781ec8a54..000000000 --- a/libc/nt/ntdll/RtlQueryImageMitigationPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryImageMitigationPolicy,RtlQueryImageMitigationPolicy diff --git a/libc/nt/ntdll/RtlQueryInformationAcl.S b/libc/nt/ntdll/RtlQueryInformationAcl.S deleted file mode 100644 index a751ddc60..000000000 --- a/libc/nt/ntdll/RtlQueryInformationAcl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryInformationAcl,RtlQueryInformationAcl diff --git a/libc/nt/ntdll/RtlQueryInformationActivationContext.S b/libc/nt/ntdll/RtlQueryInformationActivationContext.S deleted file mode 100644 index 1ccf67a09..000000000 --- a/libc/nt/ntdll/RtlQueryInformationActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryInformationActivationContext,RtlQueryInformationActivationContext diff --git a/libc/nt/ntdll/RtlQueryInformationActiveActivationContext.S b/libc/nt/ntdll/RtlQueryInformationActiveActivationContext.S deleted file mode 100644 index c0a4b4e7e..000000000 --- a/libc/nt/ntdll/RtlQueryInformationActiveActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryInformationActiveActivationContext,RtlQueryInformationActiveActivationContext diff --git a/libc/nt/ntdll/RtlQueryInterfaceMemoryStream.S b/libc/nt/ntdll/RtlQueryInterfaceMemoryStream.S deleted file mode 100644 index f71c1bf9f..000000000 --- a/libc/nt/ntdll/RtlQueryInterfaceMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryInterfaceMemoryStream,RtlQueryInterfaceMemoryStream diff --git a/libc/nt/ntdll/RtlQueryModuleInformation.S b/libc/nt/ntdll/RtlQueryModuleInformation.S deleted file mode 100644 index 3c698977e..000000000 --- a/libc/nt/ntdll/RtlQueryModuleInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryModuleInformation,RtlQueryModuleInformation diff --git a/libc/nt/ntdll/RtlQueryPackageClaims.S b/libc/nt/ntdll/RtlQueryPackageClaims.S deleted file mode 100644 index e1b00d17b..000000000 --- a/libc/nt/ntdll/RtlQueryPackageClaims.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryPackageClaims,RtlQueryPackageClaims diff --git a/libc/nt/ntdll/RtlQueryPackageIdentity.S b/libc/nt/ntdll/RtlQueryPackageIdentity.S deleted file mode 100644 index 36f086041..000000000 --- a/libc/nt/ntdll/RtlQueryPackageIdentity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryPackageIdentity,RtlQueryPackageIdentity diff --git a/libc/nt/ntdll/RtlQueryPackageIdentityEx.S b/libc/nt/ntdll/RtlQueryPackageIdentityEx.S deleted file mode 100644 index 028c3543d..000000000 --- a/libc/nt/ntdll/RtlQueryPackageIdentityEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryPackageIdentityEx,RtlQueryPackageIdentityEx diff --git a/libc/nt/ntdll/RtlQueryPerformanceCounter.S b/libc/nt/ntdll/RtlQueryPerformanceCounter.S deleted file mode 100644 index 9e241423f..000000000 --- a/libc/nt/ntdll/RtlQueryPerformanceCounter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryPerformanceCounter,RtlQueryPerformanceCounter diff --git a/libc/nt/ntdll/RtlQueryPerformanceFrequency.S b/libc/nt/ntdll/RtlQueryPerformanceFrequency.S deleted file mode 100644 index 79864a0e5..000000000 --- a/libc/nt/ntdll/RtlQueryPerformanceFrequency.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryPerformanceFrequency,RtlQueryPerformanceFrequency diff --git a/libc/nt/ntdll/RtlQueryProcessBackTraceInformation.S b/libc/nt/ntdll/RtlQueryProcessBackTraceInformation.S deleted file mode 100644 index 1bd035bee..000000000 --- a/libc/nt/ntdll/RtlQueryProcessBackTraceInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryProcessBackTraceInformation,RtlQueryProcessBackTraceInformation diff --git a/libc/nt/ntdll/RtlQueryProcessDebugInformation.S b/libc/nt/ntdll/RtlQueryProcessDebugInformation.S deleted file mode 100644 index 90cdf0dcc..000000000 --- a/libc/nt/ntdll/RtlQueryProcessDebugInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryProcessDebugInformation,RtlQueryProcessDebugInformation diff --git a/libc/nt/ntdll/RtlQueryProcessHeapInformation.S b/libc/nt/ntdll/RtlQueryProcessHeapInformation.S deleted file mode 100644 index 742e2460e..000000000 --- a/libc/nt/ntdll/RtlQueryProcessHeapInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryProcessHeapInformation,RtlQueryProcessHeapInformation diff --git a/libc/nt/ntdll/RtlQueryProcessLockInformation.S b/libc/nt/ntdll/RtlQueryProcessLockInformation.S deleted file mode 100644 index 377d0b9b3..000000000 --- a/libc/nt/ntdll/RtlQueryProcessLockInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryProcessLockInformation,RtlQueryProcessLockInformation diff --git a/libc/nt/ntdll/RtlQueryProcessPlaceholderCompatibilityMode.S b/libc/nt/ntdll/RtlQueryProcessPlaceholderCompatibilityMode.S deleted file mode 100644 index 53031145d..000000000 --- a/libc/nt/ntdll/RtlQueryProcessPlaceholderCompatibilityMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryProcessPlaceholderCompatibilityMode,RtlQueryProcessPlaceholderCompatibilityMode diff --git a/libc/nt/ntdll/RtlQueryProtectedPolicy.S b/libc/nt/ntdll/RtlQueryProtectedPolicy.S deleted file mode 100644 index eae8d2930..000000000 --- a/libc/nt/ntdll/RtlQueryProtectedPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryProtectedPolicy,RtlQueryProtectedPolicy diff --git a/libc/nt/ntdll/RtlQueryRegistryValueWithFallback.S b/libc/nt/ntdll/RtlQueryRegistryValueWithFallback.S deleted file mode 100644 index f34bff5f0..000000000 --- a/libc/nt/ntdll/RtlQueryRegistryValueWithFallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryRegistryValueWithFallback,RtlQueryRegistryValueWithFallback diff --git a/libc/nt/ntdll/RtlQueryRegistryValues.S b/libc/nt/ntdll/RtlQueryRegistryValues.S deleted file mode 100644 index b19bebcdf..000000000 --- a/libc/nt/ntdll/RtlQueryRegistryValues.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryRegistryValues,RtlQueryRegistryValues diff --git a/libc/nt/ntdll/RtlQueryRegistryValuesEx.S b/libc/nt/ntdll/RtlQueryRegistryValuesEx.S deleted file mode 100644 index 72a675060..000000000 --- a/libc/nt/ntdll/RtlQueryRegistryValuesEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryRegistryValuesEx,RtlQueryRegistryValuesEx diff --git a/libc/nt/ntdll/RtlQueryResourcePolicy.S b/libc/nt/ntdll/RtlQueryResourcePolicy.S deleted file mode 100644 index 2977cbb42..000000000 --- a/libc/nt/ntdll/RtlQueryResourcePolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryResourcePolicy,RtlQueryResourcePolicy diff --git a/libc/nt/ntdll/RtlQuerySecurityObject.S b/libc/nt/ntdll/RtlQuerySecurityObject.S deleted file mode 100644 index e48a0fa51..000000000 --- a/libc/nt/ntdll/RtlQuerySecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQuerySecurityObject,RtlQuerySecurityObject diff --git a/libc/nt/ntdll/RtlQueryTagHeap.S b/libc/nt/ntdll/RtlQueryTagHeap.S deleted file mode 100644 index 01120bbf1..000000000 --- a/libc/nt/ntdll/RtlQueryTagHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryTagHeap,RtlQueryTagHeap diff --git a/libc/nt/ntdll/RtlQueryThreadPlaceholderCompatibilityMode.S b/libc/nt/ntdll/RtlQueryThreadPlaceholderCompatibilityMode.S deleted file mode 100644 index a4607c51f..000000000 --- a/libc/nt/ntdll/RtlQueryThreadPlaceholderCompatibilityMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryThreadPlaceholderCompatibilityMode,RtlQueryThreadPlaceholderCompatibilityMode diff --git a/libc/nt/ntdll/RtlQueryThreadProfiling.S b/libc/nt/ntdll/RtlQueryThreadProfiling.S deleted file mode 100644 index a395d1695..000000000 --- a/libc/nt/ntdll/RtlQueryThreadProfiling.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryThreadProfiling,RtlQueryThreadProfiling diff --git a/libc/nt/ntdll/RtlQueryTimeZoneInformation.S b/libc/nt/ntdll/RtlQueryTimeZoneInformation.S deleted file mode 100644 index e8a95c511..000000000 --- a/libc/nt/ntdll/RtlQueryTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryTimeZoneInformation,RtlQueryTimeZoneInformation diff --git a/libc/nt/ntdll/RtlQueryTokenHostIdAsUlong64.S b/libc/nt/ntdll/RtlQueryTokenHostIdAsUlong64.S deleted file mode 100644 index 1272594fc..000000000 --- a/libc/nt/ntdll/RtlQueryTokenHostIdAsUlong64.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryTokenHostIdAsUlong64,RtlQueryTokenHostIdAsUlong64 diff --git a/libc/nt/ntdll/RtlQueryUmsThreadInformation.S b/libc/nt/ntdll/RtlQueryUmsThreadInformation.S deleted file mode 100644 index 711382043..000000000 --- a/libc/nt/ntdll/RtlQueryUmsThreadInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryUmsThreadInformation,RtlQueryUmsThreadInformation diff --git a/libc/nt/ntdll/RtlQueryUnbiasedInterruptTime.S b/libc/nt/ntdll/RtlQueryUnbiasedInterruptTime.S deleted file mode 100644 index 794299915..000000000 --- a/libc/nt/ntdll/RtlQueryUnbiasedInterruptTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryUnbiasedInterruptTime,RtlQueryUnbiasedInterruptTime diff --git a/libc/nt/ntdll/RtlQueryValidationRunlevel.S b/libc/nt/ntdll/RtlQueryValidationRunlevel.S deleted file mode 100644 index c17bc4ff2..000000000 --- a/libc/nt/ntdll/RtlQueryValidationRunlevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryValidationRunlevel,RtlQueryValidationRunlevel diff --git a/libc/nt/ntdll/RtlQueryWnfMetaNotification.S b/libc/nt/ntdll/RtlQueryWnfMetaNotification.S deleted file mode 100644 index 2ba614d37..000000000 --- a/libc/nt/ntdll/RtlQueryWnfMetaNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryWnfMetaNotification,RtlQueryWnfMetaNotification diff --git a/libc/nt/ntdll/RtlQueryWnfStateData.S b/libc/nt/ntdll/RtlQueryWnfStateData.S deleted file mode 100644 index 536c46219..000000000 --- a/libc/nt/ntdll/RtlQueryWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryWnfStateData,RtlQueryWnfStateData diff --git a/libc/nt/ntdll/RtlQueryWnfStateDataWithExplicitScope.S b/libc/nt/ntdll/RtlQueryWnfStateDataWithExplicitScope.S deleted file mode 100644 index a552e5e4d..000000000 --- a/libc/nt/ntdll/RtlQueryWnfStateDataWithExplicitScope.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueryWnfStateDataWithExplicitScope,RtlQueryWnfStateDataWithExplicitScope diff --git a/libc/nt/ntdll/RtlQueueWorkItem.S b/libc/nt/ntdll/RtlQueueWorkItem.S deleted file mode 100644 index 7dad65741..000000000 --- a/libc/nt/ntdll/RtlQueueWorkItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlQueueWorkItem,RtlQueueWorkItem diff --git a/libc/nt/ntdll/RtlRaiseCustomSystemEventTrigger.S b/libc/nt/ntdll/RtlRaiseCustomSystemEventTrigger.S deleted file mode 100644 index 3f61977b7..000000000 --- a/libc/nt/ntdll/RtlRaiseCustomSystemEventTrigger.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRaiseCustomSystemEventTrigger,RtlRaiseCustomSystemEventTrigger diff --git a/libc/nt/ntdll/RtlRaiseException.S b/libc/nt/ntdll/RtlRaiseException.S deleted file mode 100644 index f111dbfea..000000000 --- a/libc/nt/ntdll/RtlRaiseException.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRaiseException,RtlRaiseException diff --git a/libc/nt/ntdll/RtlRaiseStatus.S b/libc/nt/ntdll/RtlRaiseStatus.S deleted file mode 100644 index c3666824f..000000000 --- a/libc/nt/ntdll/RtlRaiseStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRaiseStatus,RtlRaiseStatus diff --git a/libc/nt/ntdll/RtlRandom.S b/libc/nt/ntdll/RtlRandom.S deleted file mode 100644 index c74b65c25..000000000 --- a/libc/nt/ntdll/RtlRandom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRandom,RtlRandom diff --git a/libc/nt/ntdll/RtlRandomEx.S b/libc/nt/ntdll/RtlRandomEx.S deleted file mode 100644 index 4f98020be..000000000 --- a/libc/nt/ntdll/RtlRandomEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRandomEx,RtlRandomEx diff --git a/libc/nt/ntdll/RtlRbInsertNodeEx.S b/libc/nt/ntdll/RtlRbInsertNodeEx.S deleted file mode 100644 index 089e6d916..000000000 --- a/libc/nt/ntdll/RtlRbInsertNodeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRbInsertNodeEx,RtlRbInsertNodeEx diff --git a/libc/nt/ntdll/RtlRbRemoveNode.S b/libc/nt/ntdll/RtlRbRemoveNode.S deleted file mode 100644 index e4c7f4698..000000000 --- a/libc/nt/ntdll/RtlRbRemoveNode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRbRemoveNode,RtlRbRemoveNode diff --git a/libc/nt/ntdll/RtlReadMemoryStream.S b/libc/nt/ntdll/RtlReadMemoryStream.S deleted file mode 100644 index cf74b646a..000000000 --- a/libc/nt/ntdll/RtlReadMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReadMemoryStream,RtlReadMemoryStream diff --git a/libc/nt/ntdll/RtlReadOutOfProcessMemoryStream.S b/libc/nt/ntdll/RtlReadOutOfProcessMemoryStream.S deleted file mode 100644 index c9969c024..000000000 --- a/libc/nt/ntdll/RtlReadOutOfProcessMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReadOutOfProcessMemoryStream,RtlReadOutOfProcessMemoryStream diff --git a/libc/nt/ntdll/RtlReadThreadProfilingData.S b/libc/nt/ntdll/RtlReadThreadProfilingData.S deleted file mode 100644 index b66bdfff1..000000000 --- a/libc/nt/ntdll/RtlReadThreadProfilingData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReadThreadProfilingData,RtlReadThreadProfilingData diff --git a/libc/nt/ntdll/RtlRealPredecessor.S b/libc/nt/ntdll/RtlRealPredecessor.S deleted file mode 100644 index c35c6b059..000000000 --- a/libc/nt/ntdll/RtlRealPredecessor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRealPredecessor,RtlRealPredecessor diff --git a/libc/nt/ntdll/RtlRealSuccessor.S b/libc/nt/ntdll/RtlRealSuccessor.S deleted file mode 100644 index be2488f2b..000000000 --- a/libc/nt/ntdll/RtlRealSuccessor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRealSuccessor,RtlRealSuccessor diff --git a/libc/nt/ntdll/RtlRegisterForWnfMetaNotification.S b/libc/nt/ntdll/RtlRegisterForWnfMetaNotification.S deleted file mode 100644 index cf8482e58..000000000 --- a/libc/nt/ntdll/RtlRegisterForWnfMetaNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRegisterForWnfMetaNotification,RtlRegisterForWnfMetaNotification diff --git a/libc/nt/ntdll/RtlRegisterSecureMemoryCacheCallback.S b/libc/nt/ntdll/RtlRegisterSecureMemoryCacheCallback.S deleted file mode 100644 index b01e4fbcb..000000000 --- a/libc/nt/ntdll/RtlRegisterSecureMemoryCacheCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRegisterSecureMemoryCacheCallback,RtlRegisterSecureMemoryCacheCallback diff --git a/libc/nt/ntdll/RtlRegisterThreadWithCsrss.S b/libc/nt/ntdll/RtlRegisterThreadWithCsrss.S deleted file mode 100644 index ed533face..000000000 --- a/libc/nt/ntdll/RtlRegisterThreadWithCsrss.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRegisterThreadWithCsrss,RtlRegisterThreadWithCsrss diff --git a/libc/nt/ntdll/RtlRegisterWait.S b/libc/nt/ntdll/RtlRegisterWait.S deleted file mode 100644 index 3aca4b5f0..000000000 --- a/libc/nt/ntdll/RtlRegisterWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRegisterWait,RtlRegisterWait diff --git a/libc/nt/ntdll/RtlReleaseActivationContext.S b/libc/nt/ntdll/RtlReleaseActivationContext.S deleted file mode 100644 index 78e136a82..000000000 --- a/libc/nt/ntdll/RtlReleaseActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleaseActivationContext,RtlReleaseActivationContext diff --git a/libc/nt/ntdll/RtlReleaseMemoryStream.S b/libc/nt/ntdll/RtlReleaseMemoryStream.S deleted file mode 100644 index 3af35db5a..000000000 --- a/libc/nt/ntdll/RtlReleaseMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleaseMemoryStream,RtlReleaseMemoryStream diff --git a/libc/nt/ntdll/RtlReleasePath.S b/libc/nt/ntdll/RtlReleasePath.S deleted file mode 100644 index e970e055e..000000000 --- a/libc/nt/ntdll/RtlReleasePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleasePath,RtlReleasePath diff --git a/libc/nt/ntdll/RtlReleasePebLock.S b/libc/nt/ntdll/RtlReleasePebLock.S deleted file mode 100644 index 0e885ee0b..000000000 --- a/libc/nt/ntdll/RtlReleasePebLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleasePebLock,RtlReleasePebLock diff --git a/libc/nt/ntdll/RtlReleasePrivilege.S b/libc/nt/ntdll/RtlReleasePrivilege.S deleted file mode 100644 index e2c50ade7..000000000 --- a/libc/nt/ntdll/RtlReleasePrivilege.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleasePrivilege,RtlReleasePrivilege diff --git a/libc/nt/ntdll/RtlReleaseRelativeName.S b/libc/nt/ntdll/RtlReleaseRelativeName.S deleted file mode 100644 index 6b2ee6fa1..000000000 --- a/libc/nt/ntdll/RtlReleaseRelativeName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleaseRelativeName,RtlReleaseRelativeName diff --git a/libc/nt/ntdll/RtlReleaseResource.S b/libc/nt/ntdll/RtlReleaseResource.S deleted file mode 100644 index cfe4eb3d5..000000000 --- a/libc/nt/ntdll/RtlReleaseResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleaseResource,RtlReleaseResource diff --git a/libc/nt/ntdll/RtlReleaseSRWLockExclusive.S b/libc/nt/ntdll/RtlReleaseSRWLockExclusive.S deleted file mode 100644 index c1246c417..000000000 --- a/libc/nt/ntdll/RtlReleaseSRWLockExclusive.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleaseSRWLockExclusive,RtlReleaseSRWLockExclusive diff --git a/libc/nt/ntdll/RtlReleaseSRWLockShared.S b/libc/nt/ntdll/RtlReleaseSRWLockShared.S deleted file mode 100644 index 38a9c9ebd..000000000 --- a/libc/nt/ntdll/RtlReleaseSRWLockShared.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReleaseSRWLockShared,RtlReleaseSRWLockShared diff --git a/libc/nt/ntdll/RtlRemoteCall.S b/libc/nt/ntdll/RtlRemoteCall.S deleted file mode 100644 index d1cdb99be..000000000 --- a/libc/nt/ntdll/RtlRemoteCall.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRemoteCall,RtlRemoteCall diff --git a/libc/nt/ntdll/RtlRemoveEntryHashTable.S b/libc/nt/ntdll/RtlRemoveEntryHashTable.S deleted file mode 100644 index 19c5a0ab8..000000000 --- a/libc/nt/ntdll/RtlRemoveEntryHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRemoveEntryHashTable,RtlRemoveEntryHashTable diff --git a/libc/nt/ntdll/RtlRemovePrivileges.S b/libc/nt/ntdll/RtlRemovePrivileges.S deleted file mode 100644 index 709b000fe..000000000 --- a/libc/nt/ntdll/RtlRemovePrivileges.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRemovePrivileges,RtlRemovePrivileges diff --git a/libc/nt/ntdll/RtlRemoveVectoredContinueHandler.S b/libc/nt/ntdll/RtlRemoveVectoredContinueHandler.S deleted file mode 100644 index 338b62ee2..000000000 --- a/libc/nt/ntdll/RtlRemoveVectoredContinueHandler.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRemoveVectoredContinueHandler,RtlRemoveVectoredContinueHandler diff --git a/libc/nt/ntdll/RtlRemoveVectoredExceptionHandler.S b/libc/nt/ntdll/RtlRemoveVectoredExceptionHandler.S deleted file mode 100644 index 694544acf..000000000 --- a/libc/nt/ntdll/RtlRemoveVectoredExceptionHandler.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRemoveVectoredExceptionHandler,RtlRemoveVectoredExceptionHandler diff --git a/libc/nt/ntdll/RtlReplaceSidInSd.S b/libc/nt/ntdll/RtlReplaceSidInSd.S deleted file mode 100644 index 802b673a7..000000000 --- a/libc/nt/ntdll/RtlReplaceSidInSd.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReplaceSidInSd,RtlReplaceSidInSd diff --git a/libc/nt/ntdll/RtlReplaceSystemDirectoryInPath.S b/libc/nt/ntdll/RtlReplaceSystemDirectoryInPath.S deleted file mode 100644 index 65d9c69ba..000000000 --- a/libc/nt/ntdll/RtlReplaceSystemDirectoryInPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReplaceSystemDirectoryInPath,RtlReplaceSystemDirectoryInPath diff --git a/libc/nt/ntdll/RtlReportException.S b/libc/nt/ntdll/RtlReportException.S deleted file mode 100644 index 19d558478..000000000 --- a/libc/nt/ntdll/RtlReportException.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReportException,RtlReportException diff --git a/libc/nt/ntdll/RtlReportExceptionEx.S b/libc/nt/ntdll/RtlReportExceptionEx.S deleted file mode 100644 index 33dca830e..000000000 --- a/libc/nt/ntdll/RtlReportExceptionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReportExceptionEx,RtlReportExceptionEx diff --git a/libc/nt/ntdll/RtlReportSilentProcessExit.S b/libc/nt/ntdll/RtlReportSilentProcessExit.S deleted file mode 100644 index 64be8d998..000000000 --- a/libc/nt/ntdll/RtlReportSilentProcessExit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReportSilentProcessExit,RtlReportSilentProcessExit diff --git a/libc/nt/ntdll/RtlReportSqmEscalation.S b/libc/nt/ntdll/RtlReportSqmEscalation.S deleted file mode 100644 index 682b18805..000000000 --- a/libc/nt/ntdll/RtlReportSqmEscalation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlReportSqmEscalation,RtlReportSqmEscalation diff --git a/libc/nt/ntdll/RtlResetMemoryBlockLookaside.S b/libc/nt/ntdll/RtlResetMemoryBlockLookaside.S deleted file mode 100644 index b8e1cd0a5..000000000 --- a/libc/nt/ntdll/RtlResetMemoryBlockLookaside.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlResetMemoryBlockLookaside,RtlResetMemoryBlockLookaside diff --git a/libc/nt/ntdll/RtlResetMemoryZone.S b/libc/nt/ntdll/RtlResetMemoryZone.S deleted file mode 100644 index 5c8c7546d..000000000 --- a/libc/nt/ntdll/RtlResetMemoryZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlResetMemoryZone,RtlResetMemoryZone diff --git a/libc/nt/ntdll/RtlResetNtUserPfn.S b/libc/nt/ntdll/RtlResetNtUserPfn.S deleted file mode 100644 index 43cb0fa8b..000000000 --- a/libc/nt/ntdll/RtlResetNtUserPfn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlResetNtUserPfn,RtlResetNtUserPfn diff --git a/libc/nt/ntdll/RtlResetRtlTranslations.S b/libc/nt/ntdll/RtlResetRtlTranslations.S deleted file mode 100644 index d3e517038..000000000 --- a/libc/nt/ntdll/RtlResetRtlTranslations.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlResetRtlTranslations,RtlResetRtlTranslations diff --git a/libc/nt/ntdll/RtlRestoreBootStatusDefaults.S b/libc/nt/ntdll/RtlRestoreBootStatusDefaults.S deleted file mode 100644 index 13b81ada4..000000000 --- a/libc/nt/ntdll/RtlRestoreBootStatusDefaults.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRestoreBootStatusDefaults,RtlRestoreBootStatusDefaults diff --git a/libc/nt/ntdll/RtlRestoreContext.S b/libc/nt/ntdll/RtlRestoreContext.S deleted file mode 100644 index d04a57367..000000000 --- a/libc/nt/ntdll/RtlRestoreContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRestoreContext,RtlRestoreContext diff --git a/libc/nt/ntdll/RtlRestoreLastWin32Error.S b/libc/nt/ntdll/RtlRestoreLastWin32Error.S deleted file mode 100644 index 5a680f1b0..000000000 --- a/libc/nt/ntdll/RtlRestoreLastWin32Error.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRestoreLastWin32Error,RtlRestoreLastWin32Error diff --git a/libc/nt/ntdll/RtlRestoreSystemBootStatusDefaults.S b/libc/nt/ntdll/RtlRestoreSystemBootStatusDefaults.S deleted file mode 100644 index bfcff13f0..000000000 --- a/libc/nt/ntdll/RtlRestoreSystemBootStatusDefaults.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRestoreSystemBootStatusDefaults,RtlRestoreSystemBootStatusDefaults diff --git a/libc/nt/ntdll/RtlRetrieveNtUserPfn.S b/libc/nt/ntdll/RtlRetrieveNtUserPfn.S deleted file mode 100644 index a3f1a894b..000000000 --- a/libc/nt/ntdll/RtlRetrieveNtUserPfn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRetrieveNtUserPfn,RtlRetrieveNtUserPfn diff --git a/libc/nt/ntdll/RtlRevertMemoryStream.S b/libc/nt/ntdll/RtlRevertMemoryStream.S deleted file mode 100644 index 2f14e2f18..000000000 --- a/libc/nt/ntdll/RtlRevertMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRevertMemoryStream,RtlRevertMemoryStream diff --git a/libc/nt/ntdll/RtlRunDecodeUnicodeString.S b/libc/nt/ntdll/RtlRunDecodeUnicodeString.S deleted file mode 100644 index d190970eb..000000000 --- a/libc/nt/ntdll/RtlRunDecodeUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRunDecodeUnicodeString,RtlRunDecodeUnicodeString diff --git a/libc/nt/ntdll/RtlRunEncodeUnicodeString.S b/libc/nt/ntdll/RtlRunEncodeUnicodeString.S deleted file mode 100644 index 7201ed2f7..000000000 --- a/libc/nt/ntdll/RtlRunEncodeUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRunEncodeUnicodeString,RtlRunEncodeUnicodeString diff --git a/libc/nt/ntdll/RtlRunOnceBeginInitialize.S b/libc/nt/ntdll/RtlRunOnceBeginInitialize.S deleted file mode 100644 index b3abe562b..000000000 --- a/libc/nt/ntdll/RtlRunOnceBeginInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRunOnceBeginInitialize,RtlRunOnceBeginInitialize diff --git a/libc/nt/ntdll/RtlRunOnceComplete.S b/libc/nt/ntdll/RtlRunOnceComplete.S deleted file mode 100644 index 498cedabd..000000000 --- a/libc/nt/ntdll/RtlRunOnceComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRunOnceComplete,RtlRunOnceComplete diff --git a/libc/nt/ntdll/RtlRunOnceExecuteOnce.S b/libc/nt/ntdll/RtlRunOnceExecuteOnce.S deleted file mode 100644 index 66f74e2eb..000000000 --- a/libc/nt/ntdll/RtlRunOnceExecuteOnce.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRunOnceExecuteOnce,RtlRunOnceExecuteOnce diff --git a/libc/nt/ntdll/RtlRunOnceInitialize.S b/libc/nt/ntdll/RtlRunOnceInitialize.S deleted file mode 100644 index 0e939a5df..000000000 --- a/libc/nt/ntdll/RtlRunOnceInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlRunOnceInitialize,RtlRunOnceInitialize diff --git a/libc/nt/ntdll/RtlSecondsSince1970ToTime.S b/libc/nt/ntdll/RtlSecondsSince1970ToTime.S deleted file mode 100644 index e5c8ad459..000000000 --- a/libc/nt/ntdll/RtlSecondsSince1970ToTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSecondsSince1970ToTime,RtlSecondsSince1970ToTime diff --git a/libc/nt/ntdll/RtlSecondsSince1980ToTime.S b/libc/nt/ntdll/RtlSecondsSince1980ToTime.S deleted file mode 100644 index 2cecf0eb5..000000000 --- a/libc/nt/ntdll/RtlSecondsSince1980ToTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSecondsSince1980ToTime,RtlSecondsSince1980ToTime diff --git a/libc/nt/ntdll/RtlSeekMemoryStream.S b/libc/nt/ntdll/RtlSeekMemoryStream.S deleted file mode 100644 index 8afbdd28a..000000000 --- a/libc/nt/ntdll/RtlSeekMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSeekMemoryStream,RtlSeekMemoryStream diff --git a/libc/nt/ntdll/RtlSelfRelativeToAbsoluteSD.S b/libc/nt/ntdll/RtlSelfRelativeToAbsoluteSD.S deleted file mode 100644 index daa626431..000000000 --- a/libc/nt/ntdll/RtlSelfRelativeToAbsoluteSD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSelfRelativeToAbsoluteSD,RtlSelfRelativeToAbsoluteSD diff --git a/libc/nt/ntdll/RtlSelfRelativeToAbsoluteSD2.S b/libc/nt/ntdll/RtlSelfRelativeToAbsoluteSD2.S deleted file mode 100644 index f8acc466a..000000000 --- a/libc/nt/ntdll/RtlSelfRelativeToAbsoluteSD2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSelfRelativeToAbsoluteSD2,RtlSelfRelativeToAbsoluteSD2 diff --git a/libc/nt/ntdll/RtlSendMsgToSm.S b/libc/nt/ntdll/RtlSendMsgToSm.S deleted file mode 100644 index b5b57210b..000000000 --- a/libc/nt/ntdll/RtlSendMsgToSm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSendMsgToSm,RtlSendMsgToSm diff --git a/libc/nt/ntdll/RtlSetAllBits.S b/libc/nt/ntdll/RtlSetAllBits.S deleted file mode 100644 index 250669c02..000000000 --- a/libc/nt/ntdll/RtlSetAllBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetAllBits,RtlSetAllBits diff --git a/libc/nt/ntdll/RtlSetAttributesSecurityDescriptor.S b/libc/nt/ntdll/RtlSetAttributesSecurityDescriptor.S deleted file mode 100644 index 0b2d5269f..000000000 --- a/libc/nt/ntdll/RtlSetAttributesSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetAttributesSecurityDescriptor,RtlSetAttributesSecurityDescriptor diff --git a/libc/nt/ntdll/RtlSetBit.S b/libc/nt/ntdll/RtlSetBit.S deleted file mode 100644 index 8be6753f7..000000000 --- a/libc/nt/ntdll/RtlSetBit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetBit,RtlSetBit diff --git a/libc/nt/ntdll/RtlSetBits.S b/libc/nt/ntdll/RtlSetBits.S deleted file mode 100644 index 0fb3d3499..000000000 --- a/libc/nt/ntdll/RtlSetBits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetBits,RtlSetBits diff --git a/libc/nt/ntdll/RtlSetControlSecurityDescriptor.S b/libc/nt/ntdll/RtlSetControlSecurityDescriptor.S deleted file mode 100644 index 090de16d8..000000000 --- a/libc/nt/ntdll/RtlSetControlSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetControlSecurityDescriptor,RtlSetControlSecurityDescriptor diff --git a/libc/nt/ntdll/RtlSetCriticalSectionSpinCount.S b/libc/nt/ntdll/RtlSetCriticalSectionSpinCount.S deleted file mode 100644 index 21100514e..000000000 --- a/libc/nt/ntdll/RtlSetCriticalSectionSpinCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetCriticalSectionSpinCount,RtlSetCriticalSectionSpinCount diff --git a/libc/nt/ntdll/RtlSetCurrentDirectory_U.S b/libc/nt/ntdll/RtlSetCurrentDirectory_U.S deleted file mode 100644 index 625238da1..000000000 --- a/libc/nt/ntdll/RtlSetCurrentDirectory_U.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetCurrentDirectory_U,RtlSetCurrentDirectory_U diff --git a/libc/nt/ntdll/RtlSetCurrentEnvironment.S b/libc/nt/ntdll/RtlSetCurrentEnvironment.S deleted file mode 100644 index 4379b16b6..000000000 --- a/libc/nt/ntdll/RtlSetCurrentEnvironment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetCurrentEnvironment,RtlSetCurrentEnvironment diff --git a/libc/nt/ntdll/RtlSetCurrentTransaction.S b/libc/nt/ntdll/RtlSetCurrentTransaction.S deleted file mode 100644 index 11187a126..000000000 --- a/libc/nt/ntdll/RtlSetCurrentTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetCurrentTransaction,RtlSetCurrentTransaction diff --git a/libc/nt/ntdll/RtlSetDaclSecurityDescriptor.S b/libc/nt/ntdll/RtlSetDaclSecurityDescriptor.S deleted file mode 100644 index d9a61725e..000000000 --- a/libc/nt/ntdll/RtlSetDaclSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetDaclSecurityDescriptor,RtlSetDaclSecurityDescriptor diff --git a/libc/nt/ntdll/RtlSetDynamicTimeZoneInformation.S b/libc/nt/ntdll/RtlSetDynamicTimeZoneInformation.S deleted file mode 100644 index fa32d7d13..000000000 --- a/libc/nt/ntdll/RtlSetDynamicTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetDynamicTimeZoneInformation,RtlSetDynamicTimeZoneInformation diff --git a/libc/nt/ntdll/RtlSetEnvironmentStrings.S b/libc/nt/ntdll/RtlSetEnvironmentStrings.S deleted file mode 100644 index f3cba1e58..000000000 --- a/libc/nt/ntdll/RtlSetEnvironmentStrings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetEnvironmentStrings,RtlSetEnvironmentStrings diff --git a/libc/nt/ntdll/RtlSetEnvironmentVar.S b/libc/nt/ntdll/RtlSetEnvironmentVar.S deleted file mode 100644 index e83fca66e..000000000 --- a/libc/nt/ntdll/RtlSetEnvironmentVar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetEnvironmentVar,RtlSetEnvironmentVar diff --git a/libc/nt/ntdll/RtlSetEnvironmentVariable.S b/libc/nt/ntdll/RtlSetEnvironmentVariable.S deleted file mode 100644 index 73d6d9613..000000000 --- a/libc/nt/ntdll/RtlSetEnvironmentVariable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetEnvironmentVariable,RtlSetEnvironmentVariable diff --git a/libc/nt/ntdll/RtlSetExtendedFeaturesMask.S b/libc/nt/ntdll/RtlSetExtendedFeaturesMask.S deleted file mode 100644 index 7cccf7dbf..000000000 --- a/libc/nt/ntdll/RtlSetExtendedFeaturesMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetExtendedFeaturesMask,RtlSetExtendedFeaturesMask diff --git a/libc/nt/ntdll/RtlSetGroupSecurityDescriptor.S b/libc/nt/ntdll/RtlSetGroupSecurityDescriptor.S deleted file mode 100644 index 3d3baf239..000000000 --- a/libc/nt/ntdll/RtlSetGroupSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetGroupSecurityDescriptor,RtlSetGroupSecurityDescriptor diff --git a/libc/nt/ntdll/RtlSetHeapInformation.S b/libc/nt/ntdll/RtlSetHeapInformation.S deleted file mode 100644 index 45484bb3e..000000000 --- a/libc/nt/ntdll/RtlSetHeapInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetHeapInformation,RtlSetHeapInformation diff --git a/libc/nt/ntdll/RtlSetImageMitigationPolicy.S b/libc/nt/ntdll/RtlSetImageMitigationPolicy.S deleted file mode 100644 index f8968f81b..000000000 --- a/libc/nt/ntdll/RtlSetImageMitigationPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetImageMitigationPolicy,RtlSetImageMitigationPolicy diff --git a/libc/nt/ntdll/RtlSetInformationAcl.S b/libc/nt/ntdll/RtlSetInformationAcl.S deleted file mode 100644 index c9b11d622..000000000 --- a/libc/nt/ntdll/RtlSetInformationAcl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetInformationAcl,RtlSetInformationAcl diff --git a/libc/nt/ntdll/RtlSetIoCompletionCallback.S b/libc/nt/ntdll/RtlSetIoCompletionCallback.S deleted file mode 100644 index 1251c03a6..000000000 --- a/libc/nt/ntdll/RtlSetIoCompletionCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetIoCompletionCallback,RtlSetIoCompletionCallback diff --git a/libc/nt/ntdll/RtlSetLastWin32Error.S b/libc/nt/ntdll/RtlSetLastWin32Error.S deleted file mode 100644 index 1fc5a6dba..000000000 --- a/libc/nt/ntdll/RtlSetLastWin32Error.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetLastWin32Error,RtlSetLastWin32Error diff --git a/libc/nt/ntdll/RtlSetLastWin32ErrorAndNtStatusFromNtStatus.S b/libc/nt/ntdll/RtlSetLastWin32ErrorAndNtStatusFromNtStatus.S deleted file mode 100644 index c3da8cb2d..000000000 --- a/libc/nt/ntdll/RtlSetLastWin32ErrorAndNtStatusFromNtStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetLastWin32ErrorAndNtStatusFromNtStatus,RtlSetLastWin32ErrorAndNtStatusFromNtStatus diff --git a/libc/nt/ntdll/RtlSetMemoryStreamSize.S b/libc/nt/ntdll/RtlSetMemoryStreamSize.S deleted file mode 100644 index a84280960..000000000 --- a/libc/nt/ntdll/RtlSetMemoryStreamSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetMemoryStreamSize,RtlSetMemoryStreamSize diff --git a/libc/nt/ntdll/RtlSetOwnerSecurityDescriptor.S b/libc/nt/ntdll/RtlSetOwnerSecurityDescriptor.S deleted file mode 100644 index 5476bb568..000000000 --- a/libc/nt/ntdll/RtlSetOwnerSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetOwnerSecurityDescriptor,RtlSetOwnerSecurityDescriptor diff --git a/libc/nt/ntdll/RtlSetPortableOperatingSystem.S b/libc/nt/ntdll/RtlSetPortableOperatingSystem.S deleted file mode 100644 index fa0580f52..000000000 --- a/libc/nt/ntdll/RtlSetPortableOperatingSystem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetPortableOperatingSystem,RtlSetPortableOperatingSystem diff --git a/libc/nt/ntdll/RtlSetProcessDebugInformation.S b/libc/nt/ntdll/RtlSetProcessDebugInformation.S deleted file mode 100644 index b1dc93505..000000000 --- a/libc/nt/ntdll/RtlSetProcessDebugInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetProcessDebugInformation,RtlSetProcessDebugInformation diff --git a/libc/nt/ntdll/RtlSetProcessIsCritical.S b/libc/nt/ntdll/RtlSetProcessIsCritical.S deleted file mode 100644 index 2dfc8bd09..000000000 --- a/libc/nt/ntdll/RtlSetProcessIsCritical.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetProcessIsCritical,RtlSetProcessIsCritical diff --git a/libc/nt/ntdll/RtlSetProcessPlaceholderCompatibilityMode.S b/libc/nt/ntdll/RtlSetProcessPlaceholderCompatibilityMode.S deleted file mode 100644 index ffc821078..000000000 --- a/libc/nt/ntdll/RtlSetProcessPlaceholderCompatibilityMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetProcessPlaceholderCompatibilityMode,RtlSetProcessPlaceholderCompatibilityMode diff --git a/libc/nt/ntdll/RtlSetProcessPreferredUILanguages.S b/libc/nt/ntdll/RtlSetProcessPreferredUILanguages.S deleted file mode 100644 index 368d189c9..000000000 --- a/libc/nt/ntdll/RtlSetProcessPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetProcessPreferredUILanguages,RtlSetProcessPreferredUILanguages diff --git a/libc/nt/ntdll/RtlSetProtectedPolicy.S b/libc/nt/ntdll/RtlSetProtectedPolicy.S deleted file mode 100644 index 98cb1cc93..000000000 --- a/libc/nt/ntdll/RtlSetProtectedPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetProtectedPolicy,RtlSetProtectedPolicy diff --git a/libc/nt/ntdll/RtlSetProxiedProcessId.S b/libc/nt/ntdll/RtlSetProxiedProcessId.S deleted file mode 100644 index 3a4978950..000000000 --- a/libc/nt/ntdll/RtlSetProxiedProcessId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetProxiedProcessId,RtlSetProxiedProcessId diff --git a/libc/nt/ntdll/RtlSetSaclSecurityDescriptor.S b/libc/nt/ntdll/RtlSetSaclSecurityDescriptor.S deleted file mode 100644 index 9c0c7e235..000000000 --- a/libc/nt/ntdll/RtlSetSaclSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetSaclSecurityDescriptor,RtlSetSaclSecurityDescriptor diff --git a/libc/nt/ntdll/RtlSetSearchPathMode.S b/libc/nt/ntdll/RtlSetSearchPathMode.S deleted file mode 100644 index 2dc71af66..000000000 --- a/libc/nt/ntdll/RtlSetSearchPathMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetSearchPathMode,RtlSetSearchPathMode diff --git a/libc/nt/ntdll/RtlSetSecurityDescriptorRMControl.S b/libc/nt/ntdll/RtlSetSecurityDescriptorRMControl.S deleted file mode 100644 index 5cb144ad2..000000000 --- a/libc/nt/ntdll/RtlSetSecurityDescriptorRMControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetSecurityDescriptorRMControl,RtlSetSecurityDescriptorRMControl diff --git a/libc/nt/ntdll/RtlSetSecurityObject.S b/libc/nt/ntdll/RtlSetSecurityObject.S deleted file mode 100644 index 7bfb64bbc..000000000 --- a/libc/nt/ntdll/RtlSetSecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetSecurityObject,RtlSetSecurityObject diff --git a/libc/nt/ntdll/RtlSetSecurityObjectEx.S b/libc/nt/ntdll/RtlSetSecurityObjectEx.S deleted file mode 100644 index 6b7783907..000000000 --- a/libc/nt/ntdll/RtlSetSecurityObjectEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetSecurityObjectEx,RtlSetSecurityObjectEx diff --git a/libc/nt/ntdll/RtlSetSystemBootStatus.S b/libc/nt/ntdll/RtlSetSystemBootStatus.S deleted file mode 100644 index eecd01818..000000000 --- a/libc/nt/ntdll/RtlSetSystemBootStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetSystemBootStatus,RtlSetSystemBootStatus diff --git a/libc/nt/ntdll/RtlSetSystemBootStatusEx.S b/libc/nt/ntdll/RtlSetSystemBootStatusEx.S deleted file mode 100644 index 3d9b69265..000000000 --- a/libc/nt/ntdll/RtlSetSystemBootStatusEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetSystemBootStatusEx,RtlSetSystemBootStatusEx diff --git a/libc/nt/ntdll/RtlSetThreadErrorMode.S b/libc/nt/ntdll/RtlSetThreadErrorMode.S deleted file mode 100644 index 51ae89497..000000000 --- a/libc/nt/ntdll/RtlSetThreadErrorMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetThreadErrorMode,RtlSetThreadErrorMode diff --git a/libc/nt/ntdll/RtlSetThreadIsCritical.S b/libc/nt/ntdll/RtlSetThreadIsCritical.S deleted file mode 100644 index 6d821d21e..000000000 --- a/libc/nt/ntdll/RtlSetThreadIsCritical.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetThreadIsCritical,RtlSetThreadIsCritical diff --git a/libc/nt/ntdll/RtlSetThreadPlaceholderCompatibilityMode.S b/libc/nt/ntdll/RtlSetThreadPlaceholderCompatibilityMode.S deleted file mode 100644 index c7fc976c1..000000000 --- a/libc/nt/ntdll/RtlSetThreadPlaceholderCompatibilityMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetThreadPlaceholderCompatibilityMode,RtlSetThreadPlaceholderCompatibilityMode diff --git a/libc/nt/ntdll/RtlSetThreadPoolStartFunc.S b/libc/nt/ntdll/RtlSetThreadPoolStartFunc.S deleted file mode 100644 index e29d3f8b5..000000000 --- a/libc/nt/ntdll/RtlSetThreadPoolStartFunc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetThreadPoolStartFunc,RtlSetThreadPoolStartFunc diff --git a/libc/nt/ntdll/RtlSetThreadPreferredUILanguages.S b/libc/nt/ntdll/RtlSetThreadPreferredUILanguages.S deleted file mode 100644 index 30494d421..000000000 --- a/libc/nt/ntdll/RtlSetThreadPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetThreadPreferredUILanguages,RtlSetThreadPreferredUILanguages diff --git a/libc/nt/ntdll/RtlSetThreadSubProcessTag.S b/libc/nt/ntdll/RtlSetThreadSubProcessTag.S deleted file mode 100644 index 2eb57d113..000000000 --- a/libc/nt/ntdll/RtlSetThreadSubProcessTag.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetThreadSubProcessTag,RtlSetThreadSubProcessTag diff --git a/libc/nt/ntdll/RtlSetThreadWorkOnBehalfTicket.S b/libc/nt/ntdll/RtlSetThreadWorkOnBehalfTicket.S deleted file mode 100644 index 4d2ab0cc1..000000000 --- a/libc/nt/ntdll/RtlSetThreadWorkOnBehalfTicket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetThreadWorkOnBehalfTicket,RtlSetThreadWorkOnBehalfTicket diff --git a/libc/nt/ntdll/RtlSetTimeZoneInformation.S b/libc/nt/ntdll/RtlSetTimeZoneInformation.S deleted file mode 100644 index 380ad7830..000000000 --- a/libc/nt/ntdll/RtlSetTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetTimeZoneInformation,RtlSetTimeZoneInformation diff --git a/libc/nt/ntdll/RtlSetTimer.S b/libc/nt/ntdll/RtlSetTimer.S deleted file mode 100644 index f4dc06bcf..000000000 --- a/libc/nt/ntdll/RtlSetTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetTimer,RtlSetTimer diff --git a/libc/nt/ntdll/RtlSetUmsThreadInformation.S b/libc/nt/ntdll/RtlSetUmsThreadInformation.S deleted file mode 100644 index 73ed24e15..000000000 --- a/libc/nt/ntdll/RtlSetUmsThreadInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetUmsThreadInformation,RtlSetUmsThreadInformation diff --git a/libc/nt/ntdll/RtlSetUnhandledExceptionFilter.S b/libc/nt/ntdll/RtlSetUnhandledExceptionFilter.S deleted file mode 100644 index fb186f087..000000000 --- a/libc/nt/ntdll/RtlSetUnhandledExceptionFilter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetUnhandledExceptionFilter,RtlSetUnhandledExceptionFilter diff --git a/libc/nt/ntdll/RtlSetUserFlagsHeap.S b/libc/nt/ntdll/RtlSetUserFlagsHeap.S deleted file mode 100644 index a404e97b4..000000000 --- a/libc/nt/ntdll/RtlSetUserFlagsHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetUserFlagsHeap,RtlSetUserFlagsHeap diff --git a/libc/nt/ntdll/RtlSetUserValueHeap.S b/libc/nt/ntdll/RtlSetUserValueHeap.S deleted file mode 100644 index 8b8dbc271..000000000 --- a/libc/nt/ntdll/RtlSetUserValueHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSetUserValueHeap,RtlSetUserValueHeap diff --git a/libc/nt/ntdll/RtlSidDominates.S b/libc/nt/ntdll/RtlSidDominates.S deleted file mode 100644 index c1f3e5c21..000000000 --- a/libc/nt/ntdll/RtlSidDominates.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSidDominates,RtlSidDominates diff --git a/libc/nt/ntdll/RtlSidDominatesForTrust.S b/libc/nt/ntdll/RtlSidDominatesForTrust.S deleted file mode 100644 index f1518d649..000000000 --- a/libc/nt/ntdll/RtlSidDominatesForTrust.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSidDominatesForTrust,RtlSidDominatesForTrust diff --git a/libc/nt/ntdll/RtlSidEqualLevel.S b/libc/nt/ntdll/RtlSidEqualLevel.S deleted file mode 100644 index 5289d535a..000000000 --- a/libc/nt/ntdll/RtlSidEqualLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSidEqualLevel,RtlSidEqualLevel diff --git a/libc/nt/ntdll/RtlSidHashInitialize.S b/libc/nt/ntdll/RtlSidHashInitialize.S deleted file mode 100644 index 4c9701a3c..000000000 --- a/libc/nt/ntdll/RtlSidHashInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSidHashInitialize,RtlSidHashInitialize diff --git a/libc/nt/ntdll/RtlSidHashLookup.S b/libc/nt/ntdll/RtlSidHashLookup.S deleted file mode 100644 index 05d119038..000000000 --- a/libc/nt/ntdll/RtlSidHashLookup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSidHashLookup,RtlSidHashLookup diff --git a/libc/nt/ntdll/RtlSidIsHigherLevel.S b/libc/nt/ntdll/RtlSidIsHigherLevel.S deleted file mode 100644 index 92462a2bb..000000000 --- a/libc/nt/ntdll/RtlSidIsHigherLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSidIsHigherLevel,RtlSidIsHigherLevel diff --git a/libc/nt/ntdll/RtlSleepConditionVariableCS.S b/libc/nt/ntdll/RtlSleepConditionVariableCS.S deleted file mode 100644 index 816b68520..000000000 --- a/libc/nt/ntdll/RtlSleepConditionVariableCS.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSleepConditionVariableCS,RtlSleepConditionVariableCS diff --git a/libc/nt/ntdll/RtlSleepConditionVariableSRW.S b/libc/nt/ntdll/RtlSleepConditionVariableSRW.S deleted file mode 100644 index 6a47d40e8..000000000 --- a/libc/nt/ntdll/RtlSleepConditionVariableSRW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSleepConditionVariableSRW,RtlSleepConditionVariableSRW diff --git a/libc/nt/ntdll/RtlSplay.S b/libc/nt/ntdll/RtlSplay.S deleted file mode 100644 index 67cbdbf20..000000000 --- a/libc/nt/ntdll/RtlSplay.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSplay,RtlSplay diff --git a/libc/nt/ntdll/RtlStartRXact.S b/libc/nt/ntdll/RtlStartRXact.S deleted file mode 100644 index 338e4df50..000000000 --- a/libc/nt/ntdll/RtlStartRXact.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlStartRXact,RtlStartRXact diff --git a/libc/nt/ntdll/RtlStatMemoryStream.S b/libc/nt/ntdll/RtlStatMemoryStream.S deleted file mode 100644 index ae247dac5..000000000 --- a/libc/nt/ntdll/RtlStatMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlStatMemoryStream,RtlStatMemoryStream diff --git a/libc/nt/ntdll/RtlStringFromGUID.S b/libc/nt/ntdll/RtlStringFromGUID.S deleted file mode 100644 index 6a4147e83..000000000 --- a/libc/nt/ntdll/RtlStringFromGUID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlStringFromGUID,RtlStringFromGUID diff --git a/libc/nt/ntdll/RtlStringFromGUIDEx.S b/libc/nt/ntdll/RtlStringFromGUIDEx.S deleted file mode 100644 index 2abb30eb3..000000000 --- a/libc/nt/ntdll/RtlStringFromGUIDEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlStringFromGUIDEx,RtlStringFromGUIDEx diff --git a/libc/nt/ntdll/RtlStronglyEnumerateEntryHashTable.S b/libc/nt/ntdll/RtlStronglyEnumerateEntryHashTable.S deleted file mode 100644 index e4d82c5bc..000000000 --- a/libc/nt/ntdll/RtlStronglyEnumerateEntryHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlStronglyEnumerateEntryHashTable,RtlStronglyEnumerateEntryHashTable diff --git a/libc/nt/ntdll/RtlSubAuthorityCountSid.S b/libc/nt/ntdll/RtlSubAuthorityCountSid.S deleted file mode 100644 index 73d75f218..000000000 --- a/libc/nt/ntdll/RtlSubAuthorityCountSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSubAuthorityCountSid,RtlSubAuthorityCountSid diff --git a/libc/nt/ntdll/RtlSubAuthoritySid.S b/libc/nt/ntdll/RtlSubAuthoritySid.S deleted file mode 100644 index da5447b01..000000000 --- a/libc/nt/ntdll/RtlSubAuthoritySid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSubAuthoritySid,RtlSubAuthoritySid diff --git a/libc/nt/ntdll/RtlSubscribeWnfStateChangeNotification.S b/libc/nt/ntdll/RtlSubscribeWnfStateChangeNotification.S deleted file mode 100644 index d33ef2b17..000000000 --- a/libc/nt/ntdll/RtlSubscribeWnfStateChangeNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSubscribeWnfStateChangeNotification,RtlSubscribeWnfStateChangeNotification diff --git a/libc/nt/ntdll/RtlSubtreePredecessor.S b/libc/nt/ntdll/RtlSubtreePredecessor.S deleted file mode 100644 index 8dd800b36..000000000 --- a/libc/nt/ntdll/RtlSubtreePredecessor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSubtreePredecessor,RtlSubtreePredecessor diff --git a/libc/nt/ntdll/RtlSubtreeSuccessor.S b/libc/nt/ntdll/RtlSubtreeSuccessor.S deleted file mode 100644 index 4545a1eeb..000000000 --- a/libc/nt/ntdll/RtlSubtreeSuccessor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSubtreeSuccessor,RtlSubtreeSuccessor diff --git a/libc/nt/ntdll/RtlSwitchedVVI.S b/libc/nt/ntdll/RtlSwitchedVVI.S deleted file mode 100644 index c401e5e0e..000000000 --- a/libc/nt/ntdll/RtlSwitchedVVI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSwitchedVVI,RtlSwitchedVVI diff --git a/libc/nt/ntdll/RtlSystemTimeToLocalTime.S b/libc/nt/ntdll/RtlSystemTimeToLocalTime.S deleted file mode 100644 index 250509ed7..000000000 --- a/libc/nt/ntdll/RtlSystemTimeToLocalTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlSystemTimeToLocalTime,RtlSystemTimeToLocalTime diff --git a/libc/nt/ntdll/RtlTestAndPublishWnfStateData.S b/libc/nt/ntdll/RtlTestAndPublishWnfStateData.S deleted file mode 100644 index 1aa4631ca..000000000 --- a/libc/nt/ntdll/RtlTestAndPublishWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTestAndPublishWnfStateData,RtlTestAndPublishWnfStateData diff --git a/libc/nt/ntdll/RtlTestBit.S b/libc/nt/ntdll/RtlTestBit.S deleted file mode 100644 index 979625320..000000000 --- a/libc/nt/ntdll/RtlTestBit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTestBit,RtlTestBit diff --git a/libc/nt/ntdll/RtlTestBitEx.S b/libc/nt/ntdll/RtlTestBitEx.S deleted file mode 100644 index 234410728..000000000 --- a/libc/nt/ntdll/RtlTestBitEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTestBitEx,RtlTestBitEx diff --git a/libc/nt/ntdll/RtlTestProtectedAccess.S b/libc/nt/ntdll/RtlTestProtectedAccess.S deleted file mode 100644 index 0832a9f9b..000000000 --- a/libc/nt/ntdll/RtlTestProtectedAccess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTestProtectedAccess,RtlTestProtectedAccess diff --git a/libc/nt/ntdll/RtlTimeFieldsToTime.S b/libc/nt/ntdll/RtlTimeFieldsToTime.S deleted file mode 100644 index 4a20128d3..000000000 --- a/libc/nt/ntdll/RtlTimeFieldsToTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTimeFieldsToTime,RtlTimeFieldsToTime diff --git a/libc/nt/ntdll/RtlTimeToElapsedTimeFields.S b/libc/nt/ntdll/RtlTimeToElapsedTimeFields.S deleted file mode 100644 index bed8bf2bf..000000000 --- a/libc/nt/ntdll/RtlTimeToElapsedTimeFields.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTimeToElapsedTimeFields,RtlTimeToElapsedTimeFields diff --git a/libc/nt/ntdll/RtlTimeToSecondsSince1970.S b/libc/nt/ntdll/RtlTimeToSecondsSince1970.S deleted file mode 100644 index cca5e4b58..000000000 --- a/libc/nt/ntdll/RtlTimeToSecondsSince1970.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTimeToSecondsSince1970,RtlTimeToSecondsSince1970 diff --git a/libc/nt/ntdll/RtlTimeToSecondsSince1980.S b/libc/nt/ntdll/RtlTimeToSecondsSince1980.S deleted file mode 100644 index c21aedb99..000000000 --- a/libc/nt/ntdll/RtlTimeToSecondsSince1980.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTimeToSecondsSince1980,RtlTimeToSecondsSince1980 diff --git a/libc/nt/ntdll/RtlTimeToTimeFields.S b/libc/nt/ntdll/RtlTimeToTimeFields.S deleted file mode 100644 index 6528b4fac..000000000 --- a/libc/nt/ntdll/RtlTimeToTimeFields.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTimeToTimeFields,RtlTimeToTimeFields diff --git a/libc/nt/ntdll/RtlTraceDatabaseAdd.S b/libc/nt/ntdll/RtlTraceDatabaseAdd.S deleted file mode 100644 index fb88fb96a..000000000 --- a/libc/nt/ntdll/RtlTraceDatabaseAdd.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTraceDatabaseAdd,RtlTraceDatabaseAdd diff --git a/libc/nt/ntdll/RtlTraceDatabaseCreate.S b/libc/nt/ntdll/RtlTraceDatabaseCreate.S deleted file mode 100644 index 80f6cd1da..000000000 --- a/libc/nt/ntdll/RtlTraceDatabaseCreate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTraceDatabaseCreate,RtlTraceDatabaseCreate diff --git a/libc/nt/ntdll/RtlTraceDatabaseDestroy.S b/libc/nt/ntdll/RtlTraceDatabaseDestroy.S deleted file mode 100644 index 9db5a63be..000000000 --- a/libc/nt/ntdll/RtlTraceDatabaseDestroy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTraceDatabaseDestroy,RtlTraceDatabaseDestroy diff --git a/libc/nt/ntdll/RtlTraceDatabaseEnumerate.S b/libc/nt/ntdll/RtlTraceDatabaseEnumerate.S deleted file mode 100644 index b317cc03b..000000000 --- a/libc/nt/ntdll/RtlTraceDatabaseEnumerate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTraceDatabaseEnumerate,RtlTraceDatabaseEnumerate diff --git a/libc/nt/ntdll/RtlTraceDatabaseFind.S b/libc/nt/ntdll/RtlTraceDatabaseFind.S deleted file mode 100644 index c710d19ff..000000000 --- a/libc/nt/ntdll/RtlTraceDatabaseFind.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTraceDatabaseFind,RtlTraceDatabaseFind diff --git a/libc/nt/ntdll/RtlTraceDatabaseLock.S b/libc/nt/ntdll/RtlTraceDatabaseLock.S deleted file mode 100644 index 2d50ba7f5..000000000 --- a/libc/nt/ntdll/RtlTraceDatabaseLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTraceDatabaseLock,RtlTraceDatabaseLock diff --git a/libc/nt/ntdll/RtlTraceDatabaseUnlock.S b/libc/nt/ntdll/RtlTraceDatabaseUnlock.S deleted file mode 100644 index 3c2d92517..000000000 --- a/libc/nt/ntdll/RtlTraceDatabaseUnlock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTraceDatabaseUnlock,RtlTraceDatabaseUnlock diff --git a/libc/nt/ntdll/RtlTraceDatabaseValidate.S b/libc/nt/ntdll/RtlTraceDatabaseValidate.S deleted file mode 100644 index 8d1b3ff7f..000000000 --- a/libc/nt/ntdll/RtlTraceDatabaseValidate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTraceDatabaseValidate,RtlTraceDatabaseValidate diff --git a/libc/nt/ntdll/RtlTryAcquirePebLock.S b/libc/nt/ntdll/RtlTryAcquirePebLock.S deleted file mode 100644 index 20b07f4e0..000000000 --- a/libc/nt/ntdll/RtlTryAcquirePebLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTryAcquirePebLock,RtlTryAcquirePebLock diff --git a/libc/nt/ntdll/RtlTryAcquireSRWLockExclusive.S b/libc/nt/ntdll/RtlTryAcquireSRWLockExclusive.S deleted file mode 100644 index 1870aec21..000000000 --- a/libc/nt/ntdll/RtlTryAcquireSRWLockExclusive.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTryAcquireSRWLockExclusive,RtlTryAcquireSRWLockExclusive diff --git a/libc/nt/ntdll/RtlTryAcquireSRWLockShared.S b/libc/nt/ntdll/RtlTryAcquireSRWLockShared.S deleted file mode 100644 index 497abf359..000000000 --- a/libc/nt/ntdll/RtlTryAcquireSRWLockShared.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTryAcquireSRWLockShared,RtlTryAcquireSRWLockShared diff --git a/libc/nt/ntdll/RtlTryConvertSRWLockSharedToExclusiveOrRelease.S b/libc/nt/ntdll/RtlTryConvertSRWLockSharedToExclusiveOrRelease.S deleted file mode 100644 index e8e6b26be..000000000 --- a/libc/nt/ntdll/RtlTryConvertSRWLockSharedToExclusiveOrRelease.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlTryConvertSRWLockSharedToExclusiveOrRelease,RtlTryConvertSRWLockSharedToExclusiveOrRelease diff --git a/libc/nt/ntdll/RtlUTF8ToUnicodeN.S b/libc/nt/ntdll/RtlUTF8ToUnicodeN.S deleted file mode 100644 index 978786696..000000000 --- a/libc/nt/ntdll/RtlUTF8ToUnicodeN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUTF8ToUnicodeN,RtlUTF8ToUnicodeN diff --git a/libc/nt/ntdll/RtlUmsThreadYield.S b/libc/nt/ntdll/RtlUmsThreadYield.S deleted file mode 100644 index 912e4cd85..000000000 --- a/libc/nt/ntdll/RtlUmsThreadYield.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUmsThreadYield,RtlUmsThreadYield diff --git a/libc/nt/ntdll/RtlUnhandledExceptionFilter.S b/libc/nt/ntdll/RtlUnhandledExceptionFilter.S deleted file mode 100644 index 75325a627..000000000 --- a/libc/nt/ntdll/RtlUnhandledExceptionFilter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnhandledExceptionFilter,RtlUnhandledExceptionFilter diff --git a/libc/nt/ntdll/RtlUnhandledExceptionFilter2.S b/libc/nt/ntdll/RtlUnhandledExceptionFilter2.S deleted file mode 100644 index b5f2e68e5..000000000 --- a/libc/nt/ntdll/RtlUnhandledExceptionFilter2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnhandledExceptionFilter2,RtlUnhandledExceptionFilter2 diff --git a/libc/nt/ntdll/RtlUnicodeStringToAnsiSize.S b/libc/nt/ntdll/RtlUnicodeStringToAnsiSize.S deleted file mode 100644 index 6c8742942..000000000 --- a/libc/nt/ntdll/RtlUnicodeStringToAnsiSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeStringToAnsiSize,RtlUnicodeStringToAnsiSize diff --git a/libc/nt/ntdll/RtlUnicodeStringToAnsiString.S b/libc/nt/ntdll/RtlUnicodeStringToAnsiString.S deleted file mode 100644 index cabf312c9..000000000 --- a/libc/nt/ntdll/RtlUnicodeStringToAnsiString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeStringToAnsiString,RtlUnicodeStringToAnsiString diff --git a/libc/nt/ntdll/RtlUnicodeStringToCountedOemString.S b/libc/nt/ntdll/RtlUnicodeStringToCountedOemString.S deleted file mode 100644 index 176a662ea..000000000 --- a/libc/nt/ntdll/RtlUnicodeStringToCountedOemString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeStringToCountedOemString,RtlUnicodeStringToCountedOemString diff --git a/libc/nt/ntdll/RtlUnicodeStringToInteger.S b/libc/nt/ntdll/RtlUnicodeStringToInteger.S deleted file mode 100644 index cfe07e145..000000000 --- a/libc/nt/ntdll/RtlUnicodeStringToInteger.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeStringToInteger,RtlUnicodeStringToInteger diff --git a/libc/nt/ntdll/RtlUnicodeStringToOemSize.S b/libc/nt/ntdll/RtlUnicodeStringToOemSize.S deleted file mode 100644 index 2675e15db..000000000 --- a/libc/nt/ntdll/RtlUnicodeStringToOemSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeStringToOemSize,RtlUnicodeStringToOemSize diff --git a/libc/nt/ntdll/RtlUnicodeStringToOemString.S b/libc/nt/ntdll/RtlUnicodeStringToOemString.S deleted file mode 100644 index d9b4624b0..000000000 --- a/libc/nt/ntdll/RtlUnicodeStringToOemString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeStringToOemString,RtlUnicodeStringToOemString diff --git a/libc/nt/ntdll/RtlUnicodeToCustomCPN.S b/libc/nt/ntdll/RtlUnicodeToCustomCPN.S deleted file mode 100644 index baedafc44..000000000 --- a/libc/nt/ntdll/RtlUnicodeToCustomCPN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeToCustomCPN,RtlUnicodeToCustomCPN diff --git a/libc/nt/ntdll/RtlUnicodeToMultiByteN.S b/libc/nt/ntdll/RtlUnicodeToMultiByteN.S deleted file mode 100644 index 231f30240..000000000 --- a/libc/nt/ntdll/RtlUnicodeToMultiByteN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeToMultiByteN,RtlUnicodeToMultiByteN diff --git a/libc/nt/ntdll/RtlUnicodeToMultiByteSize.S b/libc/nt/ntdll/RtlUnicodeToMultiByteSize.S deleted file mode 100644 index e921dede5..000000000 --- a/libc/nt/ntdll/RtlUnicodeToMultiByteSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeToMultiByteSize,RtlUnicodeToMultiByteSize diff --git a/libc/nt/ntdll/RtlUnicodeToOemN.S b/libc/nt/ntdll/RtlUnicodeToOemN.S deleted file mode 100644 index d27a654c4..000000000 --- a/libc/nt/ntdll/RtlUnicodeToOemN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeToOemN,RtlUnicodeToOemN diff --git a/libc/nt/ntdll/RtlUnicodeToUTF8N.S b/libc/nt/ntdll/RtlUnicodeToUTF8N.S deleted file mode 100644 index cab62b73d..000000000 --- a/libc/nt/ntdll/RtlUnicodeToUTF8N.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnicodeToUTF8N,RtlUnicodeToUTF8N diff --git a/libc/nt/ntdll/RtlUniform.S b/libc/nt/ntdll/RtlUniform.S deleted file mode 100644 index 89518952b..000000000 --- a/libc/nt/ntdll/RtlUniform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUniform,RtlUniform diff --git a/libc/nt/ntdll/RtlUnlockBootStatusData.S b/libc/nt/ntdll/RtlUnlockBootStatusData.S deleted file mode 100644 index 8f10708df..000000000 --- a/libc/nt/ntdll/RtlUnlockBootStatusData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnlockBootStatusData,RtlUnlockBootStatusData diff --git a/libc/nt/ntdll/RtlUnlockCurrentThread.S b/libc/nt/ntdll/RtlUnlockCurrentThread.S deleted file mode 100644 index 59bfbe5db..000000000 --- a/libc/nt/ntdll/RtlUnlockCurrentThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnlockCurrentThread,RtlUnlockCurrentThread diff --git a/libc/nt/ntdll/RtlUnlockMemoryBlockLookaside.S b/libc/nt/ntdll/RtlUnlockMemoryBlockLookaside.S deleted file mode 100644 index 9d712257d..000000000 --- a/libc/nt/ntdll/RtlUnlockMemoryBlockLookaside.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnlockMemoryBlockLookaside,RtlUnlockMemoryBlockLookaside diff --git a/libc/nt/ntdll/RtlUnlockMemoryStreamRegion.S b/libc/nt/ntdll/RtlUnlockMemoryStreamRegion.S deleted file mode 100644 index ed02fa5cb..000000000 --- a/libc/nt/ntdll/RtlUnlockMemoryStreamRegion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnlockMemoryStreamRegion,RtlUnlockMemoryStreamRegion diff --git a/libc/nt/ntdll/RtlUnlockMemoryZone.S b/libc/nt/ntdll/RtlUnlockMemoryZone.S deleted file mode 100644 index 0ed5e2b0c..000000000 --- a/libc/nt/ntdll/RtlUnlockMemoryZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnlockMemoryZone,RtlUnlockMemoryZone diff --git a/libc/nt/ntdll/RtlUnlockModuleSection.S b/libc/nt/ntdll/RtlUnlockModuleSection.S deleted file mode 100644 index d5c46777c..000000000 --- a/libc/nt/ntdll/RtlUnlockModuleSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnlockModuleSection,RtlUnlockModuleSection diff --git a/libc/nt/ntdll/RtlUnsubscribeWnfNotificationWaitForCompletion.S b/libc/nt/ntdll/RtlUnsubscribeWnfNotificationWaitForCompletion.S deleted file mode 100644 index 0dbedbe22..000000000 --- a/libc/nt/ntdll/RtlUnsubscribeWnfNotificationWaitForCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnsubscribeWnfNotificationWaitForCompletion,RtlUnsubscribeWnfNotificationWaitForCompletion diff --git a/libc/nt/ntdll/RtlUnsubscribeWnfNotificationWithCompletionCallback.S b/libc/nt/ntdll/RtlUnsubscribeWnfNotificationWithCompletionCallback.S deleted file mode 100644 index a2ac48682..000000000 --- a/libc/nt/ntdll/RtlUnsubscribeWnfNotificationWithCompletionCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnsubscribeWnfNotificationWithCompletionCallback,RtlUnsubscribeWnfNotificationWithCompletionCallback diff --git a/libc/nt/ntdll/RtlUnsubscribeWnfStateChangeNotification.S b/libc/nt/ntdll/RtlUnsubscribeWnfStateChangeNotification.S deleted file mode 100644 index 4f38c207a..000000000 --- a/libc/nt/ntdll/RtlUnsubscribeWnfStateChangeNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnsubscribeWnfStateChangeNotification,RtlUnsubscribeWnfStateChangeNotification diff --git a/libc/nt/ntdll/RtlUnwind.S b/libc/nt/ntdll/RtlUnwind.S deleted file mode 100644 index 9064e518e..000000000 --- a/libc/nt/ntdll/RtlUnwind.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnwind,RtlUnwind diff --git a/libc/nt/ntdll/RtlUnwindEx.S b/libc/nt/ntdll/RtlUnwindEx.S deleted file mode 100644 index 02a68dd2f..000000000 --- a/libc/nt/ntdll/RtlUnwindEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUnwindEx,RtlUnwindEx diff --git a/libc/nt/ntdll/RtlUpcaseUnicodeChar.S b/libc/nt/ntdll/RtlUpcaseUnicodeChar.S deleted file mode 100644 index b0fb5b80d..000000000 --- a/libc/nt/ntdll/RtlUpcaseUnicodeChar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpcaseUnicodeChar,RtlUpcaseUnicodeChar diff --git a/libc/nt/ntdll/RtlUpcaseUnicodeString.S b/libc/nt/ntdll/RtlUpcaseUnicodeString.S deleted file mode 100644 index a81510b6f..000000000 --- a/libc/nt/ntdll/RtlUpcaseUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpcaseUnicodeString,RtlUpcaseUnicodeString diff --git a/libc/nt/ntdll/RtlUpcaseUnicodeStringToAnsiString.S b/libc/nt/ntdll/RtlUpcaseUnicodeStringToAnsiString.S deleted file mode 100644 index 34e010370..000000000 --- a/libc/nt/ntdll/RtlUpcaseUnicodeStringToAnsiString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpcaseUnicodeStringToAnsiString,RtlUpcaseUnicodeStringToAnsiString diff --git a/libc/nt/ntdll/RtlUpcaseUnicodeStringToCountedOemString.S b/libc/nt/ntdll/RtlUpcaseUnicodeStringToCountedOemString.S deleted file mode 100644 index 785843f2d..000000000 --- a/libc/nt/ntdll/RtlUpcaseUnicodeStringToCountedOemString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpcaseUnicodeStringToCountedOemString,RtlUpcaseUnicodeStringToCountedOemString diff --git a/libc/nt/ntdll/RtlUpcaseUnicodeStringToOemString.S b/libc/nt/ntdll/RtlUpcaseUnicodeStringToOemString.S deleted file mode 100644 index 54e9cabc5..000000000 --- a/libc/nt/ntdll/RtlUpcaseUnicodeStringToOemString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpcaseUnicodeStringToOemString,RtlUpcaseUnicodeStringToOemString diff --git a/libc/nt/ntdll/RtlUpcaseUnicodeToCustomCPN.S b/libc/nt/ntdll/RtlUpcaseUnicodeToCustomCPN.S deleted file mode 100644 index bc48a9054..000000000 --- a/libc/nt/ntdll/RtlUpcaseUnicodeToCustomCPN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpcaseUnicodeToCustomCPN,RtlUpcaseUnicodeToCustomCPN diff --git a/libc/nt/ntdll/RtlUpcaseUnicodeToMultiByteN.S b/libc/nt/ntdll/RtlUpcaseUnicodeToMultiByteN.S deleted file mode 100644 index 28cb7642f..000000000 --- a/libc/nt/ntdll/RtlUpcaseUnicodeToMultiByteN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpcaseUnicodeToMultiByteN,RtlUpcaseUnicodeToMultiByteN diff --git a/libc/nt/ntdll/RtlUpcaseUnicodeToOemN.S b/libc/nt/ntdll/RtlUpcaseUnicodeToOemN.S deleted file mode 100644 index 3c7da59d4..000000000 --- a/libc/nt/ntdll/RtlUpcaseUnicodeToOemN.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpcaseUnicodeToOemN,RtlUpcaseUnicodeToOemN diff --git a/libc/nt/ntdll/RtlUpdateClonedCriticalSection.S b/libc/nt/ntdll/RtlUpdateClonedCriticalSection.S deleted file mode 100644 index b9cc065d3..000000000 --- a/libc/nt/ntdll/RtlUpdateClonedCriticalSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpdateClonedCriticalSection,RtlUpdateClonedCriticalSection diff --git a/libc/nt/ntdll/RtlUpdateClonedSRWLock.S b/libc/nt/ntdll/RtlUpdateClonedSRWLock.S deleted file mode 100644 index 92729a984..000000000 --- a/libc/nt/ntdll/RtlUpdateClonedSRWLock.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpdateClonedSRWLock,RtlUpdateClonedSRWLock diff --git a/libc/nt/ntdll/RtlUpdateTimer.S b/libc/nt/ntdll/RtlUpdateTimer.S deleted file mode 100644 index 03926b851..000000000 --- a/libc/nt/ntdll/RtlUpdateTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpdateTimer,RtlUpdateTimer diff --git a/libc/nt/ntdll/RtlUpperChar.S b/libc/nt/ntdll/RtlUpperChar.S deleted file mode 100644 index 4ffc95399..000000000 --- a/libc/nt/ntdll/RtlUpperChar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpperChar,RtlUpperChar diff --git a/libc/nt/ntdll/RtlUpperString.S b/libc/nt/ntdll/RtlUpperString.S deleted file mode 100644 index befd31655..000000000 --- a/libc/nt/ntdll/RtlUpperString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUpperString,RtlUpperString diff --git a/libc/nt/ntdll/RtlUserThreadStart.S b/libc/nt/ntdll/RtlUserThreadStart.S deleted file mode 100644 index e7396369a..000000000 --- a/libc/nt/ntdll/RtlUserThreadStart.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlUserThreadStart,RtlUserThreadStart diff --git a/libc/nt/ntdll/RtlValidAcl.S b/libc/nt/ntdll/RtlValidAcl.S deleted file mode 100644 index 889c11efb..000000000 --- a/libc/nt/ntdll/RtlValidAcl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlValidAcl,RtlValidAcl diff --git a/libc/nt/ntdll/RtlValidProcessProtection.S b/libc/nt/ntdll/RtlValidProcessProtection.S deleted file mode 100644 index 70ab4b3ff..000000000 --- a/libc/nt/ntdll/RtlValidProcessProtection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlValidProcessProtection,RtlValidProcessProtection diff --git a/libc/nt/ntdll/RtlValidRelativeSecurityDescriptor.S b/libc/nt/ntdll/RtlValidRelativeSecurityDescriptor.S deleted file mode 100644 index 05d1b7f3f..000000000 --- a/libc/nt/ntdll/RtlValidRelativeSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlValidRelativeSecurityDescriptor,RtlValidRelativeSecurityDescriptor diff --git a/libc/nt/ntdll/RtlValidSecurityDescriptor.S b/libc/nt/ntdll/RtlValidSecurityDescriptor.S deleted file mode 100644 index 5f4b120ac..000000000 --- a/libc/nt/ntdll/RtlValidSecurityDescriptor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlValidSecurityDescriptor,RtlValidSecurityDescriptor diff --git a/libc/nt/ntdll/RtlValidSid.S b/libc/nt/ntdll/RtlValidSid.S deleted file mode 100644 index d21741461..000000000 --- a/libc/nt/ntdll/RtlValidSid.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlValidSid,RtlValidSid diff --git a/libc/nt/ntdll/RtlValidateCorrelationVector.S b/libc/nt/ntdll/RtlValidateCorrelationVector.S deleted file mode 100644 index 952ed415f..000000000 --- a/libc/nt/ntdll/RtlValidateCorrelationVector.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlValidateCorrelationVector,RtlValidateCorrelationVector diff --git a/libc/nt/ntdll/RtlValidateProcessHeaps.S b/libc/nt/ntdll/RtlValidateProcessHeaps.S deleted file mode 100644 index 597cfea04..000000000 --- a/libc/nt/ntdll/RtlValidateProcessHeaps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlValidateProcessHeaps,RtlValidateProcessHeaps diff --git a/libc/nt/ntdll/RtlValidateUnicodeString.S b/libc/nt/ntdll/RtlValidateUnicodeString.S deleted file mode 100644 index 6d651fc51..000000000 --- a/libc/nt/ntdll/RtlValidateUnicodeString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlValidateUnicodeString,RtlValidateUnicodeString diff --git a/libc/nt/ntdll/RtlVerifyVersionInfo.S b/libc/nt/ntdll/RtlVerifyVersionInfo.S deleted file mode 100644 index b37579397..000000000 --- a/libc/nt/ntdll/RtlVerifyVersionInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlVerifyVersionInfo,RtlVerifyVersionInfo diff --git a/libc/nt/ntdll/RtlVirtualUnwind.S b/libc/nt/ntdll/RtlVirtualUnwind.S deleted file mode 100644 index d08452076..000000000 --- a/libc/nt/ntdll/RtlVirtualUnwind.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlVirtualUnwind,RtlVirtualUnwind diff --git a/libc/nt/ntdll/RtlWaitForWnfMetaNotification.S b/libc/nt/ntdll/RtlWaitForWnfMetaNotification.S deleted file mode 100644 index fe1bb0082..000000000 --- a/libc/nt/ntdll/RtlWaitForWnfMetaNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWaitForWnfMetaNotification,RtlWaitForWnfMetaNotification diff --git a/libc/nt/ntdll/RtlWaitOnAddress.S b/libc/nt/ntdll/RtlWaitOnAddress.S deleted file mode 100644 index a2a08feb8..000000000 --- a/libc/nt/ntdll/RtlWaitOnAddress.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWaitOnAddress,RtlWaitOnAddress diff --git a/libc/nt/ntdll/RtlWakeAddressAll.S b/libc/nt/ntdll/RtlWakeAddressAll.S deleted file mode 100644 index bf8368db4..000000000 --- a/libc/nt/ntdll/RtlWakeAddressAll.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWakeAddressAll,RtlWakeAddressAll diff --git a/libc/nt/ntdll/RtlWakeAddressAllNoFence.S b/libc/nt/ntdll/RtlWakeAddressAllNoFence.S deleted file mode 100644 index 9cbd5fcf6..000000000 --- a/libc/nt/ntdll/RtlWakeAddressAllNoFence.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWakeAddressAllNoFence,RtlWakeAddressAllNoFence diff --git a/libc/nt/ntdll/RtlWakeAddressSingle.S b/libc/nt/ntdll/RtlWakeAddressSingle.S deleted file mode 100644 index 597276b96..000000000 --- a/libc/nt/ntdll/RtlWakeAddressSingle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWakeAddressSingle,RtlWakeAddressSingle diff --git a/libc/nt/ntdll/RtlWakeAddressSingleNoFence.S b/libc/nt/ntdll/RtlWakeAddressSingleNoFence.S deleted file mode 100644 index eb5dc8468..000000000 --- a/libc/nt/ntdll/RtlWakeAddressSingleNoFence.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWakeAddressSingleNoFence,RtlWakeAddressSingleNoFence diff --git a/libc/nt/ntdll/RtlWakeAllConditionVariable.S b/libc/nt/ntdll/RtlWakeAllConditionVariable.S deleted file mode 100644 index 9d9268fab..000000000 --- a/libc/nt/ntdll/RtlWakeAllConditionVariable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWakeAllConditionVariable,RtlWakeAllConditionVariable diff --git a/libc/nt/ntdll/RtlWakeConditionVariable.S b/libc/nt/ntdll/RtlWakeConditionVariable.S deleted file mode 100644 index 8ed4cf168..000000000 --- a/libc/nt/ntdll/RtlWakeConditionVariable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWakeConditionVariable,RtlWakeConditionVariable diff --git a/libc/nt/ntdll/RtlWalkFrameChain.S b/libc/nt/ntdll/RtlWalkFrameChain.S deleted file mode 100644 index 2ca1878ae..000000000 --- a/libc/nt/ntdll/RtlWalkFrameChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWalkFrameChain,RtlWalkFrameChain diff --git a/libc/nt/ntdll/RtlWeaklyEnumerateEntryHashTable.S b/libc/nt/ntdll/RtlWeaklyEnumerateEntryHashTable.S deleted file mode 100644 index bdfc66432..000000000 --- a/libc/nt/ntdll/RtlWeaklyEnumerateEntryHashTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWeaklyEnumerateEntryHashTable,RtlWeaklyEnumerateEntryHashTable diff --git a/libc/nt/ntdll/RtlWerpReportException.S b/libc/nt/ntdll/RtlWerpReportException.S deleted file mode 100644 index d70ddb613..000000000 --- a/libc/nt/ntdll/RtlWerpReportException.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWerpReportException,RtlWerpReportException diff --git a/libc/nt/ntdll/RtlWnfCompareChangeStamp.S b/libc/nt/ntdll/RtlWnfCompareChangeStamp.S deleted file mode 100644 index 4a8dc0daa..000000000 --- a/libc/nt/ntdll/RtlWnfCompareChangeStamp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWnfCompareChangeStamp,RtlWnfCompareChangeStamp diff --git a/libc/nt/ntdll/RtlWnfDllUnloadCallback.S b/libc/nt/ntdll/RtlWnfDllUnloadCallback.S deleted file mode 100644 index 28f3591f3..000000000 --- a/libc/nt/ntdll/RtlWnfDllUnloadCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWnfDllUnloadCallback,RtlWnfDllUnloadCallback diff --git a/libc/nt/ntdll/RtlWriteMemoryStream.S b/libc/nt/ntdll/RtlWriteMemoryStream.S deleted file mode 100644 index 77f578d99..000000000 --- a/libc/nt/ntdll/RtlWriteMemoryStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWriteMemoryStream,RtlWriteMemoryStream diff --git a/libc/nt/ntdll/RtlWriteNonVolatileMemory.S b/libc/nt/ntdll/RtlWriteNonVolatileMemory.S deleted file mode 100644 index a5e2f30b4..000000000 --- a/libc/nt/ntdll/RtlWriteNonVolatileMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWriteNonVolatileMemory,RtlWriteNonVolatileMemory diff --git a/libc/nt/ntdll/RtlWriteRegistryValue.S b/libc/nt/ntdll/RtlWriteRegistryValue.S deleted file mode 100644 index 83f8b1d55..000000000 --- a/libc/nt/ntdll/RtlWriteRegistryValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlWriteRegistryValue,RtlWriteRegistryValue diff --git a/libc/nt/ntdll/RtlZeroHeap.S b/libc/nt/ntdll/RtlZeroHeap.S deleted file mode 100644 index 55fb12f13..000000000 --- a/libc/nt/ntdll/RtlZeroHeap.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlZeroHeap,RtlZeroHeap diff --git a/libc/nt/ntdll/RtlZeroMemory.S b/libc/nt/ntdll/RtlZeroMemory.S deleted file mode 100644 index b07f7c204..000000000 --- a/libc/nt/ntdll/RtlZeroMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlZeroMemory,RtlZeroMemory diff --git a/libc/nt/ntdll/RtlZombifyActivationContext.S b/libc/nt/ntdll/RtlZombifyActivationContext.S deleted file mode 100644 index c325e08a4..000000000 --- a/libc/nt/ntdll/RtlZombifyActivationContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlZombifyActivationContext,RtlZombifyActivationContext diff --git a/libc/nt/ntdll/RtlpApplyLengthFunction.S b/libc/nt/ntdll/RtlpApplyLengthFunction.S deleted file mode 100644 index bcae06548..000000000 --- a/libc/nt/ntdll/RtlpApplyLengthFunction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpApplyLengthFunction,RtlpApplyLengthFunction diff --git a/libc/nt/ntdll/RtlpCheckDynamicTimeZoneInformation.S b/libc/nt/ntdll/RtlpCheckDynamicTimeZoneInformation.S deleted file mode 100644 index bb550adfe..000000000 --- a/libc/nt/ntdll/RtlpCheckDynamicTimeZoneInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpCheckDynamicTimeZoneInformation,RtlpCheckDynamicTimeZoneInformation diff --git a/libc/nt/ntdll/RtlpCleanupRegistryKeys.S b/libc/nt/ntdll/RtlpCleanupRegistryKeys.S deleted file mode 100644 index 739ed20d2..000000000 --- a/libc/nt/ntdll/RtlpCleanupRegistryKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpCleanupRegistryKeys,RtlpCleanupRegistryKeys diff --git a/libc/nt/ntdll/RtlpConvertAbsoluteToRelativeSecurityAttribute.S b/libc/nt/ntdll/RtlpConvertAbsoluteToRelativeSecurityAttribute.S deleted file mode 100644 index c1e788380..000000000 --- a/libc/nt/ntdll/RtlpConvertAbsoluteToRelativeSecurityAttribute.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpConvertAbsoluteToRelativeSecurityAttribute,RtlpConvertAbsoluteToRelativeSecurityAttribute diff --git a/libc/nt/ntdll/RtlpConvertCultureNamesToLCIDs.S b/libc/nt/ntdll/RtlpConvertCultureNamesToLCIDs.S deleted file mode 100644 index 5122da160..000000000 --- a/libc/nt/ntdll/RtlpConvertCultureNamesToLCIDs.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpConvertCultureNamesToLCIDs,RtlpConvertCultureNamesToLCIDs diff --git a/libc/nt/ntdll/RtlpConvertLCIDsToCultureNames.S b/libc/nt/ntdll/RtlpConvertLCIDsToCultureNames.S deleted file mode 100644 index 104b60e7c..000000000 --- a/libc/nt/ntdll/RtlpConvertLCIDsToCultureNames.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpConvertLCIDsToCultureNames,RtlpConvertLCIDsToCultureNames diff --git a/libc/nt/ntdll/RtlpConvertRelativeToAbsoluteSecurityAttribute.S b/libc/nt/ntdll/RtlpConvertRelativeToAbsoluteSecurityAttribute.S deleted file mode 100644 index 2b9df1aeb..000000000 --- a/libc/nt/ntdll/RtlpConvertRelativeToAbsoluteSecurityAttribute.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpConvertRelativeToAbsoluteSecurityAttribute,RtlpConvertRelativeToAbsoluteSecurityAttribute diff --git a/libc/nt/ntdll/RtlpCreateProcessRegistryInfo.S b/libc/nt/ntdll/RtlpCreateProcessRegistryInfo.S deleted file mode 100644 index 1b1deeea8..000000000 --- a/libc/nt/ntdll/RtlpCreateProcessRegistryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpCreateProcessRegistryInfo,RtlpCreateProcessRegistryInfo diff --git a/libc/nt/ntdll/RtlpEnsureBufferSize.S b/libc/nt/ntdll/RtlpEnsureBufferSize.S deleted file mode 100644 index c9e9862f1..000000000 --- a/libc/nt/ntdll/RtlpEnsureBufferSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpEnsureBufferSize,RtlpEnsureBufferSize diff --git a/libc/nt/ntdll/RtlpExecuteUmsThread.S b/libc/nt/ntdll/RtlpExecuteUmsThread.S deleted file mode 100644 index 3a172024d..000000000 --- a/libc/nt/ntdll/RtlpExecuteUmsThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpExecuteUmsThread,RtlpExecuteUmsThread diff --git a/libc/nt/ntdll/RtlpFreezeTimeBias.S b/libc/nt/ntdll/RtlpFreezeTimeBias.S deleted file mode 100644 index e1ebfd366..000000000 --- a/libc/nt/ntdll/RtlpFreezeTimeBias.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpFreezeTimeBias,RtlpFreezeTimeBias diff --git a/libc/nt/ntdll/RtlpGetDeviceFamilyInfoEnum.S b/libc/nt/ntdll/RtlpGetDeviceFamilyInfoEnum.S deleted file mode 100644 index 3fc110eca..000000000 --- a/libc/nt/ntdll/RtlpGetDeviceFamilyInfoEnum.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpGetDeviceFamilyInfoEnum,RtlpGetDeviceFamilyInfoEnum diff --git a/libc/nt/ntdll/RtlpGetLCIDFromLangInfoNode.S b/libc/nt/ntdll/RtlpGetLCIDFromLangInfoNode.S deleted file mode 100644 index a8d83cd37..000000000 --- a/libc/nt/ntdll/RtlpGetLCIDFromLangInfoNode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpGetLCIDFromLangInfoNode,RtlpGetLCIDFromLangInfoNode diff --git a/libc/nt/ntdll/RtlpGetNameFromLangInfoNode.S b/libc/nt/ntdll/RtlpGetNameFromLangInfoNode.S deleted file mode 100644 index 6513b7eea..000000000 --- a/libc/nt/ntdll/RtlpGetNameFromLangInfoNode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpGetNameFromLangInfoNode,RtlpGetNameFromLangInfoNode diff --git a/libc/nt/ntdll/RtlpGetSystemDefaultUILanguage.S b/libc/nt/ntdll/RtlpGetSystemDefaultUILanguage.S deleted file mode 100644 index 1b0d0991a..000000000 --- a/libc/nt/ntdll/RtlpGetSystemDefaultUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpGetSystemDefaultUILanguage,RtlpGetSystemDefaultUILanguage diff --git a/libc/nt/ntdll/RtlpGetUserOrMachineUILanguage4NLS.S b/libc/nt/ntdll/RtlpGetUserOrMachineUILanguage4NLS.S deleted file mode 100644 index d99ab5941..000000000 --- a/libc/nt/ntdll/RtlpGetUserOrMachineUILanguage4NLS.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpGetUserOrMachineUILanguage4NLS,RtlpGetUserOrMachineUILanguage4NLS diff --git a/libc/nt/ntdll/RtlpInitializeLangRegistryInfo.S b/libc/nt/ntdll/RtlpInitializeLangRegistryInfo.S deleted file mode 100644 index af738c98b..000000000 --- a/libc/nt/ntdll/RtlpInitializeLangRegistryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpInitializeLangRegistryInfo,RtlpInitializeLangRegistryInfo diff --git a/libc/nt/ntdll/RtlpIsQualifiedLanguage.S b/libc/nt/ntdll/RtlpIsQualifiedLanguage.S deleted file mode 100644 index 684de5144..000000000 --- a/libc/nt/ntdll/RtlpIsQualifiedLanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpIsQualifiedLanguage,RtlpIsQualifiedLanguage diff --git a/libc/nt/ntdll/RtlpLoadMachineUIByPolicy.S b/libc/nt/ntdll/RtlpLoadMachineUIByPolicy.S deleted file mode 100644 index d0d3f107d..000000000 --- a/libc/nt/ntdll/RtlpLoadMachineUIByPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpLoadMachineUIByPolicy,RtlpLoadMachineUIByPolicy diff --git a/libc/nt/ntdll/RtlpLoadUserUIByPolicy.S b/libc/nt/ntdll/RtlpLoadUserUIByPolicy.S deleted file mode 100644 index a2a1e0992..000000000 --- a/libc/nt/ntdll/RtlpLoadUserUIByPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpLoadUserUIByPolicy,RtlpLoadUserUIByPolicy diff --git a/libc/nt/ntdll/RtlpMergeSecurityAttributeInformation.S b/libc/nt/ntdll/RtlpMergeSecurityAttributeInformation.S deleted file mode 100644 index 9db4b0fb5..000000000 --- a/libc/nt/ntdll/RtlpMergeSecurityAttributeInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpMergeSecurityAttributeInformation,RtlpMergeSecurityAttributeInformation diff --git a/libc/nt/ntdll/RtlpMuiFreeLangRegistryInfo.S b/libc/nt/ntdll/RtlpMuiFreeLangRegistryInfo.S deleted file mode 100644 index 46c4c9ca8..000000000 --- a/libc/nt/ntdll/RtlpMuiFreeLangRegistryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpMuiFreeLangRegistryInfo,RtlpMuiFreeLangRegistryInfo diff --git a/libc/nt/ntdll/RtlpMuiRegCreateRegistryInfo.S b/libc/nt/ntdll/RtlpMuiRegCreateRegistryInfo.S deleted file mode 100644 index d85013134..000000000 --- a/libc/nt/ntdll/RtlpMuiRegCreateRegistryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpMuiRegCreateRegistryInfo,RtlpMuiRegCreateRegistryInfo diff --git a/libc/nt/ntdll/RtlpMuiRegFreeRegistryInfo.S b/libc/nt/ntdll/RtlpMuiRegFreeRegistryInfo.S deleted file mode 100644 index 30a0749ff..000000000 --- a/libc/nt/ntdll/RtlpMuiRegFreeRegistryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpMuiRegFreeRegistryInfo,RtlpMuiRegFreeRegistryInfo diff --git a/libc/nt/ntdll/RtlpMuiRegLoadRegistryInfo.S b/libc/nt/ntdll/RtlpMuiRegLoadRegistryInfo.S deleted file mode 100644 index 19b75caef..000000000 --- a/libc/nt/ntdll/RtlpMuiRegLoadRegistryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpMuiRegLoadRegistryInfo,RtlpMuiRegLoadRegistryInfo diff --git a/libc/nt/ntdll/RtlpNotOwnerCriticalSection.S b/libc/nt/ntdll/RtlpNotOwnerCriticalSection.S deleted file mode 100644 index 6fe25f3d4..000000000 --- a/libc/nt/ntdll/RtlpNotOwnerCriticalSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpNotOwnerCriticalSection,RtlpNotOwnerCriticalSection diff --git a/libc/nt/ntdll/RtlpNtCreateKey.S b/libc/nt/ntdll/RtlpNtCreateKey.S deleted file mode 100644 index 8b42bc126..000000000 --- a/libc/nt/ntdll/RtlpNtCreateKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpNtCreateKey,RtlpNtCreateKey diff --git a/libc/nt/ntdll/RtlpNtEnumerateSubKey.S b/libc/nt/ntdll/RtlpNtEnumerateSubKey.S deleted file mode 100644 index ac262c0a0..000000000 --- a/libc/nt/ntdll/RtlpNtEnumerateSubKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpNtEnumerateSubKey,RtlpNtEnumerateSubKey diff --git a/libc/nt/ntdll/RtlpNtMakeTemporaryKey.S b/libc/nt/ntdll/RtlpNtMakeTemporaryKey.S deleted file mode 100644 index 30327e672..000000000 --- a/libc/nt/ntdll/RtlpNtMakeTemporaryKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpNtMakeTemporaryKey,RtlpNtMakeTemporaryKey diff --git a/libc/nt/ntdll/RtlpNtOpenKey.S b/libc/nt/ntdll/RtlpNtOpenKey.S deleted file mode 100644 index 87cb75a49..000000000 --- a/libc/nt/ntdll/RtlpNtOpenKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpNtOpenKey,RtlpNtOpenKey diff --git a/libc/nt/ntdll/RtlpNtQueryValueKey.S b/libc/nt/ntdll/RtlpNtQueryValueKey.S deleted file mode 100644 index 2b48896c2..000000000 --- a/libc/nt/ntdll/RtlpNtQueryValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpNtQueryValueKey,RtlpNtQueryValueKey diff --git a/libc/nt/ntdll/RtlpNtSetValueKey.S b/libc/nt/ntdll/RtlpNtSetValueKey.S deleted file mode 100644 index 20b5558e1..000000000 --- a/libc/nt/ntdll/RtlpNtSetValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpNtSetValueKey,RtlpNtSetValueKey diff --git a/libc/nt/ntdll/RtlpQueryDefaultUILanguage.S b/libc/nt/ntdll/RtlpQueryDefaultUILanguage.S deleted file mode 100644 index 87e1fcbdf..000000000 --- a/libc/nt/ntdll/RtlpQueryDefaultUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpQueryDefaultUILanguage,RtlpQueryDefaultUILanguage diff --git a/libc/nt/ntdll/RtlpQueryProcessDebugInformationRemote.S b/libc/nt/ntdll/RtlpQueryProcessDebugInformationRemote.S deleted file mode 100644 index aa1509735..000000000 --- a/libc/nt/ntdll/RtlpQueryProcessDebugInformationRemote.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpQueryProcessDebugInformationRemote,RtlpQueryProcessDebugInformationRemote diff --git a/libc/nt/ntdll/RtlpRefreshCachedUILanguage.S b/libc/nt/ntdll/RtlpRefreshCachedUILanguage.S deleted file mode 100644 index bb6616710..000000000 --- a/libc/nt/ntdll/RtlpRefreshCachedUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpRefreshCachedUILanguage,RtlpRefreshCachedUILanguage diff --git a/libc/nt/ntdll/RtlpSetInstallLanguage.S b/libc/nt/ntdll/RtlpSetInstallLanguage.S deleted file mode 100644 index 8038932b9..000000000 --- a/libc/nt/ntdll/RtlpSetInstallLanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpSetInstallLanguage,RtlpSetInstallLanguage diff --git a/libc/nt/ntdll/RtlpSetPreferredUILanguages.S b/libc/nt/ntdll/RtlpSetPreferredUILanguages.S deleted file mode 100644 index 7a4bb6fbf..000000000 --- a/libc/nt/ntdll/RtlpSetPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpSetPreferredUILanguages,RtlpSetPreferredUILanguages diff --git a/libc/nt/ntdll/RtlpSetUserPreferredUILanguages.S b/libc/nt/ntdll/RtlpSetUserPreferredUILanguages.S deleted file mode 100644 index 12f184e73..000000000 --- a/libc/nt/ntdll/RtlpSetUserPreferredUILanguages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpSetUserPreferredUILanguages,RtlpSetUserPreferredUILanguages diff --git a/libc/nt/ntdll/RtlpUmsExecuteYieldThreadEnd.S b/libc/nt/ntdll/RtlpUmsExecuteYieldThreadEnd.S deleted file mode 100644 index 0ae4e6446..000000000 --- a/libc/nt/ntdll/RtlpUmsExecuteYieldThreadEnd.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpUmsExecuteYieldThreadEnd,RtlpUmsExecuteYieldThreadEnd diff --git a/libc/nt/ntdll/RtlpUmsThreadYield.S b/libc/nt/ntdll/RtlpUmsThreadYield.S deleted file mode 100644 index cf6e80cf8..000000000 --- a/libc/nt/ntdll/RtlpUmsThreadYield.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpUmsThreadYield,RtlpUmsThreadYield diff --git a/libc/nt/ntdll/RtlpUnWaitCriticalSection.S b/libc/nt/ntdll/RtlpUnWaitCriticalSection.S deleted file mode 100644 index ec3cd1c48..000000000 --- a/libc/nt/ntdll/RtlpUnWaitCriticalSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpUnWaitCriticalSection,RtlpUnWaitCriticalSection diff --git a/libc/nt/ntdll/RtlpVerifyAndCommitUILanguageSettings.S b/libc/nt/ntdll/RtlpVerifyAndCommitUILanguageSettings.S deleted file mode 100644 index c8366be60..000000000 --- a/libc/nt/ntdll/RtlpVerifyAndCommitUILanguageSettings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpVerifyAndCommitUILanguageSettings,RtlpVerifyAndCommitUILanguageSettings diff --git a/libc/nt/ntdll/RtlpWaitForCriticalSection.S b/libc/nt/ntdll/RtlpWaitForCriticalSection.S deleted file mode 100644 index e74daa1ad..000000000 --- a/libc/nt/ntdll/RtlpWaitForCriticalSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlpWaitForCriticalSection,RtlpWaitForCriticalSection diff --git a/libc/nt/ntdll/RtlxAnsiStringToUnicodeSize.S b/libc/nt/ntdll/RtlxAnsiStringToUnicodeSize.S deleted file mode 100644 index f823aced7..000000000 --- a/libc/nt/ntdll/RtlxAnsiStringToUnicodeSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlxAnsiStringToUnicodeSize,RtlxAnsiStringToUnicodeSize diff --git a/libc/nt/ntdll/RtlxOemStringToUnicodeSize.S b/libc/nt/ntdll/RtlxOemStringToUnicodeSize.S deleted file mode 100644 index 7d84c0238..000000000 --- a/libc/nt/ntdll/RtlxOemStringToUnicodeSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlxOemStringToUnicodeSize,RtlxOemStringToUnicodeSize diff --git a/libc/nt/ntdll/RtlxUnicodeStringToAnsiSize.S b/libc/nt/ntdll/RtlxUnicodeStringToAnsiSize.S deleted file mode 100644 index eebdfafcd..000000000 --- a/libc/nt/ntdll/RtlxUnicodeStringToAnsiSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlxUnicodeStringToAnsiSize,RtlxUnicodeStringToAnsiSize diff --git a/libc/nt/ntdll/RtlxUnicodeStringToOemSize.S b/libc/nt/ntdll/RtlxUnicodeStringToOemSize.S deleted file mode 100644 index 69314b1e1..000000000 --- a/libc/nt/ntdll/RtlxUnicodeStringToOemSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp RtlxUnicodeStringToOemSize,RtlxUnicodeStringToOemSize diff --git a/libc/nt/ntdll/SbExecuteProcedure.S b/libc/nt/ntdll/SbExecuteProcedure.S deleted file mode 100644 index f3f6b52f1..000000000 --- a/libc/nt/ntdll/SbExecuteProcedure.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp SbExecuteProcedure,SbExecuteProcedure diff --git a/libc/nt/ntdll/SbSelectProcedure.S b/libc/nt/ntdll/SbSelectProcedure.S deleted file mode 100644 index adf780c50..000000000 --- a/libc/nt/ntdll/SbSelectProcedure.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp SbSelectProcedure,SbSelectProcedure diff --git a/libc/nt/ntdll/ShipAssert.S b/libc/nt/ntdll/ShipAssert.S deleted file mode 100644 index b8175e7c9..000000000 --- a/libc/nt/ntdll/ShipAssert.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ShipAssert,ShipAssert diff --git a/libc/nt/ntdll/ShipAssertGetBufferInfo.S b/libc/nt/ntdll/ShipAssertGetBufferInfo.S deleted file mode 100644 index d93e571db..000000000 --- a/libc/nt/ntdll/ShipAssertGetBufferInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ShipAssertGetBufferInfo,ShipAssertGetBufferInfo diff --git a/libc/nt/ntdll/ShipAssertMsgW.S b/libc/nt/ntdll/ShipAssertMsgW.S deleted file mode 100644 index f8febb397..000000000 --- a/libc/nt/ntdll/ShipAssertMsgW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ShipAssertMsgW,ShipAssertMsg diff --git a/libc/nt/ntdll/TpAllocAlpcCompletion.S b/libc/nt/ntdll/TpAllocAlpcCompletion.S deleted file mode 100644 index 95759ddb3..000000000 --- a/libc/nt/ntdll/TpAllocAlpcCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocAlpcCompletion,TpAllocAlpcCompletion diff --git a/libc/nt/ntdll/TpAllocAlpcCompletionEx.S b/libc/nt/ntdll/TpAllocAlpcCompletionEx.S deleted file mode 100644 index 5065bc433..000000000 --- a/libc/nt/ntdll/TpAllocAlpcCompletionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocAlpcCompletionEx,TpAllocAlpcCompletionEx diff --git a/libc/nt/ntdll/TpAllocCleanupGroup.S b/libc/nt/ntdll/TpAllocCleanupGroup.S deleted file mode 100644 index aa4f027e6..000000000 --- a/libc/nt/ntdll/TpAllocCleanupGroup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocCleanupGroup,TpAllocCleanupGroup diff --git a/libc/nt/ntdll/TpAllocIoCompletion.S b/libc/nt/ntdll/TpAllocIoCompletion.S deleted file mode 100644 index c40fd395e..000000000 --- a/libc/nt/ntdll/TpAllocIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocIoCompletion,TpAllocIoCompletion diff --git a/libc/nt/ntdll/TpAllocJobNotification.S b/libc/nt/ntdll/TpAllocJobNotification.S deleted file mode 100644 index 5918c89c6..000000000 --- a/libc/nt/ntdll/TpAllocJobNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocJobNotification,TpAllocJobNotification diff --git a/libc/nt/ntdll/TpAllocPool.S b/libc/nt/ntdll/TpAllocPool.S deleted file mode 100644 index db5599da3..000000000 --- a/libc/nt/ntdll/TpAllocPool.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocPool,TpAllocPool diff --git a/libc/nt/ntdll/TpAllocTimer.S b/libc/nt/ntdll/TpAllocTimer.S deleted file mode 100644 index e81e290ea..000000000 --- a/libc/nt/ntdll/TpAllocTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocTimer,TpAllocTimer diff --git a/libc/nt/ntdll/TpAllocWait.S b/libc/nt/ntdll/TpAllocWait.S deleted file mode 100644 index b0c37dce0..000000000 --- a/libc/nt/ntdll/TpAllocWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocWait,TpAllocWait diff --git a/libc/nt/ntdll/TpAllocWork.S b/libc/nt/ntdll/TpAllocWork.S deleted file mode 100644 index ce8bf99eb..000000000 --- a/libc/nt/ntdll/TpAllocWork.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAllocWork,TpAllocWork diff --git a/libc/nt/ntdll/TpAlpcRegisterCompletionList.S b/libc/nt/ntdll/TpAlpcRegisterCompletionList.S deleted file mode 100644 index c411c7dd3..000000000 --- a/libc/nt/ntdll/TpAlpcRegisterCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAlpcRegisterCompletionList,TpAlpcRegisterCompletionList diff --git a/libc/nt/ntdll/TpAlpcUnregisterCompletionList.S b/libc/nt/ntdll/TpAlpcUnregisterCompletionList.S deleted file mode 100644 index 0473141b4..000000000 --- a/libc/nt/ntdll/TpAlpcUnregisterCompletionList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpAlpcUnregisterCompletionList,TpAlpcUnregisterCompletionList diff --git a/libc/nt/ntdll/TpCallbackDetectedUnrecoverableError.S b/libc/nt/ntdll/TpCallbackDetectedUnrecoverableError.S deleted file mode 100644 index 3fc67b86e..000000000 --- a/libc/nt/ntdll/TpCallbackDetectedUnrecoverableError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackDetectedUnrecoverableError,TpCallbackDetectedUnrecoverableError diff --git a/libc/nt/ntdll/TpCallbackIndependent.S b/libc/nt/ntdll/TpCallbackIndependent.S deleted file mode 100644 index 5e365b3f7..000000000 --- a/libc/nt/ntdll/TpCallbackIndependent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackIndependent,TpCallbackIndependent diff --git a/libc/nt/ntdll/TpCallbackLeaveCriticalSectionOnCompletion.S b/libc/nt/ntdll/TpCallbackLeaveCriticalSectionOnCompletion.S deleted file mode 100644 index 0f408e56c..000000000 --- a/libc/nt/ntdll/TpCallbackLeaveCriticalSectionOnCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackLeaveCriticalSectionOnCompletion,TpCallbackLeaveCriticalSectionOnCompletion diff --git a/libc/nt/ntdll/TpCallbackMayRunLong.S b/libc/nt/ntdll/TpCallbackMayRunLong.S deleted file mode 100644 index 914ca9543..000000000 --- a/libc/nt/ntdll/TpCallbackMayRunLong.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackMayRunLong,TpCallbackMayRunLong diff --git a/libc/nt/ntdll/TpCallbackReleaseMutexOnCompletion.S b/libc/nt/ntdll/TpCallbackReleaseMutexOnCompletion.S deleted file mode 100644 index 0e7e004f8..000000000 --- a/libc/nt/ntdll/TpCallbackReleaseMutexOnCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackReleaseMutexOnCompletion,TpCallbackReleaseMutexOnCompletion diff --git a/libc/nt/ntdll/TpCallbackReleaseSemaphoreOnCompletion.S b/libc/nt/ntdll/TpCallbackReleaseSemaphoreOnCompletion.S deleted file mode 100644 index 812585b5f..000000000 --- a/libc/nt/ntdll/TpCallbackReleaseSemaphoreOnCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackReleaseSemaphoreOnCompletion,TpCallbackReleaseSemaphoreOnCompletion diff --git a/libc/nt/ntdll/TpCallbackSendAlpcMessageOnCompletion.S b/libc/nt/ntdll/TpCallbackSendAlpcMessageOnCompletion.S deleted file mode 100644 index 4eb465f19..000000000 --- a/libc/nt/ntdll/TpCallbackSendAlpcMessageOnCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackSendAlpcMessageOnCompletion,TpCallbackSendAlpcMessageOnCompletion diff --git a/libc/nt/ntdll/TpCallbackSendPendingAlpcMessage.S b/libc/nt/ntdll/TpCallbackSendPendingAlpcMessage.S deleted file mode 100644 index f8bf11ecb..000000000 --- a/libc/nt/ntdll/TpCallbackSendPendingAlpcMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackSendPendingAlpcMessage,TpCallbackSendPendingAlpcMessage diff --git a/libc/nt/ntdll/TpCallbackSetEventOnCompletion.S b/libc/nt/ntdll/TpCallbackSetEventOnCompletion.S deleted file mode 100644 index bdcd54174..000000000 --- a/libc/nt/ntdll/TpCallbackSetEventOnCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackSetEventOnCompletion,TpCallbackSetEventOnCompletion diff --git a/libc/nt/ntdll/TpCallbackUnloadDllOnCompletion.S b/libc/nt/ntdll/TpCallbackUnloadDllOnCompletion.S deleted file mode 100644 index 928a568fb..000000000 --- a/libc/nt/ntdll/TpCallbackUnloadDllOnCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCallbackUnloadDllOnCompletion,TpCallbackUnloadDllOnCompletion diff --git a/libc/nt/ntdll/TpCancelAsyncIoOperation.S b/libc/nt/ntdll/TpCancelAsyncIoOperation.S deleted file mode 100644 index a0e88908c..000000000 --- a/libc/nt/ntdll/TpCancelAsyncIoOperation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCancelAsyncIoOperation,TpCancelAsyncIoOperation diff --git a/libc/nt/ntdll/TpCaptureCaller.S b/libc/nt/ntdll/TpCaptureCaller.S deleted file mode 100644 index 7f43dcd6d..000000000 --- a/libc/nt/ntdll/TpCaptureCaller.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCaptureCaller,TpCaptureCaller diff --git a/libc/nt/ntdll/TpCheckTerminateWorker.S b/libc/nt/ntdll/TpCheckTerminateWorker.S deleted file mode 100644 index 56229f706..000000000 --- a/libc/nt/ntdll/TpCheckTerminateWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpCheckTerminateWorker,TpCheckTerminateWorker diff --git a/libc/nt/ntdll/TpDbgDumpHeapUsage.S b/libc/nt/ntdll/TpDbgDumpHeapUsage.S deleted file mode 100644 index f56e23c7a..000000000 --- a/libc/nt/ntdll/TpDbgDumpHeapUsage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpDbgDumpHeapUsage,TpDbgDumpHeapUsage diff --git a/libc/nt/ntdll/TpDbgSetLogRoutine.S b/libc/nt/ntdll/TpDbgSetLogRoutine.S deleted file mode 100644 index b16e21258..000000000 --- a/libc/nt/ntdll/TpDbgSetLogRoutine.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpDbgSetLogRoutine,TpDbgSetLogRoutine diff --git a/libc/nt/ntdll/TpDisablePoolCallbackChecks.S b/libc/nt/ntdll/TpDisablePoolCallbackChecks.S deleted file mode 100644 index 24a7b26d9..000000000 --- a/libc/nt/ntdll/TpDisablePoolCallbackChecks.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpDisablePoolCallbackChecks,TpDisablePoolCallbackChecks diff --git a/libc/nt/ntdll/TpDisassociateCallback.S b/libc/nt/ntdll/TpDisassociateCallback.S deleted file mode 100644 index 29f9e1042..000000000 --- a/libc/nt/ntdll/TpDisassociateCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpDisassociateCallback,TpDisassociateCallback diff --git a/libc/nt/ntdll/TpIsTimerSet.S b/libc/nt/ntdll/TpIsTimerSet.S deleted file mode 100644 index b2892d463..000000000 --- a/libc/nt/ntdll/TpIsTimerSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpIsTimerSet,TpIsTimerSet diff --git a/libc/nt/ntdll/TpPostWork.S b/libc/nt/ntdll/TpPostWork.S deleted file mode 100644 index 07866379a..000000000 --- a/libc/nt/ntdll/TpPostWork.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpPostWork,TpPostWork diff --git a/libc/nt/ntdll/TpQueryPoolStackInformation.S b/libc/nt/ntdll/TpQueryPoolStackInformation.S deleted file mode 100644 index c200db956..000000000 --- a/libc/nt/ntdll/TpQueryPoolStackInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpQueryPoolStackInformation,TpQueryPoolStackInformation diff --git a/libc/nt/ntdll/TpReleaseAlpcCompletion.S b/libc/nt/ntdll/TpReleaseAlpcCompletion.S deleted file mode 100644 index 4ba591b04..000000000 --- a/libc/nt/ntdll/TpReleaseAlpcCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleaseAlpcCompletion,TpReleaseAlpcCompletion diff --git a/libc/nt/ntdll/TpReleaseCleanupGroup.S b/libc/nt/ntdll/TpReleaseCleanupGroup.S deleted file mode 100644 index 71523f5a6..000000000 --- a/libc/nt/ntdll/TpReleaseCleanupGroup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleaseCleanupGroup,TpReleaseCleanupGroup diff --git a/libc/nt/ntdll/TpReleaseCleanupGroupMembers.S b/libc/nt/ntdll/TpReleaseCleanupGroupMembers.S deleted file mode 100644 index 0113287ab..000000000 --- a/libc/nt/ntdll/TpReleaseCleanupGroupMembers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleaseCleanupGroupMembers,TpReleaseCleanupGroupMembers diff --git a/libc/nt/ntdll/TpReleaseIoCompletion.S b/libc/nt/ntdll/TpReleaseIoCompletion.S deleted file mode 100644 index fbd703dc6..000000000 --- a/libc/nt/ntdll/TpReleaseIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleaseIoCompletion,TpReleaseIoCompletion diff --git a/libc/nt/ntdll/TpReleaseJobNotification.S b/libc/nt/ntdll/TpReleaseJobNotification.S deleted file mode 100644 index 206f1ab77..000000000 --- a/libc/nt/ntdll/TpReleaseJobNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleaseJobNotification,TpReleaseJobNotification diff --git a/libc/nt/ntdll/TpReleasePool.S b/libc/nt/ntdll/TpReleasePool.S deleted file mode 100644 index 1ee138ae0..000000000 --- a/libc/nt/ntdll/TpReleasePool.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleasePool,TpReleasePool diff --git a/libc/nt/ntdll/TpReleaseTimer.S b/libc/nt/ntdll/TpReleaseTimer.S deleted file mode 100644 index ceeff94ac..000000000 --- a/libc/nt/ntdll/TpReleaseTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleaseTimer,TpReleaseTimer diff --git a/libc/nt/ntdll/TpReleaseWait.S b/libc/nt/ntdll/TpReleaseWait.S deleted file mode 100644 index 7856077dd..000000000 --- a/libc/nt/ntdll/TpReleaseWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleaseWait,TpReleaseWait diff --git a/libc/nt/ntdll/TpReleaseWork.S b/libc/nt/ntdll/TpReleaseWork.S deleted file mode 100644 index 0c748c389..000000000 --- a/libc/nt/ntdll/TpReleaseWork.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpReleaseWork,TpReleaseWork diff --git a/libc/nt/ntdll/TpSetDefaultPoolMaxThreads.S b/libc/nt/ntdll/TpSetDefaultPoolMaxThreads.S deleted file mode 100644 index 4accb20f1..000000000 --- a/libc/nt/ntdll/TpSetDefaultPoolMaxThreads.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetDefaultPoolMaxThreads,TpSetDefaultPoolMaxThreads diff --git a/libc/nt/ntdll/TpSetDefaultPoolStackInformation.S b/libc/nt/ntdll/TpSetDefaultPoolStackInformation.S deleted file mode 100644 index c89c8f4d1..000000000 --- a/libc/nt/ntdll/TpSetDefaultPoolStackInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetDefaultPoolStackInformation,TpSetDefaultPoolStackInformation diff --git a/libc/nt/ntdll/TpSetPoolMaxThreads.S b/libc/nt/ntdll/TpSetPoolMaxThreads.S deleted file mode 100644 index 15a6bd25f..000000000 --- a/libc/nt/ntdll/TpSetPoolMaxThreads.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetPoolMaxThreads,TpSetPoolMaxThreads diff --git a/libc/nt/ntdll/TpSetPoolMaxThreadsSoftLimit.S b/libc/nt/ntdll/TpSetPoolMaxThreadsSoftLimit.S deleted file mode 100644 index 9963ad1b9..000000000 --- a/libc/nt/ntdll/TpSetPoolMaxThreadsSoftLimit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetPoolMaxThreadsSoftLimit,TpSetPoolMaxThreadsSoftLimit diff --git a/libc/nt/ntdll/TpSetPoolMinThreads.S b/libc/nt/ntdll/TpSetPoolMinThreads.S deleted file mode 100644 index 2394db7c3..000000000 --- a/libc/nt/ntdll/TpSetPoolMinThreads.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetPoolMinThreads,TpSetPoolMinThreads diff --git a/libc/nt/ntdll/TpSetPoolStackInformation.S b/libc/nt/ntdll/TpSetPoolStackInformation.S deleted file mode 100644 index 538073f53..000000000 --- a/libc/nt/ntdll/TpSetPoolStackInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetPoolStackInformation,TpSetPoolStackInformation diff --git a/libc/nt/ntdll/TpSetPoolThreadBasePriority.S b/libc/nt/ntdll/TpSetPoolThreadBasePriority.S deleted file mode 100644 index 62df1200a..000000000 --- a/libc/nt/ntdll/TpSetPoolThreadBasePriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetPoolThreadBasePriority,TpSetPoolThreadBasePriority diff --git a/libc/nt/ntdll/TpSetPoolWorkerThreadIdleTimeout.S b/libc/nt/ntdll/TpSetPoolWorkerThreadIdleTimeout.S deleted file mode 100644 index f587d7e16..000000000 --- a/libc/nt/ntdll/TpSetPoolWorkerThreadIdleTimeout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetPoolWorkerThreadIdleTimeout,TpSetPoolWorkerThreadIdleTimeout diff --git a/libc/nt/ntdll/TpSetTimer.S b/libc/nt/ntdll/TpSetTimer.S deleted file mode 100644 index 85c94ca1b..000000000 --- a/libc/nt/ntdll/TpSetTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetTimer,TpSetTimer diff --git a/libc/nt/ntdll/TpSetTimerEx.S b/libc/nt/ntdll/TpSetTimerEx.S deleted file mode 100644 index 3e3640efa..000000000 --- a/libc/nt/ntdll/TpSetTimerEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetTimerEx,TpSetTimerEx diff --git a/libc/nt/ntdll/TpSetWait.S b/libc/nt/ntdll/TpSetWait.S deleted file mode 100644 index 0e4e1966d..000000000 --- a/libc/nt/ntdll/TpSetWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetWait,TpSetWait diff --git a/libc/nt/ntdll/TpSetWaitEx.S b/libc/nt/ntdll/TpSetWaitEx.S deleted file mode 100644 index 605ba26e3..000000000 --- a/libc/nt/ntdll/TpSetWaitEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSetWaitEx,TpSetWaitEx diff --git a/libc/nt/ntdll/TpSimpleTryPost.S b/libc/nt/ntdll/TpSimpleTryPost.S deleted file mode 100644 index 9a8b04461..000000000 --- a/libc/nt/ntdll/TpSimpleTryPost.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpSimpleTryPost,TpSimpleTryPost diff --git a/libc/nt/ntdll/TpStartAsyncIoOperation.S b/libc/nt/ntdll/TpStartAsyncIoOperation.S deleted file mode 100644 index ee3f53e17..000000000 --- a/libc/nt/ntdll/TpStartAsyncIoOperation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpStartAsyncIoOperation,TpStartAsyncIoOperation diff --git a/libc/nt/ntdll/TpTimerOutstandingCallbackCount.S b/libc/nt/ntdll/TpTimerOutstandingCallbackCount.S deleted file mode 100644 index ad2cbe1ea..000000000 --- a/libc/nt/ntdll/TpTimerOutstandingCallbackCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpTimerOutstandingCallbackCount,TpTimerOutstandingCallbackCount diff --git a/libc/nt/ntdll/TpTrimPools.S b/libc/nt/ntdll/TpTrimPools.S deleted file mode 100644 index 5039c80e8..000000000 --- a/libc/nt/ntdll/TpTrimPools.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpTrimPools,TpTrimPools diff --git a/libc/nt/ntdll/TpWaitForAlpcCompletion.S b/libc/nt/ntdll/TpWaitForAlpcCompletion.S deleted file mode 100644 index d2dd444fa..000000000 --- a/libc/nt/ntdll/TpWaitForAlpcCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpWaitForAlpcCompletion,TpWaitForAlpcCompletion diff --git a/libc/nt/ntdll/TpWaitForIoCompletion.S b/libc/nt/ntdll/TpWaitForIoCompletion.S deleted file mode 100644 index 4c935def9..000000000 --- a/libc/nt/ntdll/TpWaitForIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpWaitForIoCompletion,TpWaitForIoCompletion diff --git a/libc/nt/ntdll/TpWaitForJobNotification.S b/libc/nt/ntdll/TpWaitForJobNotification.S deleted file mode 100644 index a4fc3f77e..000000000 --- a/libc/nt/ntdll/TpWaitForJobNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpWaitForJobNotification,TpWaitForJobNotification diff --git a/libc/nt/ntdll/TpWaitForTimer.S b/libc/nt/ntdll/TpWaitForTimer.S deleted file mode 100644 index e7a777432..000000000 --- a/libc/nt/ntdll/TpWaitForTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpWaitForTimer,TpWaitForTimer diff --git a/libc/nt/ntdll/TpWaitForWait.S b/libc/nt/ntdll/TpWaitForWait.S deleted file mode 100644 index dbec266bf..000000000 --- a/libc/nt/ntdll/TpWaitForWait.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpWaitForWait,TpWaitForWait diff --git a/libc/nt/ntdll/TpWaitForWork.S b/libc/nt/ntdll/TpWaitForWork.S deleted file mode 100644 index b81772b40..000000000 --- a/libc/nt/ntdll/TpWaitForWork.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp TpWaitForWork,TpWaitForWork diff --git a/libc/nt/ntdll/VerSetConditionMask.S b/libc/nt/ntdll/VerSetConditionMask.S deleted file mode 100644 index c6275a6fd..000000000 --- a/libc/nt/ntdll/VerSetConditionMask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp VerSetConditionMask,VerSetConditionMask diff --git a/libc/nt/ntdll/WerReportExceptionWorker.S b/libc/nt/ntdll/WerReportExceptionWorker.S deleted file mode 100644 index 3b1350cd4..000000000 --- a/libc/nt/ntdll/WerReportExceptionWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WerReportExceptionWorker,WerReportExceptionWorker diff --git a/libc/nt/ntdll/WerReportSQMEvent.S b/libc/nt/ntdll/WerReportSQMEvent.S deleted file mode 100644 index 5af86e3ad..000000000 --- a/libc/nt/ntdll/WerReportSQMEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WerReportSQMEvent,WerReportSQMEvent diff --git a/libc/nt/ntdll/WinSqmAddToAverageDWORD.S b/libc/nt/ntdll/WinSqmAddToAverageDWORD.S deleted file mode 100644 index 4e12d052b..000000000 --- a/libc/nt/ntdll/WinSqmAddToAverageDWORD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmAddToAverageDWORD,WinSqmAddToAverageDWORD diff --git a/libc/nt/ntdll/WinSqmAddToStream.S b/libc/nt/ntdll/WinSqmAddToStream.S deleted file mode 100644 index a5a6f4cac..000000000 --- a/libc/nt/ntdll/WinSqmAddToStream.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmAddToStream,WinSqmAddToStream diff --git a/libc/nt/ntdll/WinSqmAddToStreamEx.S b/libc/nt/ntdll/WinSqmAddToStreamEx.S deleted file mode 100644 index 97562a0cb..000000000 --- a/libc/nt/ntdll/WinSqmAddToStreamEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmAddToStreamEx,WinSqmAddToStreamEx diff --git a/libc/nt/ntdll/WinSqmCheckEscalationAddToStreamEx.S b/libc/nt/ntdll/WinSqmCheckEscalationAddToStreamEx.S deleted file mode 100644 index a5e5ec916..000000000 --- a/libc/nt/ntdll/WinSqmCheckEscalationAddToStreamEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCheckEscalationAddToStreamEx,WinSqmCheckEscalationAddToStreamEx diff --git a/libc/nt/ntdll/WinSqmCheckEscalationSetDWORD.S b/libc/nt/ntdll/WinSqmCheckEscalationSetDWORD.S deleted file mode 100644 index 6ec75a93d..000000000 --- a/libc/nt/ntdll/WinSqmCheckEscalationSetDWORD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCheckEscalationSetDWORD,WinSqmCheckEscalationSetDWORD diff --git a/libc/nt/ntdll/WinSqmCheckEscalationSetDWORD64.S b/libc/nt/ntdll/WinSqmCheckEscalationSetDWORD64.S deleted file mode 100644 index a610392ce..000000000 --- a/libc/nt/ntdll/WinSqmCheckEscalationSetDWORD64.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCheckEscalationSetDWORD64,WinSqmCheckEscalationSetDWORD64 diff --git a/libc/nt/ntdll/WinSqmCheckEscalationSetString.S b/libc/nt/ntdll/WinSqmCheckEscalationSetString.S deleted file mode 100644 index 3fa374345..000000000 --- a/libc/nt/ntdll/WinSqmCheckEscalationSetString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCheckEscalationSetString,WinSqmCheckEscalationSetString diff --git a/libc/nt/ntdll/WinSqmCommonDatapointDelete.S b/libc/nt/ntdll/WinSqmCommonDatapointDelete.S deleted file mode 100644 index 1e0636f91..000000000 --- a/libc/nt/ntdll/WinSqmCommonDatapointDelete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCommonDatapointDelete,WinSqmCommonDatapointDelete diff --git a/libc/nt/ntdll/WinSqmCommonDatapointSetDWORD.S b/libc/nt/ntdll/WinSqmCommonDatapointSetDWORD.S deleted file mode 100644 index 3ef223130..000000000 --- a/libc/nt/ntdll/WinSqmCommonDatapointSetDWORD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCommonDatapointSetDWORD,WinSqmCommonDatapointSetDWORD diff --git a/libc/nt/ntdll/WinSqmCommonDatapointSetDWORD64.S b/libc/nt/ntdll/WinSqmCommonDatapointSetDWORD64.S deleted file mode 100644 index a0545b957..000000000 --- a/libc/nt/ntdll/WinSqmCommonDatapointSetDWORD64.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCommonDatapointSetDWORD64,WinSqmCommonDatapointSetDWORD64 diff --git a/libc/nt/ntdll/WinSqmCommonDatapointSetStreamEx.S b/libc/nt/ntdll/WinSqmCommonDatapointSetStreamEx.S deleted file mode 100644 index 9c92847fe..000000000 --- a/libc/nt/ntdll/WinSqmCommonDatapointSetStreamEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCommonDatapointSetStreamEx,WinSqmCommonDatapointSetStreamEx diff --git a/libc/nt/ntdll/WinSqmCommonDatapointSetString.S b/libc/nt/ntdll/WinSqmCommonDatapointSetString.S deleted file mode 100644 index 2789e0369..000000000 --- a/libc/nt/ntdll/WinSqmCommonDatapointSetString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmCommonDatapointSetString,WinSqmCommonDatapointSetString diff --git a/libc/nt/ntdll/WinSqmEndSession.S b/libc/nt/ntdll/WinSqmEndSession.S deleted file mode 100644 index f05e38d8d..000000000 --- a/libc/nt/ntdll/WinSqmEndSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmEndSession,WinSqmEndSession diff --git a/libc/nt/ntdll/WinSqmEventEnabled.S b/libc/nt/ntdll/WinSqmEventEnabled.S deleted file mode 100644 index 28bbc612c..000000000 --- a/libc/nt/ntdll/WinSqmEventEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmEventEnabled,WinSqmEventEnabled diff --git a/libc/nt/ntdll/WinSqmEventWrite.S b/libc/nt/ntdll/WinSqmEventWrite.S deleted file mode 100644 index d85cf7732..000000000 --- a/libc/nt/ntdll/WinSqmEventWrite.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmEventWrite,WinSqmEventWrite diff --git a/libc/nt/ntdll/WinSqmGetEscalationRuleStatus.S b/libc/nt/ntdll/WinSqmGetEscalationRuleStatus.S deleted file mode 100644 index 3804dc99a..000000000 --- a/libc/nt/ntdll/WinSqmGetEscalationRuleStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmGetEscalationRuleStatus,WinSqmGetEscalationRuleStatus diff --git a/libc/nt/ntdll/WinSqmGetInstrumentationProperty.S b/libc/nt/ntdll/WinSqmGetInstrumentationProperty.S deleted file mode 100644 index 11c73efb3..000000000 --- a/libc/nt/ntdll/WinSqmGetInstrumentationProperty.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmGetInstrumentationProperty,WinSqmGetInstrumentationProperty diff --git a/libc/nt/ntdll/WinSqmIncrementDWORD.S b/libc/nt/ntdll/WinSqmIncrementDWORD.S deleted file mode 100644 index 9ffd8ab6c..000000000 --- a/libc/nt/ntdll/WinSqmIncrementDWORD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmIncrementDWORD,WinSqmIncrementDWORD diff --git a/libc/nt/ntdll/WinSqmIsOptedIn.S b/libc/nt/ntdll/WinSqmIsOptedIn.S deleted file mode 100644 index 61a1cf2f3..000000000 --- a/libc/nt/ntdll/WinSqmIsOptedIn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmIsOptedIn,WinSqmIsOptedIn diff --git a/libc/nt/ntdll/WinSqmIsOptedInEx.S b/libc/nt/ntdll/WinSqmIsOptedInEx.S deleted file mode 100644 index 51f8330d4..000000000 --- a/libc/nt/ntdll/WinSqmIsOptedInEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmIsOptedInEx,WinSqmIsOptedInEx diff --git a/libc/nt/ntdll/WinSqmIsSessionDisabled.S b/libc/nt/ntdll/WinSqmIsSessionDisabled.S deleted file mode 100644 index 7d48226fb..000000000 --- a/libc/nt/ntdll/WinSqmIsSessionDisabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmIsSessionDisabled,WinSqmIsSessionDisabled diff --git a/libc/nt/ntdll/WinSqmSetDWORD.S b/libc/nt/ntdll/WinSqmSetDWORD.S deleted file mode 100644 index 1ac58b908..000000000 --- a/libc/nt/ntdll/WinSqmSetDWORD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmSetDWORD,WinSqmSetDWORD diff --git a/libc/nt/ntdll/WinSqmSetDWORD64.S b/libc/nt/ntdll/WinSqmSetDWORD64.S deleted file mode 100644 index 35af5c2e5..000000000 --- a/libc/nt/ntdll/WinSqmSetDWORD64.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmSetDWORD64,WinSqmSetDWORD64 diff --git a/libc/nt/ntdll/WinSqmSetEscalationInfo.S b/libc/nt/ntdll/WinSqmSetEscalationInfo.S deleted file mode 100644 index d0bef5c8d..000000000 --- a/libc/nt/ntdll/WinSqmSetEscalationInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmSetEscalationInfo,WinSqmSetEscalationInfo diff --git a/libc/nt/ntdll/WinSqmSetIfMaxDWORD.S b/libc/nt/ntdll/WinSqmSetIfMaxDWORD.S deleted file mode 100644 index 432994901..000000000 --- a/libc/nt/ntdll/WinSqmSetIfMaxDWORD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmSetIfMaxDWORD,WinSqmSetIfMaxDWORD diff --git a/libc/nt/ntdll/WinSqmSetIfMinDWORD.S b/libc/nt/ntdll/WinSqmSetIfMinDWORD.S deleted file mode 100644 index e578c4ce9..000000000 --- a/libc/nt/ntdll/WinSqmSetIfMinDWORD.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmSetIfMinDWORD,WinSqmSetIfMinDWORD diff --git a/libc/nt/ntdll/WinSqmSetString.S b/libc/nt/ntdll/WinSqmSetString.S deleted file mode 100644 index 282f93e17..000000000 --- a/libc/nt/ntdll/WinSqmSetString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmSetString,WinSqmSetString diff --git a/libc/nt/ntdll/WinSqmStartSession.S b/libc/nt/ntdll/WinSqmStartSession.S deleted file mode 100644 index aed4faf10..000000000 --- a/libc/nt/ntdll/WinSqmStartSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmStartSession,WinSqmStartSession diff --git a/libc/nt/ntdll/WinSqmStartSessionForPartner.S b/libc/nt/ntdll/WinSqmStartSessionForPartner.S deleted file mode 100644 index af42d615e..000000000 --- a/libc/nt/ntdll/WinSqmStartSessionForPartner.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmStartSessionForPartner,WinSqmStartSessionForPartner diff --git a/libc/nt/ntdll/WinSqmStartSqmOptinListener.S b/libc/nt/ntdll/WinSqmStartSqmOptinListener.S deleted file mode 100644 index 99d818c4e..000000000 --- a/libc/nt/ntdll/WinSqmStartSqmOptinListener.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp WinSqmStartSqmOptinListener,WinSqmStartSqmOptinListener diff --git a/libc/nt/ntdll/ZwAcceptConnectPort.S b/libc/nt/ntdll/ZwAcceptConnectPort.S deleted file mode 100644 index 2313bbbaf..000000000 --- a/libc/nt/ntdll/ZwAcceptConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAcceptConnectPort,ZwAcceptConnectPort diff --git a/libc/nt/ntdll/ZwAccessCheck.S b/libc/nt/ntdll/ZwAccessCheck.S deleted file mode 100644 index 7070411a7..000000000 --- a/libc/nt/ntdll/ZwAccessCheck.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAccessCheck,ZwAccessCheck diff --git a/libc/nt/ntdll/ZwAccessCheckAndAuditAlarm.S b/libc/nt/ntdll/ZwAccessCheckAndAuditAlarm.S deleted file mode 100644 index 68482817f..000000000 --- a/libc/nt/ntdll/ZwAccessCheckAndAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAccessCheckAndAuditAlarm,ZwAccessCheckAndAuditAlarm diff --git a/libc/nt/ntdll/ZwAccessCheckByType.S b/libc/nt/ntdll/ZwAccessCheckByType.S deleted file mode 100644 index a90849670..000000000 --- a/libc/nt/ntdll/ZwAccessCheckByType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAccessCheckByType,ZwAccessCheckByType diff --git a/libc/nt/ntdll/ZwAccessCheckByTypeAndAuditAlarm.S b/libc/nt/ntdll/ZwAccessCheckByTypeAndAuditAlarm.S deleted file mode 100644 index 85e8ab4d2..000000000 --- a/libc/nt/ntdll/ZwAccessCheckByTypeAndAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAccessCheckByTypeAndAuditAlarm,ZwAccessCheckByTypeAndAuditAlarm diff --git a/libc/nt/ntdll/ZwAccessCheckByTypeResultList.S b/libc/nt/ntdll/ZwAccessCheckByTypeResultList.S deleted file mode 100644 index 7896babfc..000000000 --- a/libc/nt/ntdll/ZwAccessCheckByTypeResultList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAccessCheckByTypeResultList,ZwAccessCheckByTypeResultList diff --git a/libc/nt/ntdll/ZwAccessCheckByTypeResultListAndAuditAlarm.S b/libc/nt/ntdll/ZwAccessCheckByTypeResultListAndAuditAlarm.S deleted file mode 100644 index 23b6d5d00..000000000 --- a/libc/nt/ntdll/ZwAccessCheckByTypeResultListAndAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAccessCheckByTypeResultListAndAuditAlarm,ZwAccessCheckByTypeResultListAndAuditAlarm diff --git a/libc/nt/ntdll/ZwAccessCheckByTypeResultListAndAuditAlarmByHandle.S b/libc/nt/ntdll/ZwAccessCheckByTypeResultListAndAuditAlarmByHandle.S deleted file mode 100644 index 9422863dc..000000000 --- a/libc/nt/ntdll/ZwAccessCheckByTypeResultListAndAuditAlarmByHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAccessCheckByTypeResultListAndAuditAlarmByHandle,ZwAccessCheckByTypeResultListAndAuditAlarmByHandle diff --git a/libc/nt/ntdll/ZwAcquireProcessActivityReference.S b/libc/nt/ntdll/ZwAcquireProcessActivityReference.S deleted file mode 100644 index 446c26336..000000000 --- a/libc/nt/ntdll/ZwAcquireProcessActivityReference.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAcquireProcessActivityReference,ZwAcquireProcessActivityReference diff --git a/libc/nt/ntdll/ZwAddAtom.S b/libc/nt/ntdll/ZwAddAtom.S deleted file mode 100644 index bba1041b6..000000000 --- a/libc/nt/ntdll/ZwAddAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAddAtom,ZwAddAtom diff --git a/libc/nt/ntdll/ZwAddAtomEx.S b/libc/nt/ntdll/ZwAddAtomEx.S deleted file mode 100644 index 4cf989fad..000000000 --- a/libc/nt/ntdll/ZwAddAtomEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAddAtomEx,ZwAddAtomEx diff --git a/libc/nt/ntdll/ZwAddBootEntry.S b/libc/nt/ntdll/ZwAddBootEntry.S deleted file mode 100644 index b34abaae0..000000000 --- a/libc/nt/ntdll/ZwAddBootEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAddBootEntry,ZwAddBootEntry diff --git a/libc/nt/ntdll/ZwAddDriverEntry.S b/libc/nt/ntdll/ZwAddDriverEntry.S deleted file mode 100644 index ae05d7f7e..000000000 --- a/libc/nt/ntdll/ZwAddDriverEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAddDriverEntry,ZwAddDriverEntry diff --git a/libc/nt/ntdll/ZwAdjustGroupsToken.S b/libc/nt/ntdll/ZwAdjustGroupsToken.S deleted file mode 100644 index e0d37aad3..000000000 --- a/libc/nt/ntdll/ZwAdjustGroupsToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAdjustGroupsToken,ZwAdjustGroupsToken diff --git a/libc/nt/ntdll/ZwAdjustPrivilegesToken.S b/libc/nt/ntdll/ZwAdjustPrivilegesToken.S deleted file mode 100644 index 2282318de..000000000 --- a/libc/nt/ntdll/ZwAdjustPrivilegesToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAdjustPrivilegesToken,ZwAdjustPrivilegesToken diff --git a/libc/nt/ntdll/ZwAdjustTokenClaimsAndDeviceGroups.S b/libc/nt/ntdll/ZwAdjustTokenClaimsAndDeviceGroups.S deleted file mode 100644 index 758283949..000000000 --- a/libc/nt/ntdll/ZwAdjustTokenClaimsAndDeviceGroups.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAdjustTokenClaimsAndDeviceGroups,ZwAdjustTokenClaimsAndDeviceGroups diff --git a/libc/nt/ntdll/ZwAlertResumeThread.S b/libc/nt/ntdll/ZwAlertResumeThread.S deleted file mode 100644 index 73e101c9d..000000000 --- a/libc/nt/ntdll/ZwAlertResumeThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlertResumeThread,ZwAlertResumeThread diff --git a/libc/nt/ntdll/ZwAlertThread.S b/libc/nt/ntdll/ZwAlertThread.S deleted file mode 100644 index 6078a4e3b..000000000 --- a/libc/nt/ntdll/ZwAlertThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlertThread,ZwAlertThread diff --git a/libc/nt/ntdll/ZwAlertThreadByThreadId.S b/libc/nt/ntdll/ZwAlertThreadByThreadId.S deleted file mode 100644 index 182b8b917..000000000 --- a/libc/nt/ntdll/ZwAlertThreadByThreadId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlertThreadByThreadId,ZwAlertThreadByThreadId diff --git a/libc/nt/ntdll/ZwAllocateLocallyUniqueId.S b/libc/nt/ntdll/ZwAllocateLocallyUniqueId.S deleted file mode 100644 index 9559b9020..000000000 --- a/libc/nt/ntdll/ZwAllocateLocallyUniqueId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAllocateLocallyUniqueId,ZwAllocateLocallyUniqueId diff --git a/libc/nt/ntdll/ZwAllocateReserveObject.S b/libc/nt/ntdll/ZwAllocateReserveObject.S deleted file mode 100644 index 1af860b46..000000000 --- a/libc/nt/ntdll/ZwAllocateReserveObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAllocateReserveObject,ZwAllocateReserveObject diff --git a/libc/nt/ntdll/ZwAllocateUserPhysicalPages.S b/libc/nt/ntdll/ZwAllocateUserPhysicalPages.S deleted file mode 100644 index f08af9d47..000000000 --- a/libc/nt/ntdll/ZwAllocateUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAllocateUserPhysicalPages,ZwAllocateUserPhysicalPages diff --git a/libc/nt/ntdll/ZwAllocateUuids.S b/libc/nt/ntdll/ZwAllocateUuids.S deleted file mode 100644 index 45a1d934c..000000000 --- a/libc/nt/ntdll/ZwAllocateUuids.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAllocateUuids,ZwAllocateUuids diff --git a/libc/nt/ntdll/ZwAllocateVirtualMemory.S b/libc/nt/ntdll/ZwAllocateVirtualMemory.S deleted file mode 100644 index 47ed106f9..000000000 --- a/libc/nt/ntdll/ZwAllocateVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAllocateVirtualMemory,ZwAllocateVirtualMemory diff --git a/libc/nt/ntdll/ZwAllocateVirtualMemoryEx.S b/libc/nt/ntdll/ZwAllocateVirtualMemoryEx.S deleted file mode 100644 index 78a2def62..000000000 --- a/libc/nt/ntdll/ZwAllocateVirtualMemoryEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAllocateVirtualMemoryEx,ZwAllocateVirtualMemoryEx diff --git a/libc/nt/ntdll/ZwAlpcAcceptConnectPort.S b/libc/nt/ntdll/ZwAlpcAcceptConnectPort.S deleted file mode 100644 index 49d8fac17..000000000 --- a/libc/nt/ntdll/ZwAlpcAcceptConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcAcceptConnectPort,ZwAlpcAcceptConnectPort diff --git a/libc/nt/ntdll/ZwAlpcCancelMessage.S b/libc/nt/ntdll/ZwAlpcCancelMessage.S deleted file mode 100644 index 4f1e16b0e..000000000 --- a/libc/nt/ntdll/ZwAlpcCancelMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcCancelMessage,ZwAlpcCancelMessage diff --git a/libc/nt/ntdll/ZwAlpcConnectPort.S b/libc/nt/ntdll/ZwAlpcConnectPort.S deleted file mode 100644 index 9501c94cc..000000000 --- a/libc/nt/ntdll/ZwAlpcConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcConnectPort,ZwAlpcConnectPort diff --git a/libc/nt/ntdll/ZwAlpcConnectPortEx.S b/libc/nt/ntdll/ZwAlpcConnectPortEx.S deleted file mode 100644 index 666008f6c..000000000 --- a/libc/nt/ntdll/ZwAlpcConnectPortEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcConnectPortEx,ZwAlpcConnectPortEx diff --git a/libc/nt/ntdll/ZwAlpcCreatePort.S b/libc/nt/ntdll/ZwAlpcCreatePort.S deleted file mode 100644 index 3de5362c0..000000000 --- a/libc/nt/ntdll/ZwAlpcCreatePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcCreatePort,ZwAlpcCreatePort diff --git a/libc/nt/ntdll/ZwAlpcCreatePortSection.S b/libc/nt/ntdll/ZwAlpcCreatePortSection.S deleted file mode 100644 index 762ff04e3..000000000 --- a/libc/nt/ntdll/ZwAlpcCreatePortSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcCreatePortSection,ZwAlpcCreatePortSection diff --git a/libc/nt/ntdll/ZwAlpcCreateResourceReserve.S b/libc/nt/ntdll/ZwAlpcCreateResourceReserve.S deleted file mode 100644 index 2281d79fc..000000000 --- a/libc/nt/ntdll/ZwAlpcCreateResourceReserve.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcCreateResourceReserve,ZwAlpcCreateResourceReserve diff --git a/libc/nt/ntdll/ZwAlpcCreateSectionView.S b/libc/nt/ntdll/ZwAlpcCreateSectionView.S deleted file mode 100644 index c9611fc71..000000000 --- a/libc/nt/ntdll/ZwAlpcCreateSectionView.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcCreateSectionView,ZwAlpcCreateSectionView diff --git a/libc/nt/ntdll/ZwAlpcCreateSecurityContext.S b/libc/nt/ntdll/ZwAlpcCreateSecurityContext.S deleted file mode 100644 index 88fd6052f..000000000 --- a/libc/nt/ntdll/ZwAlpcCreateSecurityContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcCreateSecurityContext,ZwAlpcCreateSecurityContext diff --git a/libc/nt/ntdll/ZwAlpcDeletePortSection.S b/libc/nt/ntdll/ZwAlpcDeletePortSection.S deleted file mode 100644 index 3964e73d5..000000000 --- a/libc/nt/ntdll/ZwAlpcDeletePortSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcDeletePortSection,ZwAlpcDeletePortSection diff --git a/libc/nt/ntdll/ZwAlpcDeleteResourceReserve.S b/libc/nt/ntdll/ZwAlpcDeleteResourceReserve.S deleted file mode 100644 index 8275d1130..000000000 --- a/libc/nt/ntdll/ZwAlpcDeleteResourceReserve.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcDeleteResourceReserve,ZwAlpcDeleteResourceReserve diff --git a/libc/nt/ntdll/ZwAlpcDeleteSectionView.S b/libc/nt/ntdll/ZwAlpcDeleteSectionView.S deleted file mode 100644 index 7091ed58b..000000000 --- a/libc/nt/ntdll/ZwAlpcDeleteSectionView.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcDeleteSectionView,ZwAlpcDeleteSectionView diff --git a/libc/nt/ntdll/ZwAlpcDeleteSecurityContext.S b/libc/nt/ntdll/ZwAlpcDeleteSecurityContext.S deleted file mode 100644 index c733842de..000000000 --- a/libc/nt/ntdll/ZwAlpcDeleteSecurityContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcDeleteSecurityContext,ZwAlpcDeleteSecurityContext diff --git a/libc/nt/ntdll/ZwAlpcDisconnectPort.S b/libc/nt/ntdll/ZwAlpcDisconnectPort.S deleted file mode 100644 index e5e9b343f..000000000 --- a/libc/nt/ntdll/ZwAlpcDisconnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcDisconnectPort,ZwAlpcDisconnectPort diff --git a/libc/nt/ntdll/ZwAlpcImpersonateClientContainerOfPort.S b/libc/nt/ntdll/ZwAlpcImpersonateClientContainerOfPort.S deleted file mode 100644 index 46ac163c0..000000000 --- a/libc/nt/ntdll/ZwAlpcImpersonateClientContainerOfPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcImpersonateClientContainerOfPort,ZwAlpcImpersonateClientContainerOfPort diff --git a/libc/nt/ntdll/ZwAlpcImpersonateClientOfPort.S b/libc/nt/ntdll/ZwAlpcImpersonateClientOfPort.S deleted file mode 100644 index 3499c0b10..000000000 --- a/libc/nt/ntdll/ZwAlpcImpersonateClientOfPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcImpersonateClientOfPort,ZwAlpcImpersonateClientOfPort diff --git a/libc/nt/ntdll/ZwAlpcOpenSenderProcess.S b/libc/nt/ntdll/ZwAlpcOpenSenderProcess.S deleted file mode 100644 index 735081602..000000000 --- a/libc/nt/ntdll/ZwAlpcOpenSenderProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcOpenSenderProcess,ZwAlpcOpenSenderProcess diff --git a/libc/nt/ntdll/ZwAlpcOpenSenderThread.S b/libc/nt/ntdll/ZwAlpcOpenSenderThread.S deleted file mode 100644 index 6ecd8ff29..000000000 --- a/libc/nt/ntdll/ZwAlpcOpenSenderThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcOpenSenderThread,ZwAlpcOpenSenderThread diff --git a/libc/nt/ntdll/ZwAlpcQueryInformation.S b/libc/nt/ntdll/ZwAlpcQueryInformation.S deleted file mode 100644 index 1aa8a7e18..000000000 --- a/libc/nt/ntdll/ZwAlpcQueryInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcQueryInformation,ZwAlpcQueryInformation diff --git a/libc/nt/ntdll/ZwAlpcQueryInformationMessage.S b/libc/nt/ntdll/ZwAlpcQueryInformationMessage.S deleted file mode 100644 index 710200f50..000000000 --- a/libc/nt/ntdll/ZwAlpcQueryInformationMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcQueryInformationMessage,ZwAlpcQueryInformationMessage diff --git a/libc/nt/ntdll/ZwAlpcRevokeSecurityContext.S b/libc/nt/ntdll/ZwAlpcRevokeSecurityContext.S deleted file mode 100644 index 591b8603b..000000000 --- a/libc/nt/ntdll/ZwAlpcRevokeSecurityContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcRevokeSecurityContext,ZwAlpcRevokeSecurityContext diff --git a/libc/nt/ntdll/ZwAlpcSendWaitReceivePort.S b/libc/nt/ntdll/ZwAlpcSendWaitReceivePort.S deleted file mode 100644 index f53dd1651..000000000 --- a/libc/nt/ntdll/ZwAlpcSendWaitReceivePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcSendWaitReceivePort,ZwAlpcSendWaitReceivePort diff --git a/libc/nt/ntdll/ZwAlpcSetInformation.S b/libc/nt/ntdll/ZwAlpcSetInformation.S deleted file mode 100644 index a5163e401..000000000 --- a/libc/nt/ntdll/ZwAlpcSetInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAlpcSetInformation,ZwAlpcSetInformation diff --git a/libc/nt/ntdll/ZwApphelpCacheControl.S b/libc/nt/ntdll/ZwApphelpCacheControl.S deleted file mode 100644 index 904fbcae6..000000000 --- a/libc/nt/ntdll/ZwApphelpCacheControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwApphelpCacheControl,ZwApphelpCacheControl diff --git a/libc/nt/ntdll/ZwAssignProcessToJobObject.S b/libc/nt/ntdll/ZwAssignProcessToJobObject.S deleted file mode 100644 index cd78f253a..000000000 --- a/libc/nt/ntdll/ZwAssignProcessToJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAssignProcessToJobObject,ZwAssignProcessToJobObject diff --git a/libc/nt/ntdll/ZwAssociateWaitCompletionPacket.S b/libc/nt/ntdll/ZwAssociateWaitCompletionPacket.S deleted file mode 100644 index edfff0bbb..000000000 --- a/libc/nt/ntdll/ZwAssociateWaitCompletionPacket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwAssociateWaitCompletionPacket,ZwAssociateWaitCompletionPacket diff --git a/libc/nt/ntdll/ZwCallEnclave.S b/libc/nt/ntdll/ZwCallEnclave.S deleted file mode 100644 index 61f6f805c..000000000 --- a/libc/nt/ntdll/ZwCallEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCallEnclave,ZwCallEnclave diff --git a/libc/nt/ntdll/ZwCallbackReturn.S b/libc/nt/ntdll/ZwCallbackReturn.S deleted file mode 100644 index 20c6a13f7..000000000 --- a/libc/nt/ntdll/ZwCallbackReturn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCallbackReturn,ZwCallbackReturn diff --git a/libc/nt/ntdll/ZwCancelIoFile.S b/libc/nt/ntdll/ZwCancelIoFile.S deleted file mode 100644 index 955dd2e3d..000000000 --- a/libc/nt/ntdll/ZwCancelIoFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCancelIoFile,ZwCancelIoFile diff --git a/libc/nt/ntdll/ZwCancelIoFileEx.S b/libc/nt/ntdll/ZwCancelIoFileEx.S deleted file mode 100644 index eea5c23b2..000000000 --- a/libc/nt/ntdll/ZwCancelIoFileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCancelIoFileEx,ZwCancelIoFileEx diff --git a/libc/nt/ntdll/ZwCancelSynchronousIoFile.S b/libc/nt/ntdll/ZwCancelSynchronousIoFile.S deleted file mode 100644 index 4de008220..000000000 --- a/libc/nt/ntdll/ZwCancelSynchronousIoFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCancelSynchronousIoFile,ZwCancelSynchronousIoFile diff --git a/libc/nt/ntdll/ZwCancelTimer.S b/libc/nt/ntdll/ZwCancelTimer.S deleted file mode 100644 index 5e57a600e..000000000 --- a/libc/nt/ntdll/ZwCancelTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCancelTimer,ZwCancelTimer diff --git a/libc/nt/ntdll/ZwCancelTimer2.S b/libc/nt/ntdll/ZwCancelTimer2.S deleted file mode 100644 index 4e3db77d0..000000000 --- a/libc/nt/ntdll/ZwCancelTimer2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCancelTimer2,ZwCancelTimer2 diff --git a/libc/nt/ntdll/ZwCancelWaitCompletionPacket.S b/libc/nt/ntdll/ZwCancelWaitCompletionPacket.S deleted file mode 100644 index 12b98df12..000000000 --- a/libc/nt/ntdll/ZwCancelWaitCompletionPacket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCancelWaitCompletionPacket,ZwCancelWaitCompletionPacket diff --git a/libc/nt/ntdll/ZwClearEvent.S b/libc/nt/ntdll/ZwClearEvent.S deleted file mode 100644 index 69bda25b0..000000000 --- a/libc/nt/ntdll/ZwClearEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwClearEvent,ZwClearEvent diff --git a/libc/nt/ntdll/ZwClose.S b/libc/nt/ntdll/ZwClose.S deleted file mode 100644 index 9cd5f41cd..000000000 --- a/libc/nt/ntdll/ZwClose.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwClose,ZwClose diff --git a/libc/nt/ntdll/ZwCloseObjectAuditAlarm.S b/libc/nt/ntdll/ZwCloseObjectAuditAlarm.S deleted file mode 100644 index 7a7aa9b99..000000000 --- a/libc/nt/ntdll/ZwCloseObjectAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCloseObjectAuditAlarm,ZwCloseObjectAuditAlarm diff --git a/libc/nt/ntdll/ZwCommitComplete.S b/libc/nt/ntdll/ZwCommitComplete.S deleted file mode 100644 index 5e0225c02..000000000 --- a/libc/nt/ntdll/ZwCommitComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCommitComplete,ZwCommitComplete diff --git a/libc/nt/ntdll/ZwCommitEnlistment.S b/libc/nt/ntdll/ZwCommitEnlistment.S deleted file mode 100644 index 5d8fa93cf..000000000 --- a/libc/nt/ntdll/ZwCommitEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCommitEnlistment,ZwCommitEnlistment diff --git a/libc/nt/ntdll/ZwCommitRegistryTransaction.S b/libc/nt/ntdll/ZwCommitRegistryTransaction.S deleted file mode 100644 index 5410ccb76..000000000 --- a/libc/nt/ntdll/ZwCommitRegistryTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCommitRegistryTransaction,ZwCommitRegistryTransaction diff --git a/libc/nt/ntdll/ZwCommitTransaction.S b/libc/nt/ntdll/ZwCommitTransaction.S deleted file mode 100644 index 7f9cab99c..000000000 --- a/libc/nt/ntdll/ZwCommitTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCommitTransaction,ZwCommitTransaction diff --git a/libc/nt/ntdll/ZwCompactKeys.S b/libc/nt/ntdll/ZwCompactKeys.S deleted file mode 100644 index 14b4c0b23..000000000 --- a/libc/nt/ntdll/ZwCompactKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCompactKeys,ZwCompactKeys diff --git a/libc/nt/ntdll/ZwCompareObjects.S b/libc/nt/ntdll/ZwCompareObjects.S deleted file mode 100644 index 3aa7cafc9..000000000 --- a/libc/nt/ntdll/ZwCompareObjects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCompareObjects,ZwCompareObjects diff --git a/libc/nt/ntdll/ZwCompareSigningLevels.S b/libc/nt/ntdll/ZwCompareSigningLevels.S deleted file mode 100644 index 443eed38e..000000000 --- a/libc/nt/ntdll/ZwCompareSigningLevels.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCompareSigningLevels,ZwCompareSigningLevels diff --git a/libc/nt/ntdll/ZwCompareTokens.S b/libc/nt/ntdll/ZwCompareTokens.S deleted file mode 100644 index 7549cd538..000000000 --- a/libc/nt/ntdll/ZwCompareTokens.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCompareTokens,ZwCompareTokens diff --git a/libc/nt/ntdll/ZwCompleteConnectPort.S b/libc/nt/ntdll/ZwCompleteConnectPort.S deleted file mode 100644 index b3d60e78e..000000000 --- a/libc/nt/ntdll/ZwCompleteConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCompleteConnectPort,ZwCompleteConnectPort diff --git a/libc/nt/ntdll/ZwCompressKey.S b/libc/nt/ntdll/ZwCompressKey.S deleted file mode 100644 index 9ecc46f0f..000000000 --- a/libc/nt/ntdll/ZwCompressKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCompressKey,ZwCompressKey diff --git a/libc/nt/ntdll/ZwConnectPort.S b/libc/nt/ntdll/ZwConnectPort.S deleted file mode 100644 index 486c70e47..000000000 --- a/libc/nt/ntdll/ZwConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwConnectPort,ZwConnectPort diff --git a/libc/nt/ntdll/ZwContinue.S b/libc/nt/ntdll/ZwContinue.S deleted file mode 100644 index 2d9865b8a..000000000 --- a/libc/nt/ntdll/ZwContinue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwContinue,ZwContinue diff --git a/libc/nt/ntdll/ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter.S b/libc/nt/ntdll/ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter.S deleted file mode 100644 index 017db47f5..000000000 --- a/libc/nt/ntdll/ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter,ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter diff --git a/libc/nt/ntdll/ZwCreateDebugObject.S b/libc/nt/ntdll/ZwCreateDebugObject.S deleted file mode 100644 index cff6394c6..000000000 --- a/libc/nt/ntdll/ZwCreateDebugObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateDebugObject,ZwCreateDebugObject diff --git a/libc/nt/ntdll/ZwCreateDirectoryObject.S b/libc/nt/ntdll/ZwCreateDirectoryObject.S deleted file mode 100644 index a557f741e..000000000 --- a/libc/nt/ntdll/ZwCreateDirectoryObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateDirectoryObject,ZwCreateDirectoryObject diff --git a/libc/nt/ntdll/ZwCreateDirectoryObjectEx.S b/libc/nt/ntdll/ZwCreateDirectoryObjectEx.S deleted file mode 100644 index dd12bb9bf..000000000 --- a/libc/nt/ntdll/ZwCreateDirectoryObjectEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateDirectoryObjectEx,ZwCreateDirectoryObjectEx diff --git a/libc/nt/ntdll/ZwCreateEnclave.S b/libc/nt/ntdll/ZwCreateEnclave.S deleted file mode 100644 index 394af1fb7..000000000 --- a/libc/nt/ntdll/ZwCreateEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateEnclave,ZwCreateEnclave diff --git a/libc/nt/ntdll/ZwCreateEnlistment.S b/libc/nt/ntdll/ZwCreateEnlistment.S deleted file mode 100644 index 75e272f51..000000000 --- a/libc/nt/ntdll/ZwCreateEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateEnlistment,ZwCreateEnlistment diff --git a/libc/nt/ntdll/ZwCreateEvent.S b/libc/nt/ntdll/ZwCreateEvent.S deleted file mode 100644 index aeb58e745..000000000 --- a/libc/nt/ntdll/ZwCreateEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateEvent,ZwCreateEvent diff --git a/libc/nt/ntdll/ZwCreateEventPair.S b/libc/nt/ntdll/ZwCreateEventPair.S deleted file mode 100644 index 155ae8df2..000000000 --- a/libc/nt/ntdll/ZwCreateEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateEventPair,ZwCreateEventPair diff --git a/libc/nt/ntdll/ZwCreateFile.S b/libc/nt/ntdll/ZwCreateFile.S deleted file mode 100644 index 22968c40a..000000000 --- a/libc/nt/ntdll/ZwCreateFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateFile,ZwCreateFile diff --git a/libc/nt/ntdll/ZwCreateIRTimer.S b/libc/nt/ntdll/ZwCreateIRTimer.S deleted file mode 100644 index 7a24cd2da..000000000 --- a/libc/nt/ntdll/ZwCreateIRTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateIRTimer,ZwCreateIRTimer diff --git a/libc/nt/ntdll/ZwCreateIoCompletion.S b/libc/nt/ntdll/ZwCreateIoCompletion.S deleted file mode 100644 index 24bf47ab1..000000000 --- a/libc/nt/ntdll/ZwCreateIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateIoCompletion,ZwCreateIoCompletion diff --git a/libc/nt/ntdll/ZwCreateJobObject.S b/libc/nt/ntdll/ZwCreateJobObject.S deleted file mode 100644 index 694340a89..000000000 --- a/libc/nt/ntdll/ZwCreateJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateJobObject,ZwCreateJobObject diff --git a/libc/nt/ntdll/ZwCreateJobSet.S b/libc/nt/ntdll/ZwCreateJobSet.S deleted file mode 100644 index 02cfd0890..000000000 --- a/libc/nt/ntdll/ZwCreateJobSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateJobSet,ZwCreateJobSet diff --git a/libc/nt/ntdll/ZwCreateKey.S b/libc/nt/ntdll/ZwCreateKey.S deleted file mode 100644 index d9c6b93d9..000000000 --- a/libc/nt/ntdll/ZwCreateKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateKey,ZwCreateKey diff --git a/libc/nt/ntdll/ZwCreateKeyTransacted.S b/libc/nt/ntdll/ZwCreateKeyTransacted.S deleted file mode 100644 index f1364d6a3..000000000 --- a/libc/nt/ntdll/ZwCreateKeyTransacted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateKeyTransacted,ZwCreateKeyTransacted diff --git a/libc/nt/ntdll/ZwCreateKeyedEvent.S b/libc/nt/ntdll/ZwCreateKeyedEvent.S deleted file mode 100644 index 79233cf86..000000000 --- a/libc/nt/ntdll/ZwCreateKeyedEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateKeyedEvent,ZwCreateKeyedEvent diff --git a/libc/nt/ntdll/ZwCreateLowBoxToken.S b/libc/nt/ntdll/ZwCreateLowBoxToken.S deleted file mode 100644 index 050c31d42..000000000 --- a/libc/nt/ntdll/ZwCreateLowBoxToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateLowBoxToken,ZwCreateLowBoxToken diff --git a/libc/nt/ntdll/ZwCreateMailslotFile.S b/libc/nt/ntdll/ZwCreateMailslotFile.S deleted file mode 100644 index 716e3de97..000000000 --- a/libc/nt/ntdll/ZwCreateMailslotFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateMailslotFile,ZwCreateMailslotFile diff --git a/libc/nt/ntdll/ZwCreateMutant.S b/libc/nt/ntdll/ZwCreateMutant.S deleted file mode 100644 index adcbc1736..000000000 --- a/libc/nt/ntdll/ZwCreateMutant.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateMutant,ZwCreateMutant diff --git a/libc/nt/ntdll/ZwCreateNamedPipeFile.S b/libc/nt/ntdll/ZwCreateNamedPipeFile.S deleted file mode 100644 index 67edeb98a..000000000 --- a/libc/nt/ntdll/ZwCreateNamedPipeFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateNamedPipeFile,ZwCreateNamedPipeFile diff --git a/libc/nt/ntdll/ZwCreatePagingFile.S b/libc/nt/ntdll/ZwCreatePagingFile.S deleted file mode 100644 index 201562179..000000000 --- a/libc/nt/ntdll/ZwCreatePagingFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreatePagingFile,ZwCreatePagingFile diff --git a/libc/nt/ntdll/ZwCreatePartition.S b/libc/nt/ntdll/ZwCreatePartition.S deleted file mode 100644 index c1dd6b4a7..000000000 --- a/libc/nt/ntdll/ZwCreatePartition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreatePartition,ZwCreatePartition diff --git a/libc/nt/ntdll/ZwCreatePort.S b/libc/nt/ntdll/ZwCreatePort.S deleted file mode 100644 index e26a47f01..000000000 --- a/libc/nt/ntdll/ZwCreatePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreatePort,ZwCreatePort diff --git a/libc/nt/ntdll/ZwCreatePrivateNamespace.S b/libc/nt/ntdll/ZwCreatePrivateNamespace.S deleted file mode 100644 index 15023123d..000000000 --- a/libc/nt/ntdll/ZwCreatePrivateNamespace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreatePrivateNamespace,ZwCreatePrivateNamespace diff --git a/libc/nt/ntdll/ZwCreateProcess.S b/libc/nt/ntdll/ZwCreateProcess.S deleted file mode 100644 index afbecb354..000000000 --- a/libc/nt/ntdll/ZwCreateProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateProcess,ZwCreateProcess diff --git a/libc/nt/ntdll/ZwCreateProcessEx.S b/libc/nt/ntdll/ZwCreateProcessEx.S deleted file mode 100644 index 2d9555c3e..000000000 --- a/libc/nt/ntdll/ZwCreateProcessEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateProcessEx,ZwCreateProcessEx diff --git a/libc/nt/ntdll/ZwCreateProfile.S b/libc/nt/ntdll/ZwCreateProfile.S deleted file mode 100644 index 448eef975..000000000 --- a/libc/nt/ntdll/ZwCreateProfile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateProfile,ZwCreateProfile diff --git a/libc/nt/ntdll/ZwCreateProfileEx.S b/libc/nt/ntdll/ZwCreateProfileEx.S deleted file mode 100644 index 32244dabb..000000000 --- a/libc/nt/ntdll/ZwCreateProfileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateProfileEx,ZwCreateProfileEx diff --git a/libc/nt/ntdll/ZwCreateRegistryTransaction.S b/libc/nt/ntdll/ZwCreateRegistryTransaction.S deleted file mode 100644 index c8f02a22c..000000000 --- a/libc/nt/ntdll/ZwCreateRegistryTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateRegistryTransaction,ZwCreateRegistryTransaction diff --git a/libc/nt/ntdll/ZwCreateResourceManager.S b/libc/nt/ntdll/ZwCreateResourceManager.S deleted file mode 100644 index 580dcebe6..000000000 --- a/libc/nt/ntdll/ZwCreateResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateResourceManager,ZwCreateResourceManager diff --git a/libc/nt/ntdll/ZwCreateSection.S b/libc/nt/ntdll/ZwCreateSection.S deleted file mode 100644 index 2b7da330e..000000000 --- a/libc/nt/ntdll/ZwCreateSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateSection,ZwCreateSection diff --git a/libc/nt/ntdll/ZwCreateSemaphore.S b/libc/nt/ntdll/ZwCreateSemaphore.S deleted file mode 100644 index 3734ea5be..000000000 --- a/libc/nt/ntdll/ZwCreateSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateSemaphore,ZwCreateSemaphore diff --git a/libc/nt/ntdll/ZwCreateSymbolicLinkObject.S b/libc/nt/ntdll/ZwCreateSymbolicLinkObject.S deleted file mode 100644 index db78d7f24..000000000 --- a/libc/nt/ntdll/ZwCreateSymbolicLinkObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateSymbolicLinkObject,ZwCreateSymbolicLinkObject diff --git a/libc/nt/ntdll/ZwCreateThread.S b/libc/nt/ntdll/ZwCreateThread.S deleted file mode 100644 index 885c7c2f1..000000000 --- a/libc/nt/ntdll/ZwCreateThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateThread,ZwCreateThread diff --git a/libc/nt/ntdll/ZwCreateThreadEx.S b/libc/nt/ntdll/ZwCreateThreadEx.S deleted file mode 100644 index 56f8a0446..000000000 --- a/libc/nt/ntdll/ZwCreateThreadEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateThreadEx,ZwCreateThreadEx diff --git a/libc/nt/ntdll/ZwCreateTimer.S b/libc/nt/ntdll/ZwCreateTimer.S deleted file mode 100644 index c8f32be74..000000000 --- a/libc/nt/ntdll/ZwCreateTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateTimer,ZwCreateTimer diff --git a/libc/nt/ntdll/ZwCreateTimer2.S b/libc/nt/ntdll/ZwCreateTimer2.S deleted file mode 100644 index ffda01e2e..000000000 --- a/libc/nt/ntdll/ZwCreateTimer2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateTimer2,ZwCreateTimer2 diff --git a/libc/nt/ntdll/ZwCreateToken.S b/libc/nt/ntdll/ZwCreateToken.S deleted file mode 100644 index 224887b63..000000000 --- a/libc/nt/ntdll/ZwCreateToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateToken,ZwCreateToken diff --git a/libc/nt/ntdll/ZwCreateTokenEx.S b/libc/nt/ntdll/ZwCreateTokenEx.S deleted file mode 100644 index ae0871ba8..000000000 --- a/libc/nt/ntdll/ZwCreateTokenEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateTokenEx,ZwCreateTokenEx diff --git a/libc/nt/ntdll/ZwCreateTransaction.S b/libc/nt/ntdll/ZwCreateTransaction.S deleted file mode 100644 index 8411b991d..000000000 --- a/libc/nt/ntdll/ZwCreateTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateTransaction,ZwCreateTransaction diff --git a/libc/nt/ntdll/ZwCreateTransactionManager.S b/libc/nt/ntdll/ZwCreateTransactionManager.S deleted file mode 100644 index de4a48031..000000000 --- a/libc/nt/ntdll/ZwCreateTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateTransactionManager,ZwCreateTransactionManager diff --git a/libc/nt/ntdll/ZwCreateUserProcess.S b/libc/nt/ntdll/ZwCreateUserProcess.S deleted file mode 100644 index 714dcc71d..000000000 --- a/libc/nt/ntdll/ZwCreateUserProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateUserProcess,ZwCreateUserProcess diff --git a/libc/nt/ntdll/ZwCreateWaitCompletionPacket.S b/libc/nt/ntdll/ZwCreateWaitCompletionPacket.S deleted file mode 100644 index cdb91aba1..000000000 --- a/libc/nt/ntdll/ZwCreateWaitCompletionPacket.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateWaitCompletionPacket,ZwCreateWaitCompletionPacket diff --git a/libc/nt/ntdll/ZwCreateWaitablePort.S b/libc/nt/ntdll/ZwCreateWaitablePort.S deleted file mode 100644 index 1882f3b80..000000000 --- a/libc/nt/ntdll/ZwCreateWaitablePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateWaitablePort,ZwCreateWaitablePort diff --git a/libc/nt/ntdll/ZwCreateWnfStateName.S b/libc/nt/ntdll/ZwCreateWnfStateName.S deleted file mode 100644 index 3f42ba4c5..000000000 --- a/libc/nt/ntdll/ZwCreateWnfStateName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateWnfStateName,ZwCreateWnfStateName diff --git a/libc/nt/ntdll/ZwCreateWorkerFactory.S b/libc/nt/ntdll/ZwCreateWorkerFactory.S deleted file mode 100644 index 4b2c4da11..000000000 --- a/libc/nt/ntdll/ZwCreateWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwCreateWorkerFactory,ZwCreateWorkerFactory diff --git a/libc/nt/ntdll/ZwDebugActiveProcess.S b/libc/nt/ntdll/ZwDebugActiveProcess.S deleted file mode 100644 index 6d4220256..000000000 --- a/libc/nt/ntdll/ZwDebugActiveProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDebugActiveProcess,ZwDebugActiveProcess diff --git a/libc/nt/ntdll/ZwDebugContinue.S b/libc/nt/ntdll/ZwDebugContinue.S deleted file mode 100644 index bc104b348..000000000 --- a/libc/nt/ntdll/ZwDebugContinue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDebugContinue,ZwDebugContinue diff --git a/libc/nt/ntdll/ZwDelayExecution.S b/libc/nt/ntdll/ZwDelayExecution.S deleted file mode 100644 index 99a1c8f1c..000000000 --- a/libc/nt/ntdll/ZwDelayExecution.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDelayExecution,ZwDelayExecution diff --git a/libc/nt/ntdll/ZwDeleteAtom.S b/libc/nt/ntdll/ZwDeleteAtom.S deleted file mode 100644 index 6d21172c7..000000000 --- a/libc/nt/ntdll/ZwDeleteAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteAtom,ZwDeleteAtom diff --git a/libc/nt/ntdll/ZwDeleteBootEntry.S b/libc/nt/ntdll/ZwDeleteBootEntry.S deleted file mode 100644 index 2cc088f6d..000000000 --- a/libc/nt/ntdll/ZwDeleteBootEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteBootEntry,ZwDeleteBootEntry diff --git a/libc/nt/ntdll/ZwDeleteDriverEntry.S b/libc/nt/ntdll/ZwDeleteDriverEntry.S deleted file mode 100644 index 5b1ef4798..000000000 --- a/libc/nt/ntdll/ZwDeleteDriverEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteDriverEntry,ZwDeleteDriverEntry diff --git a/libc/nt/ntdll/ZwDeleteFile.S b/libc/nt/ntdll/ZwDeleteFile.S deleted file mode 100644 index c5d952fe3..000000000 --- a/libc/nt/ntdll/ZwDeleteFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteFile,ZwDeleteFile diff --git a/libc/nt/ntdll/ZwDeleteKey.S b/libc/nt/ntdll/ZwDeleteKey.S deleted file mode 100644 index e8ecde606..000000000 --- a/libc/nt/ntdll/ZwDeleteKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteKey,ZwDeleteKey diff --git a/libc/nt/ntdll/ZwDeleteObjectAuditAlarm.S b/libc/nt/ntdll/ZwDeleteObjectAuditAlarm.S deleted file mode 100644 index fe52d46c7..000000000 --- a/libc/nt/ntdll/ZwDeleteObjectAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteObjectAuditAlarm,ZwDeleteObjectAuditAlarm diff --git a/libc/nt/ntdll/ZwDeletePrivateNamespace.S b/libc/nt/ntdll/ZwDeletePrivateNamespace.S deleted file mode 100644 index ec408c469..000000000 --- a/libc/nt/ntdll/ZwDeletePrivateNamespace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeletePrivateNamespace,ZwDeletePrivateNamespace diff --git a/libc/nt/ntdll/ZwDeleteValueKey.S b/libc/nt/ntdll/ZwDeleteValueKey.S deleted file mode 100644 index 324b45930..000000000 --- a/libc/nt/ntdll/ZwDeleteValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteValueKey,ZwDeleteValueKey diff --git a/libc/nt/ntdll/ZwDeleteWnfStateData.S b/libc/nt/ntdll/ZwDeleteWnfStateData.S deleted file mode 100644 index e9d16678f..000000000 --- a/libc/nt/ntdll/ZwDeleteWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteWnfStateData,ZwDeleteWnfStateData diff --git a/libc/nt/ntdll/ZwDeleteWnfStateName.S b/libc/nt/ntdll/ZwDeleteWnfStateName.S deleted file mode 100644 index 06114ecdf..000000000 --- a/libc/nt/ntdll/ZwDeleteWnfStateName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeleteWnfStateName,ZwDeleteWnfStateName diff --git a/libc/nt/ntdll/ZwDeviceIoControlFile.S b/libc/nt/ntdll/ZwDeviceIoControlFile.S deleted file mode 100644 index d92ef7712..000000000 --- a/libc/nt/ntdll/ZwDeviceIoControlFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDeviceIoControlFile,ZwDeviceIoControlFile diff --git a/libc/nt/ntdll/ZwDisableLastKnownGood.S b/libc/nt/ntdll/ZwDisableLastKnownGood.S deleted file mode 100644 index d39355835..000000000 --- a/libc/nt/ntdll/ZwDisableLastKnownGood.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDisableLastKnownGood,ZwDisableLastKnownGood diff --git a/libc/nt/ntdll/ZwDisplayString.S b/libc/nt/ntdll/ZwDisplayString.S deleted file mode 100644 index f8f3d7b16..000000000 --- a/libc/nt/ntdll/ZwDisplayString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDisplayString,ZwDisplayString diff --git a/libc/nt/ntdll/ZwDrawText.S b/libc/nt/ntdll/ZwDrawText.S deleted file mode 100644 index cc30170f3..000000000 --- a/libc/nt/ntdll/ZwDrawText.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDrawText,ZwDrawText diff --git a/libc/nt/ntdll/ZwDuplicateObject.S b/libc/nt/ntdll/ZwDuplicateObject.S deleted file mode 100644 index a78b73c38..000000000 --- a/libc/nt/ntdll/ZwDuplicateObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDuplicateObject,ZwDuplicateObject diff --git a/libc/nt/ntdll/ZwDuplicateToken.S b/libc/nt/ntdll/ZwDuplicateToken.S deleted file mode 100644 index 8cdec6f6e..000000000 --- a/libc/nt/ntdll/ZwDuplicateToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwDuplicateToken,ZwDuplicateToken diff --git a/libc/nt/ntdll/ZwEnableLastKnownGood.S b/libc/nt/ntdll/ZwEnableLastKnownGood.S deleted file mode 100644 index 127d96131..000000000 --- a/libc/nt/ntdll/ZwEnableLastKnownGood.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwEnableLastKnownGood,ZwEnableLastKnownGood diff --git a/libc/nt/ntdll/ZwEnumerateBootEntries.S b/libc/nt/ntdll/ZwEnumerateBootEntries.S deleted file mode 100644 index 30a6f18aa..000000000 --- a/libc/nt/ntdll/ZwEnumerateBootEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwEnumerateBootEntries,ZwEnumerateBootEntries diff --git a/libc/nt/ntdll/ZwEnumerateDriverEntries.S b/libc/nt/ntdll/ZwEnumerateDriverEntries.S deleted file mode 100644 index f7ee30e14..000000000 --- a/libc/nt/ntdll/ZwEnumerateDriverEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwEnumerateDriverEntries,ZwEnumerateDriverEntries diff --git a/libc/nt/ntdll/ZwEnumerateKey.S b/libc/nt/ntdll/ZwEnumerateKey.S deleted file mode 100644 index fa62c3263..000000000 --- a/libc/nt/ntdll/ZwEnumerateKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwEnumerateKey,ZwEnumerateKey diff --git a/libc/nt/ntdll/ZwEnumerateSystemEnvironmentValuesEx.S b/libc/nt/ntdll/ZwEnumerateSystemEnvironmentValuesEx.S deleted file mode 100644 index 77bfddf28..000000000 --- a/libc/nt/ntdll/ZwEnumerateSystemEnvironmentValuesEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwEnumerateSystemEnvironmentValuesEx,ZwEnumerateSystemEnvironmentValuesEx diff --git a/libc/nt/ntdll/ZwEnumerateTransactionObject.S b/libc/nt/ntdll/ZwEnumerateTransactionObject.S deleted file mode 100644 index 09e2c77fd..000000000 --- a/libc/nt/ntdll/ZwEnumerateTransactionObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwEnumerateTransactionObject,ZwEnumerateTransactionObject diff --git a/libc/nt/ntdll/ZwEnumerateValueKey.S b/libc/nt/ntdll/ZwEnumerateValueKey.S deleted file mode 100644 index 87338b8fb..000000000 --- a/libc/nt/ntdll/ZwEnumerateValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwEnumerateValueKey,ZwEnumerateValueKey diff --git a/libc/nt/ntdll/ZwExtendSection.S b/libc/nt/ntdll/ZwExtendSection.S deleted file mode 100644 index ab9de86f3..000000000 --- a/libc/nt/ntdll/ZwExtendSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwExtendSection,ZwExtendSection diff --git a/libc/nt/ntdll/ZwFilterBootOption.S b/libc/nt/ntdll/ZwFilterBootOption.S deleted file mode 100644 index 5de058da0..000000000 --- a/libc/nt/ntdll/ZwFilterBootOption.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFilterBootOption,ZwFilterBootOption diff --git a/libc/nt/ntdll/ZwFilterToken.S b/libc/nt/ntdll/ZwFilterToken.S deleted file mode 100644 index cccc34017..000000000 --- a/libc/nt/ntdll/ZwFilterToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFilterToken,ZwFilterToken diff --git a/libc/nt/ntdll/ZwFilterTokenEx.S b/libc/nt/ntdll/ZwFilterTokenEx.S deleted file mode 100644 index 85035bc4e..000000000 --- a/libc/nt/ntdll/ZwFilterTokenEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFilterTokenEx,ZwFilterTokenEx diff --git a/libc/nt/ntdll/ZwFindAtom.S b/libc/nt/ntdll/ZwFindAtom.S deleted file mode 100644 index af55fc983..000000000 --- a/libc/nt/ntdll/ZwFindAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFindAtom,ZwFindAtom diff --git a/libc/nt/ntdll/ZwFlushBuffersFile.S b/libc/nt/ntdll/ZwFlushBuffersFile.S deleted file mode 100644 index e9fca8ff6..000000000 --- a/libc/nt/ntdll/ZwFlushBuffersFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFlushBuffersFile,ZwFlushBuffersFile diff --git a/libc/nt/ntdll/ZwFlushBuffersFileEx.S b/libc/nt/ntdll/ZwFlushBuffersFileEx.S deleted file mode 100644 index 1cb97ad59..000000000 --- a/libc/nt/ntdll/ZwFlushBuffersFileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFlushBuffersFileEx,ZwFlushBuffersFileEx diff --git a/libc/nt/ntdll/ZwFlushInstallUILanguage.S b/libc/nt/ntdll/ZwFlushInstallUILanguage.S deleted file mode 100644 index 97532fc8f..000000000 --- a/libc/nt/ntdll/ZwFlushInstallUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFlushInstallUILanguage,ZwFlushInstallUILanguage diff --git a/libc/nt/ntdll/ZwFlushInstructionCache.S b/libc/nt/ntdll/ZwFlushInstructionCache.S deleted file mode 100644 index 62b3b6a77..000000000 --- a/libc/nt/ntdll/ZwFlushInstructionCache.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFlushInstructionCache,ZwFlushInstructionCache diff --git a/libc/nt/ntdll/ZwFlushKey.S b/libc/nt/ntdll/ZwFlushKey.S deleted file mode 100644 index d1b47765e..000000000 --- a/libc/nt/ntdll/ZwFlushKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFlushKey,ZwFlushKey diff --git a/libc/nt/ntdll/ZwFlushProcessWriteBuffers.S b/libc/nt/ntdll/ZwFlushProcessWriteBuffers.S deleted file mode 100644 index 1a982c33e..000000000 --- a/libc/nt/ntdll/ZwFlushProcessWriteBuffers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFlushProcessWriteBuffers,ZwFlushProcessWriteBuffers diff --git a/libc/nt/ntdll/ZwFlushVirtualMemory.S b/libc/nt/ntdll/ZwFlushVirtualMemory.S deleted file mode 100644 index 00b6fe8f6..000000000 --- a/libc/nt/ntdll/ZwFlushVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFlushVirtualMemory,ZwFlushVirtualMemory diff --git a/libc/nt/ntdll/ZwFlushWriteBuffer.S b/libc/nt/ntdll/ZwFlushWriteBuffer.S deleted file mode 100644 index cd422263b..000000000 --- a/libc/nt/ntdll/ZwFlushWriteBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFlushWriteBuffer,ZwFlushWriteBuffer diff --git a/libc/nt/ntdll/ZwFreeUserPhysicalPages.S b/libc/nt/ntdll/ZwFreeUserPhysicalPages.S deleted file mode 100644 index af4dd9aeb..000000000 --- a/libc/nt/ntdll/ZwFreeUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFreeUserPhysicalPages,ZwFreeUserPhysicalPages diff --git a/libc/nt/ntdll/ZwFreeVirtualMemory.S b/libc/nt/ntdll/ZwFreeVirtualMemory.S deleted file mode 100644 index 4b68e490f..000000000 --- a/libc/nt/ntdll/ZwFreeVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFreeVirtualMemory,ZwFreeVirtualMemory diff --git a/libc/nt/ntdll/ZwFreezeRegistry.S b/libc/nt/ntdll/ZwFreezeRegistry.S deleted file mode 100644 index 4a9e9ea2a..000000000 --- a/libc/nt/ntdll/ZwFreezeRegistry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFreezeRegistry,ZwFreezeRegistry diff --git a/libc/nt/ntdll/ZwFreezeTransactions.S b/libc/nt/ntdll/ZwFreezeTransactions.S deleted file mode 100644 index c24949a55..000000000 --- a/libc/nt/ntdll/ZwFreezeTransactions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFreezeTransactions,ZwFreezeTransactions diff --git a/libc/nt/ntdll/ZwFsControlFile.S b/libc/nt/ntdll/ZwFsControlFile.S deleted file mode 100644 index ce7f5a586..000000000 --- a/libc/nt/ntdll/ZwFsControlFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwFsControlFile,ZwFsControlFile diff --git a/libc/nt/ntdll/ZwGetCachedSigningLevel.S b/libc/nt/ntdll/ZwGetCachedSigningLevel.S deleted file mode 100644 index e94587840..000000000 --- a/libc/nt/ntdll/ZwGetCachedSigningLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetCachedSigningLevel,ZwGetCachedSigningLevel diff --git a/libc/nt/ntdll/ZwGetCompleteWnfStateSubscription.S b/libc/nt/ntdll/ZwGetCompleteWnfStateSubscription.S deleted file mode 100644 index 5fe589a4a..000000000 --- a/libc/nt/ntdll/ZwGetCompleteWnfStateSubscription.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetCompleteWnfStateSubscription,ZwGetCompleteWnfStateSubscription diff --git a/libc/nt/ntdll/ZwGetContextThread.S b/libc/nt/ntdll/ZwGetContextThread.S deleted file mode 100644 index 658a0ea40..000000000 --- a/libc/nt/ntdll/ZwGetContextThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetContextThread,ZwGetContextThread diff --git a/libc/nt/ntdll/ZwGetCurrentProcessorNumber.S b/libc/nt/ntdll/ZwGetCurrentProcessorNumber.S deleted file mode 100644 index ed6db8801..000000000 --- a/libc/nt/ntdll/ZwGetCurrentProcessorNumber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetCurrentProcessorNumber,ZwGetCurrentProcessorNumber diff --git a/libc/nt/ntdll/ZwGetCurrentProcessorNumberEx.S b/libc/nt/ntdll/ZwGetCurrentProcessorNumberEx.S deleted file mode 100644 index 779c5746d..000000000 --- a/libc/nt/ntdll/ZwGetCurrentProcessorNumberEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetCurrentProcessorNumberEx,ZwGetCurrentProcessorNumberEx diff --git a/libc/nt/ntdll/ZwGetDevicePowerState.S b/libc/nt/ntdll/ZwGetDevicePowerState.S deleted file mode 100644 index a7d16060f..000000000 --- a/libc/nt/ntdll/ZwGetDevicePowerState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetDevicePowerState,ZwGetDevicePowerState diff --git a/libc/nt/ntdll/ZwGetMUIRegistryInfo.S b/libc/nt/ntdll/ZwGetMUIRegistryInfo.S deleted file mode 100644 index b53f68db8..000000000 --- a/libc/nt/ntdll/ZwGetMUIRegistryInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetMUIRegistryInfo,ZwGetMUIRegistryInfo diff --git a/libc/nt/ntdll/ZwGetNextProcess.S b/libc/nt/ntdll/ZwGetNextProcess.S deleted file mode 100644 index ddf8626d5..000000000 --- a/libc/nt/ntdll/ZwGetNextProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetNextProcess,ZwGetNextProcess diff --git a/libc/nt/ntdll/ZwGetNextThread.S b/libc/nt/ntdll/ZwGetNextThread.S deleted file mode 100644 index f4a5133a5..000000000 --- a/libc/nt/ntdll/ZwGetNextThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetNextThread,ZwGetNextThread diff --git a/libc/nt/ntdll/ZwGetNlsSectionPtr.S b/libc/nt/ntdll/ZwGetNlsSectionPtr.S deleted file mode 100644 index e97d1f184..000000000 --- a/libc/nt/ntdll/ZwGetNlsSectionPtr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetNlsSectionPtr,ZwGetNlsSectionPtr diff --git a/libc/nt/ntdll/ZwGetNotificationResourceManager.S b/libc/nt/ntdll/ZwGetNotificationResourceManager.S deleted file mode 100644 index 19fdde179..000000000 --- a/libc/nt/ntdll/ZwGetNotificationResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetNotificationResourceManager,ZwGetNotificationResourceManager diff --git a/libc/nt/ntdll/ZwGetWriteWatch.S b/libc/nt/ntdll/ZwGetWriteWatch.S deleted file mode 100644 index eb800e980..000000000 --- a/libc/nt/ntdll/ZwGetWriteWatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwGetWriteWatch,ZwGetWriteWatch diff --git a/libc/nt/ntdll/ZwImpersonateAnonymousToken.S b/libc/nt/ntdll/ZwImpersonateAnonymousToken.S deleted file mode 100644 index 6abf277f2..000000000 --- a/libc/nt/ntdll/ZwImpersonateAnonymousToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwImpersonateAnonymousToken,ZwImpersonateAnonymousToken diff --git a/libc/nt/ntdll/ZwImpersonateClientOfPort.S b/libc/nt/ntdll/ZwImpersonateClientOfPort.S deleted file mode 100644 index 276a13b1f..000000000 --- a/libc/nt/ntdll/ZwImpersonateClientOfPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwImpersonateClientOfPort,ZwImpersonateClientOfPort diff --git a/libc/nt/ntdll/ZwImpersonateThread.S b/libc/nt/ntdll/ZwImpersonateThread.S deleted file mode 100644 index 2f71b870e..000000000 --- a/libc/nt/ntdll/ZwImpersonateThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwImpersonateThread,ZwImpersonateThread diff --git a/libc/nt/ntdll/ZwInitializeEnclave.S b/libc/nt/ntdll/ZwInitializeEnclave.S deleted file mode 100644 index edeab1aba..000000000 --- a/libc/nt/ntdll/ZwInitializeEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwInitializeEnclave,ZwInitializeEnclave diff --git a/libc/nt/ntdll/ZwInitializeNlsFiles.S b/libc/nt/ntdll/ZwInitializeNlsFiles.S deleted file mode 100644 index 6a561edb2..000000000 --- a/libc/nt/ntdll/ZwInitializeNlsFiles.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwInitializeNlsFiles,ZwInitializeNlsFiles diff --git a/libc/nt/ntdll/ZwInitializeRegistry.S b/libc/nt/ntdll/ZwInitializeRegistry.S deleted file mode 100644 index 0b08f92c7..000000000 --- a/libc/nt/ntdll/ZwInitializeRegistry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwInitializeRegistry,ZwInitializeRegistry diff --git a/libc/nt/ntdll/ZwInitiatePowerAction.S b/libc/nt/ntdll/ZwInitiatePowerAction.S deleted file mode 100644 index 83124b92f..000000000 --- a/libc/nt/ntdll/ZwInitiatePowerAction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwInitiatePowerAction,ZwInitiatePowerAction diff --git a/libc/nt/ntdll/ZwIsProcessInJob.S b/libc/nt/ntdll/ZwIsProcessInJob.S deleted file mode 100644 index c6b6c9661..000000000 --- a/libc/nt/ntdll/ZwIsProcessInJob.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwIsProcessInJob,ZwIsProcessInJob diff --git a/libc/nt/ntdll/ZwIsSystemResumeAutomatic.S b/libc/nt/ntdll/ZwIsSystemResumeAutomatic.S deleted file mode 100644 index 36d0cf88d..000000000 --- a/libc/nt/ntdll/ZwIsSystemResumeAutomatic.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwIsSystemResumeAutomatic,ZwIsSystemResumeAutomatic diff --git a/libc/nt/ntdll/ZwIsUILanguageComitted.S b/libc/nt/ntdll/ZwIsUILanguageComitted.S deleted file mode 100644 index d2821620e..000000000 --- a/libc/nt/ntdll/ZwIsUILanguageComitted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwIsUILanguageComitted,ZwIsUILanguageComitted diff --git a/libc/nt/ntdll/ZwListenPort.S b/libc/nt/ntdll/ZwListenPort.S deleted file mode 100644 index 582c47303..000000000 --- a/libc/nt/ntdll/ZwListenPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwListenPort,ZwListenPort diff --git a/libc/nt/ntdll/ZwLoadDriver.S b/libc/nt/ntdll/ZwLoadDriver.S deleted file mode 100644 index 55e72bcdc..000000000 --- a/libc/nt/ntdll/ZwLoadDriver.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLoadDriver,ZwLoadDriver diff --git a/libc/nt/ntdll/ZwLoadEnclaveData.S b/libc/nt/ntdll/ZwLoadEnclaveData.S deleted file mode 100644 index ed0178e36..000000000 --- a/libc/nt/ntdll/ZwLoadEnclaveData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLoadEnclaveData,ZwLoadEnclaveData diff --git a/libc/nt/ntdll/ZwLoadHotPatch.S b/libc/nt/ntdll/ZwLoadHotPatch.S deleted file mode 100644 index ec85b3e9a..000000000 --- a/libc/nt/ntdll/ZwLoadHotPatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLoadHotPatch,ZwLoadHotPatch diff --git a/libc/nt/ntdll/ZwLoadKey.S b/libc/nt/ntdll/ZwLoadKey.S deleted file mode 100644 index 1d23cfbb0..000000000 --- a/libc/nt/ntdll/ZwLoadKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLoadKey,ZwLoadKey diff --git a/libc/nt/ntdll/ZwLoadKey2.S b/libc/nt/ntdll/ZwLoadKey2.S deleted file mode 100644 index 3be50b292..000000000 --- a/libc/nt/ntdll/ZwLoadKey2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLoadKey2,ZwLoadKey2 diff --git a/libc/nt/ntdll/ZwLoadKeyEx.S b/libc/nt/ntdll/ZwLoadKeyEx.S deleted file mode 100644 index 32e8a26a7..000000000 --- a/libc/nt/ntdll/ZwLoadKeyEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLoadKeyEx,ZwLoadKeyEx diff --git a/libc/nt/ntdll/ZwLockFile.S b/libc/nt/ntdll/ZwLockFile.S deleted file mode 100644 index 5421b2230..000000000 --- a/libc/nt/ntdll/ZwLockFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLockFile,ZwLockFile diff --git a/libc/nt/ntdll/ZwLockProductActivationKeys.S b/libc/nt/ntdll/ZwLockProductActivationKeys.S deleted file mode 100644 index 2600f3404..000000000 --- a/libc/nt/ntdll/ZwLockProductActivationKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLockProductActivationKeys,ZwLockProductActivationKeys diff --git a/libc/nt/ntdll/ZwLockRegistryKey.S b/libc/nt/ntdll/ZwLockRegistryKey.S deleted file mode 100644 index f806e136a..000000000 --- a/libc/nt/ntdll/ZwLockRegistryKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLockRegistryKey,ZwLockRegistryKey diff --git a/libc/nt/ntdll/ZwLockVirtualMemory.S b/libc/nt/ntdll/ZwLockVirtualMemory.S deleted file mode 100644 index 360f8dddf..000000000 --- a/libc/nt/ntdll/ZwLockVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwLockVirtualMemory,ZwLockVirtualMemory diff --git a/libc/nt/ntdll/ZwMakePermanentObject.S b/libc/nt/ntdll/ZwMakePermanentObject.S deleted file mode 100644 index f204cc715..000000000 --- a/libc/nt/ntdll/ZwMakePermanentObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwMakePermanentObject,ZwMakePermanentObject diff --git a/libc/nt/ntdll/ZwMakeTemporaryObject.S b/libc/nt/ntdll/ZwMakeTemporaryObject.S deleted file mode 100644 index abc248565..000000000 --- a/libc/nt/ntdll/ZwMakeTemporaryObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwMakeTemporaryObject,ZwMakeTemporaryObject diff --git a/libc/nt/ntdll/ZwManagePartition.S b/libc/nt/ntdll/ZwManagePartition.S deleted file mode 100644 index 85db8e53a..000000000 --- a/libc/nt/ntdll/ZwManagePartition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwManagePartition,ZwManagePartition diff --git a/libc/nt/ntdll/ZwMapCMFModule.S b/libc/nt/ntdll/ZwMapCMFModule.S deleted file mode 100644 index 9c196c8c8..000000000 --- a/libc/nt/ntdll/ZwMapCMFModule.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwMapCMFModule,ZwMapCMFModule diff --git a/libc/nt/ntdll/ZwMapUserPhysicalPages.S b/libc/nt/ntdll/ZwMapUserPhysicalPages.S deleted file mode 100644 index bd3cf7dba..000000000 --- a/libc/nt/ntdll/ZwMapUserPhysicalPages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwMapUserPhysicalPages,ZwMapUserPhysicalPages diff --git a/libc/nt/ntdll/ZwMapUserPhysicalPagesScatter.S b/libc/nt/ntdll/ZwMapUserPhysicalPagesScatter.S deleted file mode 100644 index 8ff81c723..000000000 --- a/libc/nt/ntdll/ZwMapUserPhysicalPagesScatter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwMapUserPhysicalPagesScatter,ZwMapUserPhysicalPagesScatter diff --git a/libc/nt/ntdll/ZwMapViewOfSection.S b/libc/nt/ntdll/ZwMapViewOfSection.S deleted file mode 100644 index a9148f6d5..000000000 --- a/libc/nt/ntdll/ZwMapViewOfSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwMapViewOfSection,ZwMapViewOfSection diff --git a/libc/nt/ntdll/ZwMapViewOfSectionEx.S b/libc/nt/ntdll/ZwMapViewOfSectionEx.S deleted file mode 100644 index 8cad1743f..000000000 --- a/libc/nt/ntdll/ZwMapViewOfSectionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwMapViewOfSectionEx,ZwMapViewOfSectionEx diff --git a/libc/nt/ntdll/ZwModifyBootEntry.S b/libc/nt/ntdll/ZwModifyBootEntry.S deleted file mode 100644 index 0868bbb1a..000000000 --- a/libc/nt/ntdll/ZwModifyBootEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwModifyBootEntry,ZwModifyBootEntry diff --git a/libc/nt/ntdll/ZwModifyDriverEntry.S b/libc/nt/ntdll/ZwModifyDriverEntry.S deleted file mode 100644 index 9f01bc3c4..000000000 --- a/libc/nt/ntdll/ZwModifyDriverEntry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwModifyDriverEntry,ZwModifyDriverEntry diff --git a/libc/nt/ntdll/ZwNotifyChangeDirectoryFile.S b/libc/nt/ntdll/ZwNotifyChangeDirectoryFile.S deleted file mode 100644 index 4d42d6537..000000000 --- a/libc/nt/ntdll/ZwNotifyChangeDirectoryFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwNotifyChangeDirectoryFile,ZwNotifyChangeDirectoryFile diff --git a/libc/nt/ntdll/ZwNotifyChangeDirectoryFileEx.S b/libc/nt/ntdll/ZwNotifyChangeDirectoryFileEx.S deleted file mode 100644 index 8c51bca77..000000000 --- a/libc/nt/ntdll/ZwNotifyChangeDirectoryFileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwNotifyChangeDirectoryFileEx,ZwNotifyChangeDirectoryFileEx diff --git a/libc/nt/ntdll/ZwNotifyChangeKey.S b/libc/nt/ntdll/ZwNotifyChangeKey.S deleted file mode 100644 index 9a9ff9ea7..000000000 --- a/libc/nt/ntdll/ZwNotifyChangeKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwNotifyChangeKey,ZwNotifyChangeKey diff --git a/libc/nt/ntdll/ZwNotifyChangeMultipleKeys.S b/libc/nt/ntdll/ZwNotifyChangeMultipleKeys.S deleted file mode 100644 index 92afc36f2..000000000 --- a/libc/nt/ntdll/ZwNotifyChangeMultipleKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwNotifyChangeMultipleKeys,ZwNotifyChangeMultipleKeys diff --git a/libc/nt/ntdll/ZwNotifyChangeSession.S b/libc/nt/ntdll/ZwNotifyChangeSession.S deleted file mode 100644 index 491e0e46e..000000000 --- a/libc/nt/ntdll/ZwNotifyChangeSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwNotifyChangeSession,ZwNotifyChangeSession diff --git a/libc/nt/ntdll/ZwOpenDirectoryObject.S b/libc/nt/ntdll/ZwOpenDirectoryObject.S deleted file mode 100644 index b94b7b65f..000000000 --- a/libc/nt/ntdll/ZwOpenDirectoryObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenDirectoryObject,ZwOpenDirectoryObject diff --git a/libc/nt/ntdll/ZwOpenEnlistment.S b/libc/nt/ntdll/ZwOpenEnlistment.S deleted file mode 100644 index f22230ac5..000000000 --- a/libc/nt/ntdll/ZwOpenEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenEnlistment,ZwOpenEnlistment diff --git a/libc/nt/ntdll/ZwOpenEvent.S b/libc/nt/ntdll/ZwOpenEvent.S deleted file mode 100644 index 8ab885f25..000000000 --- a/libc/nt/ntdll/ZwOpenEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenEvent,ZwOpenEvent diff --git a/libc/nt/ntdll/ZwOpenEventPair.S b/libc/nt/ntdll/ZwOpenEventPair.S deleted file mode 100644 index 0b64f8a32..000000000 --- a/libc/nt/ntdll/ZwOpenEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenEventPair,ZwOpenEventPair diff --git a/libc/nt/ntdll/ZwOpenFile.S b/libc/nt/ntdll/ZwOpenFile.S deleted file mode 100644 index 5705d8a24..000000000 --- a/libc/nt/ntdll/ZwOpenFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenFile,ZwOpenFile diff --git a/libc/nt/ntdll/ZwOpenIoCompletion.S b/libc/nt/ntdll/ZwOpenIoCompletion.S deleted file mode 100644 index 7f8d0befc..000000000 --- a/libc/nt/ntdll/ZwOpenIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenIoCompletion,ZwOpenIoCompletion diff --git a/libc/nt/ntdll/ZwOpenJobObject.S b/libc/nt/ntdll/ZwOpenJobObject.S deleted file mode 100644 index 1c64aeb06..000000000 --- a/libc/nt/ntdll/ZwOpenJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenJobObject,ZwOpenJobObject diff --git a/libc/nt/ntdll/ZwOpenKey.S b/libc/nt/ntdll/ZwOpenKey.S deleted file mode 100644 index 9b5da306e..000000000 --- a/libc/nt/ntdll/ZwOpenKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenKey,ZwOpenKey diff --git a/libc/nt/ntdll/ZwOpenKeyEx.S b/libc/nt/ntdll/ZwOpenKeyEx.S deleted file mode 100644 index 53dee3da9..000000000 --- a/libc/nt/ntdll/ZwOpenKeyEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenKeyEx,ZwOpenKeyEx diff --git a/libc/nt/ntdll/ZwOpenKeyTransacted.S b/libc/nt/ntdll/ZwOpenKeyTransacted.S deleted file mode 100644 index 67fc790db..000000000 --- a/libc/nt/ntdll/ZwOpenKeyTransacted.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenKeyTransacted,ZwOpenKeyTransacted diff --git a/libc/nt/ntdll/ZwOpenKeyTransactedEx.S b/libc/nt/ntdll/ZwOpenKeyTransactedEx.S deleted file mode 100644 index 13429f3f9..000000000 --- a/libc/nt/ntdll/ZwOpenKeyTransactedEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenKeyTransactedEx,ZwOpenKeyTransactedEx diff --git a/libc/nt/ntdll/ZwOpenKeyedEvent.S b/libc/nt/ntdll/ZwOpenKeyedEvent.S deleted file mode 100644 index 47cf25289..000000000 --- a/libc/nt/ntdll/ZwOpenKeyedEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenKeyedEvent,ZwOpenKeyedEvent diff --git a/libc/nt/ntdll/ZwOpenMutant.S b/libc/nt/ntdll/ZwOpenMutant.S deleted file mode 100644 index 9c41b5997..000000000 --- a/libc/nt/ntdll/ZwOpenMutant.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenMutant,ZwOpenMutant diff --git a/libc/nt/ntdll/ZwOpenObjectAuditAlarm.S b/libc/nt/ntdll/ZwOpenObjectAuditAlarm.S deleted file mode 100644 index 94d1c2428..000000000 --- a/libc/nt/ntdll/ZwOpenObjectAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenObjectAuditAlarm,ZwOpenObjectAuditAlarm diff --git a/libc/nt/ntdll/ZwOpenPartition.S b/libc/nt/ntdll/ZwOpenPartition.S deleted file mode 100644 index 96147bbaf..000000000 --- a/libc/nt/ntdll/ZwOpenPartition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenPartition,ZwOpenPartition diff --git a/libc/nt/ntdll/ZwOpenPrivateNamespace.S b/libc/nt/ntdll/ZwOpenPrivateNamespace.S deleted file mode 100644 index 5972b93d1..000000000 --- a/libc/nt/ntdll/ZwOpenPrivateNamespace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenPrivateNamespace,ZwOpenPrivateNamespace diff --git a/libc/nt/ntdll/ZwOpenProcess.S b/libc/nt/ntdll/ZwOpenProcess.S deleted file mode 100644 index 0e2b0466f..000000000 --- a/libc/nt/ntdll/ZwOpenProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenProcess,ZwOpenProcess diff --git a/libc/nt/ntdll/ZwOpenProcessToken.S b/libc/nt/ntdll/ZwOpenProcessToken.S deleted file mode 100644 index e75c7128e..000000000 --- a/libc/nt/ntdll/ZwOpenProcessToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenProcessToken,ZwOpenProcessToken diff --git a/libc/nt/ntdll/ZwOpenProcessTokenEx.S b/libc/nt/ntdll/ZwOpenProcessTokenEx.S deleted file mode 100644 index de2145f24..000000000 --- a/libc/nt/ntdll/ZwOpenProcessTokenEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenProcessTokenEx,ZwOpenProcessTokenEx diff --git a/libc/nt/ntdll/ZwOpenRegistryTransaction.S b/libc/nt/ntdll/ZwOpenRegistryTransaction.S deleted file mode 100644 index a8f075f21..000000000 --- a/libc/nt/ntdll/ZwOpenRegistryTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenRegistryTransaction,ZwOpenRegistryTransaction diff --git a/libc/nt/ntdll/ZwOpenResourceManager.S b/libc/nt/ntdll/ZwOpenResourceManager.S deleted file mode 100644 index 56073679c..000000000 --- a/libc/nt/ntdll/ZwOpenResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenResourceManager,ZwOpenResourceManager diff --git a/libc/nt/ntdll/ZwOpenSection.S b/libc/nt/ntdll/ZwOpenSection.S deleted file mode 100644 index 0b615b4c7..000000000 --- a/libc/nt/ntdll/ZwOpenSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenSection,ZwOpenSection diff --git a/libc/nt/ntdll/ZwOpenSemaphore.S b/libc/nt/ntdll/ZwOpenSemaphore.S deleted file mode 100644 index 489a75a72..000000000 --- a/libc/nt/ntdll/ZwOpenSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenSemaphore,ZwOpenSemaphore diff --git a/libc/nt/ntdll/ZwOpenSession.S b/libc/nt/ntdll/ZwOpenSession.S deleted file mode 100644 index 4912d45a1..000000000 --- a/libc/nt/ntdll/ZwOpenSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenSession,ZwOpenSession diff --git a/libc/nt/ntdll/ZwOpenSymbolicLinkObject.S b/libc/nt/ntdll/ZwOpenSymbolicLinkObject.S deleted file mode 100644 index 9f1e9ec65..000000000 --- a/libc/nt/ntdll/ZwOpenSymbolicLinkObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenSymbolicLinkObject,ZwOpenSymbolicLinkObject diff --git a/libc/nt/ntdll/ZwOpenThread.S b/libc/nt/ntdll/ZwOpenThread.S deleted file mode 100644 index 72c20cd6b..000000000 --- a/libc/nt/ntdll/ZwOpenThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenThread,ZwOpenThread diff --git a/libc/nt/ntdll/ZwOpenThreadToken.S b/libc/nt/ntdll/ZwOpenThreadToken.S deleted file mode 100644 index 7bdbae8c7..000000000 --- a/libc/nt/ntdll/ZwOpenThreadToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenThreadToken,ZwOpenThreadToken diff --git a/libc/nt/ntdll/ZwOpenThreadTokenEx.S b/libc/nt/ntdll/ZwOpenThreadTokenEx.S deleted file mode 100644 index 25a5858f2..000000000 --- a/libc/nt/ntdll/ZwOpenThreadTokenEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenThreadTokenEx,ZwOpenThreadTokenEx diff --git a/libc/nt/ntdll/ZwOpenTimer.S b/libc/nt/ntdll/ZwOpenTimer.S deleted file mode 100644 index dcf0e7783..000000000 --- a/libc/nt/ntdll/ZwOpenTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenTimer,ZwOpenTimer diff --git a/libc/nt/ntdll/ZwOpenTransaction.S b/libc/nt/ntdll/ZwOpenTransaction.S deleted file mode 100644 index 822fa239a..000000000 --- a/libc/nt/ntdll/ZwOpenTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenTransaction,ZwOpenTransaction diff --git a/libc/nt/ntdll/ZwOpenTransactionManager.S b/libc/nt/ntdll/ZwOpenTransactionManager.S deleted file mode 100644 index 20d6ecfa9..000000000 --- a/libc/nt/ntdll/ZwOpenTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwOpenTransactionManager,ZwOpenTransactionManager diff --git a/libc/nt/ntdll/ZwPlugPlayControl.S b/libc/nt/ntdll/ZwPlugPlayControl.S deleted file mode 100644 index 0a1f8f264..000000000 --- a/libc/nt/ntdll/ZwPlugPlayControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPlugPlayControl,ZwPlugPlayControl diff --git a/libc/nt/ntdll/ZwPowerInformation.S b/libc/nt/ntdll/ZwPowerInformation.S deleted file mode 100644 index 429532aa6..000000000 --- a/libc/nt/ntdll/ZwPowerInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPowerInformation,ZwPowerInformation diff --git a/libc/nt/ntdll/ZwPrePrepareComplete.S b/libc/nt/ntdll/ZwPrePrepareComplete.S deleted file mode 100644 index 9283708dc..000000000 --- a/libc/nt/ntdll/ZwPrePrepareComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPrePrepareComplete,ZwPrePrepareComplete diff --git a/libc/nt/ntdll/ZwPrePrepareEnlistment.S b/libc/nt/ntdll/ZwPrePrepareEnlistment.S deleted file mode 100644 index 5ed0fbb3c..000000000 --- a/libc/nt/ntdll/ZwPrePrepareEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPrePrepareEnlistment,ZwPrePrepareEnlistment diff --git a/libc/nt/ntdll/ZwPrepareComplete.S b/libc/nt/ntdll/ZwPrepareComplete.S deleted file mode 100644 index b50ebc5e9..000000000 --- a/libc/nt/ntdll/ZwPrepareComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPrepareComplete,ZwPrepareComplete diff --git a/libc/nt/ntdll/ZwPrepareEnlistment.S b/libc/nt/ntdll/ZwPrepareEnlistment.S deleted file mode 100644 index 6fce7993b..000000000 --- a/libc/nt/ntdll/ZwPrepareEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPrepareEnlistment,ZwPrepareEnlistment diff --git a/libc/nt/ntdll/ZwPrivilegeCheck.S b/libc/nt/ntdll/ZwPrivilegeCheck.S deleted file mode 100644 index c5e5cdc71..000000000 --- a/libc/nt/ntdll/ZwPrivilegeCheck.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPrivilegeCheck,ZwPrivilegeCheck diff --git a/libc/nt/ntdll/ZwPrivilegeObjectAuditAlarm.S b/libc/nt/ntdll/ZwPrivilegeObjectAuditAlarm.S deleted file mode 100644 index 0c518b11c..000000000 --- a/libc/nt/ntdll/ZwPrivilegeObjectAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPrivilegeObjectAuditAlarm,ZwPrivilegeObjectAuditAlarm diff --git a/libc/nt/ntdll/ZwPrivilegedServiceAuditAlarm.S b/libc/nt/ntdll/ZwPrivilegedServiceAuditAlarm.S deleted file mode 100644 index ba9e19ee4..000000000 --- a/libc/nt/ntdll/ZwPrivilegedServiceAuditAlarm.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPrivilegedServiceAuditAlarm,ZwPrivilegedServiceAuditAlarm diff --git a/libc/nt/ntdll/ZwPropagationComplete.S b/libc/nt/ntdll/ZwPropagationComplete.S deleted file mode 100644 index 46586d5c6..000000000 --- a/libc/nt/ntdll/ZwPropagationComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPropagationComplete,ZwPropagationComplete diff --git a/libc/nt/ntdll/ZwPropagationFailed.S b/libc/nt/ntdll/ZwPropagationFailed.S deleted file mode 100644 index 9b7f760f4..000000000 --- a/libc/nt/ntdll/ZwPropagationFailed.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPropagationFailed,ZwPropagationFailed diff --git a/libc/nt/ntdll/ZwProtectVirtualMemory.S b/libc/nt/ntdll/ZwProtectVirtualMemory.S deleted file mode 100644 index de196da74..000000000 --- a/libc/nt/ntdll/ZwProtectVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwProtectVirtualMemory,ZwProtectVirtualMemory diff --git a/libc/nt/ntdll/ZwPulseEvent.S b/libc/nt/ntdll/ZwPulseEvent.S deleted file mode 100644 index 38d9ec796..000000000 --- a/libc/nt/ntdll/ZwPulseEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwPulseEvent,ZwPulseEvent diff --git a/libc/nt/ntdll/ZwQueryAttributesFile.S b/libc/nt/ntdll/ZwQueryAttributesFile.S deleted file mode 100644 index 1f074810e..000000000 --- a/libc/nt/ntdll/ZwQueryAttributesFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryAttributesFile,ZwQueryAttributesFile diff --git a/libc/nt/ntdll/ZwQueryAuxiliaryCounterFrequency.S b/libc/nt/ntdll/ZwQueryAuxiliaryCounterFrequency.S deleted file mode 100644 index ba9e8d9ea..000000000 --- a/libc/nt/ntdll/ZwQueryAuxiliaryCounterFrequency.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryAuxiliaryCounterFrequency,ZwQueryAuxiliaryCounterFrequency diff --git a/libc/nt/ntdll/ZwQueryBootEntryOrder.S b/libc/nt/ntdll/ZwQueryBootEntryOrder.S deleted file mode 100644 index 79f0c79cc..000000000 --- a/libc/nt/ntdll/ZwQueryBootEntryOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryBootEntryOrder,ZwQueryBootEntryOrder diff --git a/libc/nt/ntdll/ZwQueryBootOptions.S b/libc/nt/ntdll/ZwQueryBootOptions.S deleted file mode 100644 index 61ffd3b2c..000000000 --- a/libc/nt/ntdll/ZwQueryBootOptions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryBootOptions,ZwQueryBootOptions diff --git a/libc/nt/ntdll/ZwQueryDebugFilterState.S b/libc/nt/ntdll/ZwQueryDebugFilterState.S deleted file mode 100644 index e607121dd..000000000 --- a/libc/nt/ntdll/ZwQueryDebugFilterState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryDebugFilterState,ZwQueryDebugFilterState diff --git a/libc/nt/ntdll/ZwQueryDefaultLocale.S b/libc/nt/ntdll/ZwQueryDefaultLocale.S deleted file mode 100644 index 626ea190f..000000000 --- a/libc/nt/ntdll/ZwQueryDefaultLocale.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryDefaultLocale,ZwQueryDefaultLocale diff --git a/libc/nt/ntdll/ZwQueryDefaultUILanguage.S b/libc/nt/ntdll/ZwQueryDefaultUILanguage.S deleted file mode 100644 index a12ed1ca7..000000000 --- a/libc/nt/ntdll/ZwQueryDefaultUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryDefaultUILanguage,ZwQueryDefaultUILanguage diff --git a/libc/nt/ntdll/ZwQueryDirectoryFile.S b/libc/nt/ntdll/ZwQueryDirectoryFile.S deleted file mode 100644 index 3c794e25c..000000000 --- a/libc/nt/ntdll/ZwQueryDirectoryFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryDirectoryFile,ZwQueryDirectoryFile diff --git a/libc/nt/ntdll/ZwQueryDirectoryFileEx.S b/libc/nt/ntdll/ZwQueryDirectoryFileEx.S deleted file mode 100644 index bf27a385d..000000000 --- a/libc/nt/ntdll/ZwQueryDirectoryFileEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryDirectoryFileEx,ZwQueryDirectoryFileEx diff --git a/libc/nt/ntdll/ZwQueryDirectoryObject.S b/libc/nt/ntdll/ZwQueryDirectoryObject.S deleted file mode 100644 index 99c7cbfbb..000000000 --- a/libc/nt/ntdll/ZwQueryDirectoryObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryDirectoryObject,ZwQueryDirectoryObject diff --git a/libc/nt/ntdll/ZwQueryDriverEntryOrder.S b/libc/nt/ntdll/ZwQueryDriverEntryOrder.S deleted file mode 100644 index f80ab736f..000000000 --- a/libc/nt/ntdll/ZwQueryDriverEntryOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryDriverEntryOrder,ZwQueryDriverEntryOrder diff --git a/libc/nt/ntdll/ZwQueryEaFile.S b/libc/nt/ntdll/ZwQueryEaFile.S deleted file mode 100644 index f5340ba4c..000000000 --- a/libc/nt/ntdll/ZwQueryEaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryEaFile,ZwQueryEaFile diff --git a/libc/nt/ntdll/ZwQueryEvent.S b/libc/nt/ntdll/ZwQueryEvent.S deleted file mode 100644 index af7b51d49..000000000 --- a/libc/nt/ntdll/ZwQueryEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryEvent,ZwQueryEvent diff --git a/libc/nt/ntdll/ZwQueryFullAttributesFile.S b/libc/nt/ntdll/ZwQueryFullAttributesFile.S deleted file mode 100644 index fb228b76c..000000000 --- a/libc/nt/ntdll/ZwQueryFullAttributesFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryFullAttributesFile,ZwQueryFullAttributesFile diff --git a/libc/nt/ntdll/ZwQueryInformationAtom.S b/libc/nt/ntdll/ZwQueryInformationAtom.S deleted file mode 100644 index 665e9cb93..000000000 --- a/libc/nt/ntdll/ZwQueryInformationAtom.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationAtom,ZwQueryInformationAtom diff --git a/libc/nt/ntdll/ZwQueryInformationByName.S b/libc/nt/ntdll/ZwQueryInformationByName.S deleted file mode 100644 index 2d5084d30..000000000 --- a/libc/nt/ntdll/ZwQueryInformationByName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationByName,ZwQueryInformationByName diff --git a/libc/nt/ntdll/ZwQueryInformationEnlistment.S b/libc/nt/ntdll/ZwQueryInformationEnlistment.S deleted file mode 100644 index 40c292a6e..000000000 --- a/libc/nt/ntdll/ZwQueryInformationEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationEnlistment,ZwQueryInformationEnlistment diff --git a/libc/nt/ntdll/ZwQueryInformationFile.S b/libc/nt/ntdll/ZwQueryInformationFile.S deleted file mode 100644 index 6d3089cf0..000000000 --- a/libc/nt/ntdll/ZwQueryInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationFile,ZwQueryInformationFile diff --git a/libc/nt/ntdll/ZwQueryInformationJobObject.S b/libc/nt/ntdll/ZwQueryInformationJobObject.S deleted file mode 100644 index 3d33e9004..000000000 --- a/libc/nt/ntdll/ZwQueryInformationJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationJobObject,ZwQueryInformationJobObject diff --git a/libc/nt/ntdll/ZwQueryInformationPort.S b/libc/nt/ntdll/ZwQueryInformationPort.S deleted file mode 100644 index 14ac6ca1c..000000000 --- a/libc/nt/ntdll/ZwQueryInformationPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationPort,ZwQueryInformationPort diff --git a/libc/nt/ntdll/ZwQueryInformationProcess.S b/libc/nt/ntdll/ZwQueryInformationProcess.S deleted file mode 100644 index ee47e8f85..000000000 --- a/libc/nt/ntdll/ZwQueryInformationProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationProcess,ZwQueryInformationProcess diff --git a/libc/nt/ntdll/ZwQueryInformationResourceManager.S b/libc/nt/ntdll/ZwQueryInformationResourceManager.S deleted file mode 100644 index b23fe726e..000000000 --- a/libc/nt/ntdll/ZwQueryInformationResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationResourceManager,ZwQueryInformationResourceManager diff --git a/libc/nt/ntdll/ZwQueryInformationThread.S b/libc/nt/ntdll/ZwQueryInformationThread.S deleted file mode 100644 index ba6ef9c79..000000000 --- a/libc/nt/ntdll/ZwQueryInformationThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationThread,ZwQueryInformationThread diff --git a/libc/nt/ntdll/ZwQueryInformationToken.S b/libc/nt/ntdll/ZwQueryInformationToken.S deleted file mode 100644 index a5d616ecc..000000000 --- a/libc/nt/ntdll/ZwQueryInformationToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationToken,ZwQueryInformationToken diff --git a/libc/nt/ntdll/ZwQueryInformationTransaction.S b/libc/nt/ntdll/ZwQueryInformationTransaction.S deleted file mode 100644 index c7d97f2f5..000000000 --- a/libc/nt/ntdll/ZwQueryInformationTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationTransaction,ZwQueryInformationTransaction diff --git a/libc/nt/ntdll/ZwQueryInformationTransactionManager.S b/libc/nt/ntdll/ZwQueryInformationTransactionManager.S deleted file mode 100644 index 3ece30a9d..000000000 --- a/libc/nt/ntdll/ZwQueryInformationTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationTransactionManager,ZwQueryInformationTransactionManager diff --git a/libc/nt/ntdll/ZwQueryInformationWorkerFactory.S b/libc/nt/ntdll/ZwQueryInformationWorkerFactory.S deleted file mode 100644 index 670bedddb..000000000 --- a/libc/nt/ntdll/ZwQueryInformationWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInformationWorkerFactory,ZwQueryInformationWorkerFactory diff --git a/libc/nt/ntdll/ZwQueryInstallUILanguage.S b/libc/nt/ntdll/ZwQueryInstallUILanguage.S deleted file mode 100644 index 39bec6a44..000000000 --- a/libc/nt/ntdll/ZwQueryInstallUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryInstallUILanguage,ZwQueryInstallUILanguage diff --git a/libc/nt/ntdll/ZwQueryIntervalProfile.S b/libc/nt/ntdll/ZwQueryIntervalProfile.S deleted file mode 100644 index 3a90af315..000000000 --- a/libc/nt/ntdll/ZwQueryIntervalProfile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryIntervalProfile,ZwQueryIntervalProfile diff --git a/libc/nt/ntdll/ZwQueryIoCompletion.S b/libc/nt/ntdll/ZwQueryIoCompletion.S deleted file mode 100644 index 918be09f8..000000000 --- a/libc/nt/ntdll/ZwQueryIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryIoCompletion,ZwQueryIoCompletion diff --git a/libc/nt/ntdll/ZwQueryKey.S b/libc/nt/ntdll/ZwQueryKey.S deleted file mode 100644 index e303866bc..000000000 --- a/libc/nt/ntdll/ZwQueryKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryKey,ZwQueryKey diff --git a/libc/nt/ntdll/ZwQueryLicenseValue.S b/libc/nt/ntdll/ZwQueryLicenseValue.S deleted file mode 100644 index 45e0a02c4..000000000 --- a/libc/nt/ntdll/ZwQueryLicenseValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryLicenseValue,ZwQueryLicenseValue diff --git a/libc/nt/ntdll/ZwQueryMultipleValueKey.S b/libc/nt/ntdll/ZwQueryMultipleValueKey.S deleted file mode 100644 index 605369aeb..000000000 --- a/libc/nt/ntdll/ZwQueryMultipleValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryMultipleValueKey,ZwQueryMultipleValueKey diff --git a/libc/nt/ntdll/ZwQueryMutant.S b/libc/nt/ntdll/ZwQueryMutant.S deleted file mode 100644 index 6634a1fe9..000000000 --- a/libc/nt/ntdll/ZwQueryMutant.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryMutant,ZwQueryMutant diff --git a/libc/nt/ntdll/ZwQueryObject.S b/libc/nt/ntdll/ZwQueryObject.S deleted file mode 100644 index 49a44089b..000000000 --- a/libc/nt/ntdll/ZwQueryObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryObject,ZwQueryObject diff --git a/libc/nt/ntdll/ZwQueryOpenSubKeys.S b/libc/nt/ntdll/ZwQueryOpenSubKeys.S deleted file mode 100644 index b37ed0b61..000000000 --- a/libc/nt/ntdll/ZwQueryOpenSubKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryOpenSubKeys,ZwQueryOpenSubKeys diff --git a/libc/nt/ntdll/ZwQueryOpenSubKeysEx.S b/libc/nt/ntdll/ZwQueryOpenSubKeysEx.S deleted file mode 100644 index 126bb6002..000000000 --- a/libc/nt/ntdll/ZwQueryOpenSubKeysEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryOpenSubKeysEx,ZwQueryOpenSubKeysEx diff --git a/libc/nt/ntdll/ZwQueryPerformanceCounter.S b/libc/nt/ntdll/ZwQueryPerformanceCounter.S deleted file mode 100644 index 8069f9e1b..000000000 --- a/libc/nt/ntdll/ZwQueryPerformanceCounter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryPerformanceCounter,ZwQueryPerformanceCounter diff --git a/libc/nt/ntdll/ZwQueryPortInformationProcess.S b/libc/nt/ntdll/ZwQueryPortInformationProcess.S deleted file mode 100644 index 13e75b63d..000000000 --- a/libc/nt/ntdll/ZwQueryPortInformationProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryPortInformationProcess,ZwQueryPortInformationProcess diff --git a/libc/nt/ntdll/ZwQueryQuotaInformationFile.S b/libc/nt/ntdll/ZwQueryQuotaInformationFile.S deleted file mode 100644 index b68fceda6..000000000 --- a/libc/nt/ntdll/ZwQueryQuotaInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryQuotaInformationFile,ZwQueryQuotaInformationFile diff --git a/libc/nt/ntdll/ZwQuerySection.S b/libc/nt/ntdll/ZwQuerySection.S deleted file mode 100644 index 2817955ba..000000000 --- a/libc/nt/ntdll/ZwQuerySection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySection,ZwQuerySection diff --git a/libc/nt/ntdll/ZwQuerySecurityAttributesToken.S b/libc/nt/ntdll/ZwQuerySecurityAttributesToken.S deleted file mode 100644 index 13d9f2dd4..000000000 --- a/libc/nt/ntdll/ZwQuerySecurityAttributesToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySecurityAttributesToken,ZwQuerySecurityAttributesToken diff --git a/libc/nt/ntdll/ZwQuerySecurityObject.S b/libc/nt/ntdll/ZwQuerySecurityObject.S deleted file mode 100644 index 4bd6f46f8..000000000 --- a/libc/nt/ntdll/ZwQuerySecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySecurityObject,ZwQuerySecurityObject diff --git a/libc/nt/ntdll/ZwQuerySecurityPolicy.S b/libc/nt/ntdll/ZwQuerySecurityPolicy.S deleted file mode 100644 index c4920ce65..000000000 --- a/libc/nt/ntdll/ZwQuerySecurityPolicy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySecurityPolicy,ZwQuerySecurityPolicy diff --git a/libc/nt/ntdll/ZwQuerySemaphore.S b/libc/nt/ntdll/ZwQuerySemaphore.S deleted file mode 100644 index 512ab5745..000000000 --- a/libc/nt/ntdll/ZwQuerySemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySemaphore,ZwQuerySemaphore diff --git a/libc/nt/ntdll/ZwQuerySymbolicLinkObject.S b/libc/nt/ntdll/ZwQuerySymbolicLinkObject.S deleted file mode 100644 index f92769eaa..000000000 --- a/libc/nt/ntdll/ZwQuerySymbolicLinkObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySymbolicLinkObject,ZwQuerySymbolicLinkObject diff --git a/libc/nt/ntdll/ZwQuerySystemEnvironmentValue.S b/libc/nt/ntdll/ZwQuerySystemEnvironmentValue.S deleted file mode 100644 index 3bbc1533d..000000000 --- a/libc/nt/ntdll/ZwQuerySystemEnvironmentValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySystemEnvironmentValue,ZwQuerySystemEnvironmentValue diff --git a/libc/nt/ntdll/ZwQuerySystemEnvironmentValueEx.S b/libc/nt/ntdll/ZwQuerySystemEnvironmentValueEx.S deleted file mode 100644 index 1d2ff6091..000000000 --- a/libc/nt/ntdll/ZwQuerySystemEnvironmentValueEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySystemEnvironmentValueEx,ZwQuerySystemEnvironmentValueEx diff --git a/libc/nt/ntdll/ZwQuerySystemInformation.S b/libc/nt/ntdll/ZwQuerySystemInformation.S deleted file mode 100644 index a4f3d11fa..000000000 --- a/libc/nt/ntdll/ZwQuerySystemInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySystemInformation,ZwQuerySystemInformation diff --git a/libc/nt/ntdll/ZwQuerySystemInformationEx.S b/libc/nt/ntdll/ZwQuerySystemInformationEx.S deleted file mode 100644 index 3cd421a25..000000000 --- a/libc/nt/ntdll/ZwQuerySystemInformationEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySystemInformationEx,ZwQuerySystemInformationEx diff --git a/libc/nt/ntdll/ZwQuerySystemTime.S b/libc/nt/ntdll/ZwQuerySystemTime.S deleted file mode 100644 index 892e48632..000000000 --- a/libc/nt/ntdll/ZwQuerySystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQuerySystemTime,ZwQuerySystemTime diff --git a/libc/nt/ntdll/ZwQueryTimer.S b/libc/nt/ntdll/ZwQueryTimer.S deleted file mode 100644 index 7ed1eefb4..000000000 --- a/libc/nt/ntdll/ZwQueryTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryTimer,ZwQueryTimer diff --git a/libc/nt/ntdll/ZwQueryTimerResolution.S b/libc/nt/ntdll/ZwQueryTimerResolution.S deleted file mode 100644 index 9e2d286bb..000000000 --- a/libc/nt/ntdll/ZwQueryTimerResolution.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryTimerResolution,ZwQueryTimerResolution diff --git a/libc/nt/ntdll/ZwQueryValueKey.S b/libc/nt/ntdll/ZwQueryValueKey.S deleted file mode 100644 index 703a14ad0..000000000 --- a/libc/nt/ntdll/ZwQueryValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryValueKey,ZwQueryValueKey diff --git a/libc/nt/ntdll/ZwQueryVirtualMemory.S b/libc/nt/ntdll/ZwQueryVirtualMemory.S deleted file mode 100644 index 4b3614663..000000000 --- a/libc/nt/ntdll/ZwQueryVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryVirtualMemory,ZwQueryVirtualMemory diff --git a/libc/nt/ntdll/ZwQueryVolumeInformationFile.S b/libc/nt/ntdll/ZwQueryVolumeInformationFile.S deleted file mode 100644 index 3bd75b8ef..000000000 --- a/libc/nt/ntdll/ZwQueryVolumeInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryVolumeInformationFile,ZwQueryVolumeInformationFile diff --git a/libc/nt/ntdll/ZwQueryWnfStateData.S b/libc/nt/ntdll/ZwQueryWnfStateData.S deleted file mode 100644 index d9a7fa151..000000000 --- a/libc/nt/ntdll/ZwQueryWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryWnfStateData,ZwQueryWnfStateData diff --git a/libc/nt/ntdll/ZwQueryWnfStateNameInformation.S b/libc/nt/ntdll/ZwQueryWnfStateNameInformation.S deleted file mode 100644 index f2c190b26..000000000 --- a/libc/nt/ntdll/ZwQueryWnfStateNameInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueryWnfStateNameInformation,ZwQueryWnfStateNameInformation diff --git a/libc/nt/ntdll/ZwQueueApcThread.S b/libc/nt/ntdll/ZwQueueApcThread.S deleted file mode 100644 index 79011b6ff..000000000 --- a/libc/nt/ntdll/ZwQueueApcThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueueApcThread,ZwQueueApcThread diff --git a/libc/nt/ntdll/ZwQueueApcThreadEx.S b/libc/nt/ntdll/ZwQueueApcThreadEx.S deleted file mode 100644 index 66cff6e14..000000000 --- a/libc/nt/ntdll/ZwQueueApcThreadEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwQueueApcThreadEx,ZwQueueApcThreadEx diff --git a/libc/nt/ntdll/ZwRaiseException.S b/libc/nt/ntdll/ZwRaiseException.S deleted file mode 100644 index 30a79cc42..000000000 --- a/libc/nt/ntdll/ZwRaiseException.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRaiseException,ZwRaiseException diff --git a/libc/nt/ntdll/ZwRaiseHardError.S b/libc/nt/ntdll/ZwRaiseHardError.S deleted file mode 100644 index 8d4b83757..000000000 --- a/libc/nt/ntdll/ZwRaiseHardError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRaiseHardError,ZwRaiseHardError diff --git a/libc/nt/ntdll/ZwReadFile.S b/libc/nt/ntdll/ZwReadFile.S deleted file mode 100644 index b28be2a6e..000000000 --- a/libc/nt/ntdll/ZwReadFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReadFile,ZwReadFile diff --git a/libc/nt/ntdll/ZwReadFileScatter.S b/libc/nt/ntdll/ZwReadFileScatter.S deleted file mode 100644 index b44b4b456..000000000 --- a/libc/nt/ntdll/ZwReadFileScatter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReadFileScatter,ZwReadFileScatter diff --git a/libc/nt/ntdll/ZwReadOnlyEnlistment.S b/libc/nt/ntdll/ZwReadOnlyEnlistment.S deleted file mode 100644 index 1e8b60570..000000000 --- a/libc/nt/ntdll/ZwReadOnlyEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReadOnlyEnlistment,ZwReadOnlyEnlistment diff --git a/libc/nt/ntdll/ZwReadRequestData.S b/libc/nt/ntdll/ZwReadRequestData.S deleted file mode 100644 index 8f1d57265..000000000 --- a/libc/nt/ntdll/ZwReadRequestData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReadRequestData,ZwReadRequestData diff --git a/libc/nt/ntdll/ZwReadVirtualMemory.S b/libc/nt/ntdll/ZwReadVirtualMemory.S deleted file mode 100644 index 9656cdec9..000000000 --- a/libc/nt/ntdll/ZwReadVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReadVirtualMemory,ZwReadVirtualMemory diff --git a/libc/nt/ntdll/ZwRecoverEnlistment.S b/libc/nt/ntdll/ZwRecoverEnlistment.S deleted file mode 100644 index 013a204df..000000000 --- a/libc/nt/ntdll/ZwRecoverEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRecoverEnlistment,ZwRecoverEnlistment diff --git a/libc/nt/ntdll/ZwRecoverResourceManager.S b/libc/nt/ntdll/ZwRecoverResourceManager.S deleted file mode 100644 index 7d56bf33f..000000000 --- a/libc/nt/ntdll/ZwRecoverResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRecoverResourceManager,ZwRecoverResourceManager diff --git a/libc/nt/ntdll/ZwRecoverTransactionManager.S b/libc/nt/ntdll/ZwRecoverTransactionManager.S deleted file mode 100644 index efac62c4f..000000000 --- a/libc/nt/ntdll/ZwRecoverTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRecoverTransactionManager,ZwRecoverTransactionManager diff --git a/libc/nt/ntdll/ZwRegisterProtocolAddressInformation.S b/libc/nt/ntdll/ZwRegisterProtocolAddressInformation.S deleted file mode 100644 index 6b7d332af..000000000 --- a/libc/nt/ntdll/ZwRegisterProtocolAddressInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRegisterProtocolAddressInformation,ZwRegisterProtocolAddressInformation diff --git a/libc/nt/ntdll/ZwRegisterThreadTerminatePort.S b/libc/nt/ntdll/ZwRegisterThreadTerminatePort.S deleted file mode 100644 index 23b45079f..000000000 --- a/libc/nt/ntdll/ZwRegisterThreadTerminatePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRegisterThreadTerminatePort,ZwRegisterThreadTerminatePort diff --git a/libc/nt/ntdll/ZwReleaseKeyedEvent.S b/libc/nt/ntdll/ZwReleaseKeyedEvent.S deleted file mode 100644 index 5155ea0d8..000000000 --- a/libc/nt/ntdll/ZwReleaseKeyedEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReleaseKeyedEvent,ZwReleaseKeyedEvent diff --git a/libc/nt/ntdll/ZwReleaseMutant.S b/libc/nt/ntdll/ZwReleaseMutant.S deleted file mode 100644 index c08f4ebc9..000000000 --- a/libc/nt/ntdll/ZwReleaseMutant.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReleaseMutant,ZwReleaseMutant diff --git a/libc/nt/ntdll/ZwReleaseSemaphore.S b/libc/nt/ntdll/ZwReleaseSemaphore.S deleted file mode 100644 index 3832a79cb..000000000 --- a/libc/nt/ntdll/ZwReleaseSemaphore.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReleaseSemaphore,ZwReleaseSemaphore diff --git a/libc/nt/ntdll/ZwReleaseWorkerFactoryWorker.S b/libc/nt/ntdll/ZwReleaseWorkerFactoryWorker.S deleted file mode 100644 index 47c446a1b..000000000 --- a/libc/nt/ntdll/ZwReleaseWorkerFactoryWorker.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReleaseWorkerFactoryWorker,ZwReleaseWorkerFactoryWorker diff --git a/libc/nt/ntdll/ZwRemoveIoCompletion.S b/libc/nt/ntdll/ZwRemoveIoCompletion.S deleted file mode 100644 index 4b8315ba3..000000000 --- a/libc/nt/ntdll/ZwRemoveIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRemoveIoCompletion,ZwRemoveIoCompletion diff --git a/libc/nt/ntdll/ZwRemoveIoCompletionEx.S b/libc/nt/ntdll/ZwRemoveIoCompletionEx.S deleted file mode 100644 index 916ec320f..000000000 --- a/libc/nt/ntdll/ZwRemoveIoCompletionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRemoveIoCompletionEx,ZwRemoveIoCompletionEx diff --git a/libc/nt/ntdll/ZwRemoveProcessDebug.S b/libc/nt/ntdll/ZwRemoveProcessDebug.S deleted file mode 100644 index 5846de0ad..000000000 --- a/libc/nt/ntdll/ZwRemoveProcessDebug.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRemoveProcessDebug,ZwRemoveProcessDebug diff --git a/libc/nt/ntdll/ZwRenameKey.S b/libc/nt/ntdll/ZwRenameKey.S deleted file mode 100644 index bbeaf7f3e..000000000 --- a/libc/nt/ntdll/ZwRenameKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRenameKey,ZwRenameKey diff --git a/libc/nt/ntdll/ZwRenameTransactionManager.S b/libc/nt/ntdll/ZwRenameTransactionManager.S deleted file mode 100644 index 7e9ef1cc4..000000000 --- a/libc/nt/ntdll/ZwRenameTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRenameTransactionManager,ZwRenameTransactionManager diff --git a/libc/nt/ntdll/ZwReplaceKey.S b/libc/nt/ntdll/ZwReplaceKey.S deleted file mode 100644 index 92b35427b..000000000 --- a/libc/nt/ntdll/ZwReplaceKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReplaceKey,ZwReplaceKey diff --git a/libc/nt/ntdll/ZwReplacePartitionUnit.S b/libc/nt/ntdll/ZwReplacePartitionUnit.S deleted file mode 100644 index aa0d4fd0e..000000000 --- a/libc/nt/ntdll/ZwReplacePartitionUnit.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReplacePartitionUnit,ZwReplacePartitionUnit diff --git a/libc/nt/ntdll/ZwReplyPort.S b/libc/nt/ntdll/ZwReplyPort.S deleted file mode 100644 index c5abb1ab0..000000000 --- a/libc/nt/ntdll/ZwReplyPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReplyPort,ZwReplyPort diff --git a/libc/nt/ntdll/ZwReplyWaitReceivePort.S b/libc/nt/ntdll/ZwReplyWaitReceivePort.S deleted file mode 100644 index 282a188c7..000000000 --- a/libc/nt/ntdll/ZwReplyWaitReceivePort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReplyWaitReceivePort,ZwReplyWaitReceivePort diff --git a/libc/nt/ntdll/ZwReplyWaitReceivePortEx.S b/libc/nt/ntdll/ZwReplyWaitReceivePortEx.S deleted file mode 100644 index d967b4d8d..000000000 --- a/libc/nt/ntdll/ZwReplyWaitReceivePortEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReplyWaitReceivePortEx,ZwReplyWaitReceivePortEx diff --git a/libc/nt/ntdll/ZwReplyWaitReplyPort.S b/libc/nt/ntdll/ZwReplyWaitReplyPort.S deleted file mode 100644 index ebbddcf94..000000000 --- a/libc/nt/ntdll/ZwReplyWaitReplyPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwReplyWaitReplyPort,ZwReplyWaitReplyPort diff --git a/libc/nt/ntdll/ZwRequestPort.S b/libc/nt/ntdll/ZwRequestPort.S deleted file mode 100644 index 387f7d280..000000000 --- a/libc/nt/ntdll/ZwRequestPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRequestPort,ZwRequestPort diff --git a/libc/nt/ntdll/ZwRequestWaitReplyPort.S b/libc/nt/ntdll/ZwRequestWaitReplyPort.S deleted file mode 100644 index a25cd4e87..000000000 --- a/libc/nt/ntdll/ZwRequestWaitReplyPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRequestWaitReplyPort,ZwRequestWaitReplyPort diff --git a/libc/nt/ntdll/ZwResetEvent.S b/libc/nt/ntdll/ZwResetEvent.S deleted file mode 100644 index 2b6c931b0..000000000 --- a/libc/nt/ntdll/ZwResetEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwResetEvent,ZwResetEvent diff --git a/libc/nt/ntdll/ZwResetWriteWatch.S b/libc/nt/ntdll/ZwResetWriteWatch.S deleted file mode 100644 index 6153aea61..000000000 --- a/libc/nt/ntdll/ZwResetWriteWatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwResetWriteWatch,ZwResetWriteWatch diff --git a/libc/nt/ntdll/ZwRestoreKey.S b/libc/nt/ntdll/ZwRestoreKey.S deleted file mode 100644 index 68811bf36..000000000 --- a/libc/nt/ntdll/ZwRestoreKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRestoreKey,ZwRestoreKey diff --git a/libc/nt/ntdll/ZwResumeProcess.S b/libc/nt/ntdll/ZwResumeProcess.S deleted file mode 100644 index 2ae5f2067..000000000 --- a/libc/nt/ntdll/ZwResumeProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwResumeProcess,ZwResumeProcess diff --git a/libc/nt/ntdll/ZwResumeThread.S b/libc/nt/ntdll/ZwResumeThread.S deleted file mode 100644 index c611949af..000000000 --- a/libc/nt/ntdll/ZwResumeThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwResumeThread,ZwResumeThread diff --git a/libc/nt/ntdll/ZwRevertContainerImpersonation.S b/libc/nt/ntdll/ZwRevertContainerImpersonation.S deleted file mode 100644 index 1ad513469..000000000 --- a/libc/nt/ntdll/ZwRevertContainerImpersonation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRevertContainerImpersonation,ZwRevertContainerImpersonation diff --git a/libc/nt/ntdll/ZwRollbackComplete.S b/libc/nt/ntdll/ZwRollbackComplete.S deleted file mode 100644 index 30d5e264c..000000000 --- a/libc/nt/ntdll/ZwRollbackComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRollbackComplete,ZwRollbackComplete diff --git a/libc/nt/ntdll/ZwRollbackEnlistment.S b/libc/nt/ntdll/ZwRollbackEnlistment.S deleted file mode 100644 index 9e0119ebf..000000000 --- a/libc/nt/ntdll/ZwRollbackEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRollbackEnlistment,ZwRollbackEnlistment diff --git a/libc/nt/ntdll/ZwRollbackRegistryTransaction.S b/libc/nt/ntdll/ZwRollbackRegistryTransaction.S deleted file mode 100644 index 13e863236..000000000 --- a/libc/nt/ntdll/ZwRollbackRegistryTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRollbackRegistryTransaction,ZwRollbackRegistryTransaction diff --git a/libc/nt/ntdll/ZwRollbackTransaction.S b/libc/nt/ntdll/ZwRollbackTransaction.S deleted file mode 100644 index 38b8cc033..000000000 --- a/libc/nt/ntdll/ZwRollbackTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRollbackTransaction,ZwRollbackTransaction diff --git a/libc/nt/ntdll/ZwRollforwardTransactionManager.S b/libc/nt/ntdll/ZwRollforwardTransactionManager.S deleted file mode 100644 index bc76c8fe7..000000000 --- a/libc/nt/ntdll/ZwRollforwardTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwRollforwardTransactionManager,ZwRollforwardTransactionManager diff --git a/libc/nt/ntdll/ZwSaveKey.S b/libc/nt/ntdll/ZwSaveKey.S deleted file mode 100644 index b1835a874..000000000 --- a/libc/nt/ntdll/ZwSaveKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSaveKey,ZwSaveKey diff --git a/libc/nt/ntdll/ZwSaveKeyEx.S b/libc/nt/ntdll/ZwSaveKeyEx.S deleted file mode 100644 index 7db5b878d..000000000 --- a/libc/nt/ntdll/ZwSaveKeyEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSaveKeyEx,ZwSaveKeyEx diff --git a/libc/nt/ntdll/ZwSaveMergedKeys.S b/libc/nt/ntdll/ZwSaveMergedKeys.S deleted file mode 100644 index 68ea1099c..000000000 --- a/libc/nt/ntdll/ZwSaveMergedKeys.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSaveMergedKeys,ZwSaveMergedKeys diff --git a/libc/nt/ntdll/ZwSecureConnectPort.S b/libc/nt/ntdll/ZwSecureConnectPort.S deleted file mode 100644 index 8adfd9a88..000000000 --- a/libc/nt/ntdll/ZwSecureConnectPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSecureConnectPort,ZwSecureConnectPort diff --git a/libc/nt/ntdll/ZwSerializeBoot.S b/libc/nt/ntdll/ZwSerializeBoot.S deleted file mode 100644 index df5070a89..000000000 --- a/libc/nt/ntdll/ZwSerializeBoot.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSerializeBoot,ZwSerializeBoot diff --git a/libc/nt/ntdll/ZwSetBootEntryOrder.S b/libc/nt/ntdll/ZwSetBootEntryOrder.S deleted file mode 100644 index 50c0ab0d0..000000000 --- a/libc/nt/ntdll/ZwSetBootEntryOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetBootEntryOrder,ZwSetBootEntryOrder diff --git a/libc/nt/ntdll/ZwSetBootOptions.S b/libc/nt/ntdll/ZwSetBootOptions.S deleted file mode 100644 index e250dd5ee..000000000 --- a/libc/nt/ntdll/ZwSetBootOptions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetBootOptions,ZwSetBootOptions diff --git a/libc/nt/ntdll/ZwSetCachedSigningLevel.S b/libc/nt/ntdll/ZwSetCachedSigningLevel.S deleted file mode 100644 index 811c8adbb..000000000 --- a/libc/nt/ntdll/ZwSetCachedSigningLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetCachedSigningLevel,ZwSetCachedSigningLevel diff --git a/libc/nt/ntdll/ZwSetCachedSigningLevel2.S b/libc/nt/ntdll/ZwSetCachedSigningLevel2.S deleted file mode 100644 index 74fc6a93c..000000000 --- a/libc/nt/ntdll/ZwSetCachedSigningLevel2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetCachedSigningLevel2,ZwSetCachedSigningLevel2 diff --git a/libc/nt/ntdll/ZwSetContextThread.S b/libc/nt/ntdll/ZwSetContextThread.S deleted file mode 100644 index 4b2665f93..000000000 --- a/libc/nt/ntdll/ZwSetContextThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetContextThread,ZwSetContextThread diff --git a/libc/nt/ntdll/ZwSetDebugFilterState.S b/libc/nt/ntdll/ZwSetDebugFilterState.S deleted file mode 100644 index 51a9307ec..000000000 --- a/libc/nt/ntdll/ZwSetDebugFilterState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetDebugFilterState,ZwSetDebugFilterState diff --git a/libc/nt/ntdll/ZwSetDefaultHardErrorPort.S b/libc/nt/ntdll/ZwSetDefaultHardErrorPort.S deleted file mode 100644 index 21437aaaf..000000000 --- a/libc/nt/ntdll/ZwSetDefaultHardErrorPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetDefaultHardErrorPort,ZwSetDefaultHardErrorPort diff --git a/libc/nt/ntdll/ZwSetDefaultLocale.S b/libc/nt/ntdll/ZwSetDefaultLocale.S deleted file mode 100644 index 57ca03ea7..000000000 --- a/libc/nt/ntdll/ZwSetDefaultLocale.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetDefaultLocale,ZwSetDefaultLocale diff --git a/libc/nt/ntdll/ZwSetDefaultUILanguage.S b/libc/nt/ntdll/ZwSetDefaultUILanguage.S deleted file mode 100644 index 95830aa2d..000000000 --- a/libc/nt/ntdll/ZwSetDefaultUILanguage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetDefaultUILanguage,ZwSetDefaultUILanguage diff --git a/libc/nt/ntdll/ZwSetDriverEntryOrder.S b/libc/nt/ntdll/ZwSetDriverEntryOrder.S deleted file mode 100644 index 41b928381..000000000 --- a/libc/nt/ntdll/ZwSetDriverEntryOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetDriverEntryOrder,ZwSetDriverEntryOrder diff --git a/libc/nt/ntdll/ZwSetEaFile.S b/libc/nt/ntdll/ZwSetEaFile.S deleted file mode 100644 index 2fa446c0c..000000000 --- a/libc/nt/ntdll/ZwSetEaFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetEaFile,ZwSetEaFile diff --git a/libc/nt/ntdll/ZwSetEvent.S b/libc/nt/ntdll/ZwSetEvent.S deleted file mode 100644 index d16461c8f..000000000 --- a/libc/nt/ntdll/ZwSetEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetEvent,ZwSetEvent diff --git a/libc/nt/ntdll/ZwSetEventBoostPriority.S b/libc/nt/ntdll/ZwSetEventBoostPriority.S deleted file mode 100644 index 2df6448e7..000000000 --- a/libc/nt/ntdll/ZwSetEventBoostPriority.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetEventBoostPriority,ZwSetEventBoostPriority diff --git a/libc/nt/ntdll/ZwSetHighEventPair.S b/libc/nt/ntdll/ZwSetHighEventPair.S deleted file mode 100644 index 20b6dff7d..000000000 --- a/libc/nt/ntdll/ZwSetHighEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetHighEventPair,ZwSetHighEventPair diff --git a/libc/nt/ntdll/ZwSetHighWaitLowEventPair.S b/libc/nt/ntdll/ZwSetHighWaitLowEventPair.S deleted file mode 100644 index a070fc1cd..000000000 --- a/libc/nt/ntdll/ZwSetHighWaitLowEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetHighWaitLowEventPair,ZwSetHighWaitLowEventPair diff --git a/libc/nt/ntdll/ZwSetIRTimer.S b/libc/nt/ntdll/ZwSetIRTimer.S deleted file mode 100644 index 30bec6d5b..000000000 --- a/libc/nt/ntdll/ZwSetIRTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetIRTimer,ZwSetIRTimer diff --git a/libc/nt/ntdll/ZwSetInformationDebugObject.S b/libc/nt/ntdll/ZwSetInformationDebugObject.S deleted file mode 100644 index 7494c40bc..000000000 --- a/libc/nt/ntdll/ZwSetInformationDebugObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationDebugObject,ZwSetInformationDebugObject diff --git a/libc/nt/ntdll/ZwSetInformationEnlistment.S b/libc/nt/ntdll/ZwSetInformationEnlistment.S deleted file mode 100644 index 08fd103a5..000000000 --- a/libc/nt/ntdll/ZwSetInformationEnlistment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationEnlistment,ZwSetInformationEnlistment diff --git a/libc/nt/ntdll/ZwSetInformationFile.S b/libc/nt/ntdll/ZwSetInformationFile.S deleted file mode 100644 index 0f3a9c94f..000000000 --- a/libc/nt/ntdll/ZwSetInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationFile,ZwSetInformationFile diff --git a/libc/nt/ntdll/ZwSetInformationJobObject.S b/libc/nt/ntdll/ZwSetInformationJobObject.S deleted file mode 100644 index 64c862496..000000000 --- a/libc/nt/ntdll/ZwSetInformationJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationJobObject,ZwSetInformationJobObject diff --git a/libc/nt/ntdll/ZwSetInformationKey.S b/libc/nt/ntdll/ZwSetInformationKey.S deleted file mode 100644 index 45547181a..000000000 --- a/libc/nt/ntdll/ZwSetInformationKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationKey,ZwSetInformationKey diff --git a/libc/nt/ntdll/ZwSetInformationObject.S b/libc/nt/ntdll/ZwSetInformationObject.S deleted file mode 100644 index fff8d02bb..000000000 --- a/libc/nt/ntdll/ZwSetInformationObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationObject,ZwSetInformationObject diff --git a/libc/nt/ntdll/ZwSetInformationProcess.S b/libc/nt/ntdll/ZwSetInformationProcess.S deleted file mode 100644 index facfeb0ba..000000000 --- a/libc/nt/ntdll/ZwSetInformationProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationProcess,ZwSetInformationProcess diff --git a/libc/nt/ntdll/ZwSetInformationResourceManager.S b/libc/nt/ntdll/ZwSetInformationResourceManager.S deleted file mode 100644 index e0c77bd12..000000000 --- a/libc/nt/ntdll/ZwSetInformationResourceManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationResourceManager,ZwSetInformationResourceManager diff --git a/libc/nt/ntdll/ZwSetInformationSymbolicLink.S b/libc/nt/ntdll/ZwSetInformationSymbolicLink.S deleted file mode 100644 index a44b95df4..000000000 --- a/libc/nt/ntdll/ZwSetInformationSymbolicLink.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationSymbolicLink,ZwSetInformationSymbolicLink diff --git a/libc/nt/ntdll/ZwSetInformationThread.S b/libc/nt/ntdll/ZwSetInformationThread.S deleted file mode 100644 index 7c8e8d02a..000000000 --- a/libc/nt/ntdll/ZwSetInformationThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationThread,ZwSetInformationThread diff --git a/libc/nt/ntdll/ZwSetInformationToken.S b/libc/nt/ntdll/ZwSetInformationToken.S deleted file mode 100644 index d13f75396..000000000 --- a/libc/nt/ntdll/ZwSetInformationToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationToken,ZwSetInformationToken diff --git a/libc/nt/ntdll/ZwSetInformationTransaction.S b/libc/nt/ntdll/ZwSetInformationTransaction.S deleted file mode 100644 index 9c41d4574..000000000 --- a/libc/nt/ntdll/ZwSetInformationTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationTransaction,ZwSetInformationTransaction diff --git a/libc/nt/ntdll/ZwSetInformationTransactionManager.S b/libc/nt/ntdll/ZwSetInformationTransactionManager.S deleted file mode 100644 index f18af1d1f..000000000 --- a/libc/nt/ntdll/ZwSetInformationTransactionManager.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationTransactionManager,ZwSetInformationTransactionManager diff --git a/libc/nt/ntdll/ZwSetInformationVirtualMemory.S b/libc/nt/ntdll/ZwSetInformationVirtualMemory.S deleted file mode 100644 index e5aff55c9..000000000 --- a/libc/nt/ntdll/ZwSetInformationVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationVirtualMemory,ZwSetInformationVirtualMemory diff --git a/libc/nt/ntdll/ZwSetInformationWorkerFactory.S b/libc/nt/ntdll/ZwSetInformationWorkerFactory.S deleted file mode 100644 index 832814234..000000000 --- a/libc/nt/ntdll/ZwSetInformationWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetInformationWorkerFactory,ZwSetInformationWorkerFactory diff --git a/libc/nt/ntdll/ZwSetIntervalProfile.S b/libc/nt/ntdll/ZwSetIntervalProfile.S deleted file mode 100644 index a4aa8d999..000000000 --- a/libc/nt/ntdll/ZwSetIntervalProfile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetIntervalProfile,ZwSetIntervalProfile diff --git a/libc/nt/ntdll/ZwSetIoCompletion.S b/libc/nt/ntdll/ZwSetIoCompletion.S deleted file mode 100644 index fc08ce677..000000000 --- a/libc/nt/ntdll/ZwSetIoCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetIoCompletion,ZwSetIoCompletion diff --git a/libc/nt/ntdll/ZwSetIoCompletionEx.S b/libc/nt/ntdll/ZwSetIoCompletionEx.S deleted file mode 100644 index 9c40c4113..000000000 --- a/libc/nt/ntdll/ZwSetIoCompletionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetIoCompletionEx,ZwSetIoCompletionEx diff --git a/libc/nt/ntdll/ZwSetLdtEntries.S b/libc/nt/ntdll/ZwSetLdtEntries.S deleted file mode 100644 index 7a704eccc..000000000 --- a/libc/nt/ntdll/ZwSetLdtEntries.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetLdtEntries,ZwSetLdtEntries diff --git a/libc/nt/ntdll/ZwSetLowEventPair.S b/libc/nt/ntdll/ZwSetLowEventPair.S deleted file mode 100644 index 29cefbeaf..000000000 --- a/libc/nt/ntdll/ZwSetLowEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetLowEventPair,ZwSetLowEventPair diff --git a/libc/nt/ntdll/ZwSetLowWaitHighEventPair.S b/libc/nt/ntdll/ZwSetLowWaitHighEventPair.S deleted file mode 100644 index c5d34b346..000000000 --- a/libc/nt/ntdll/ZwSetLowWaitHighEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetLowWaitHighEventPair,ZwSetLowWaitHighEventPair diff --git a/libc/nt/ntdll/ZwSetQuotaInformationFile.S b/libc/nt/ntdll/ZwSetQuotaInformationFile.S deleted file mode 100644 index 9e441e744..000000000 --- a/libc/nt/ntdll/ZwSetQuotaInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetQuotaInformationFile,ZwSetQuotaInformationFile diff --git a/libc/nt/ntdll/ZwSetSecurityObject.S b/libc/nt/ntdll/ZwSetSecurityObject.S deleted file mode 100644 index 3ca6ba3d9..000000000 --- a/libc/nt/ntdll/ZwSetSecurityObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetSecurityObject,ZwSetSecurityObject diff --git a/libc/nt/ntdll/ZwSetSystemEnvironmentValue.S b/libc/nt/ntdll/ZwSetSystemEnvironmentValue.S deleted file mode 100644 index 227c03aee..000000000 --- a/libc/nt/ntdll/ZwSetSystemEnvironmentValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetSystemEnvironmentValue,ZwSetSystemEnvironmentValue diff --git a/libc/nt/ntdll/ZwSetSystemEnvironmentValueEx.S b/libc/nt/ntdll/ZwSetSystemEnvironmentValueEx.S deleted file mode 100644 index bc2add855..000000000 --- a/libc/nt/ntdll/ZwSetSystemEnvironmentValueEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetSystemEnvironmentValueEx,ZwSetSystemEnvironmentValueEx diff --git a/libc/nt/ntdll/ZwSetSystemInformation.S b/libc/nt/ntdll/ZwSetSystemInformation.S deleted file mode 100644 index 3b6042aeb..000000000 --- a/libc/nt/ntdll/ZwSetSystemInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetSystemInformation,ZwSetSystemInformation diff --git a/libc/nt/ntdll/ZwSetSystemPowerState.S b/libc/nt/ntdll/ZwSetSystemPowerState.S deleted file mode 100644 index 562a224a2..000000000 --- a/libc/nt/ntdll/ZwSetSystemPowerState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetSystemPowerState,ZwSetSystemPowerState diff --git a/libc/nt/ntdll/ZwSetSystemTime.S b/libc/nt/ntdll/ZwSetSystemTime.S deleted file mode 100644 index a6d4cdaaf..000000000 --- a/libc/nt/ntdll/ZwSetSystemTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetSystemTime,ZwSetSystemTime diff --git a/libc/nt/ntdll/ZwSetThreadExecutionState.S b/libc/nt/ntdll/ZwSetThreadExecutionState.S deleted file mode 100644 index 0c760e6bc..000000000 --- a/libc/nt/ntdll/ZwSetThreadExecutionState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetThreadExecutionState,ZwSetThreadExecutionState diff --git a/libc/nt/ntdll/ZwSetTimer.S b/libc/nt/ntdll/ZwSetTimer.S deleted file mode 100644 index e8c557679..000000000 --- a/libc/nt/ntdll/ZwSetTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetTimer,ZwSetTimer diff --git a/libc/nt/ntdll/ZwSetTimer2.S b/libc/nt/ntdll/ZwSetTimer2.S deleted file mode 100644 index 465a8305e..000000000 --- a/libc/nt/ntdll/ZwSetTimer2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetTimer2,ZwSetTimer2 diff --git a/libc/nt/ntdll/ZwSetTimerEx.S b/libc/nt/ntdll/ZwSetTimerEx.S deleted file mode 100644 index e1b4a4b91..000000000 --- a/libc/nt/ntdll/ZwSetTimerEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetTimerEx,ZwSetTimerEx diff --git a/libc/nt/ntdll/ZwSetTimerResolution.S b/libc/nt/ntdll/ZwSetTimerResolution.S deleted file mode 100644 index 5b6658270..000000000 --- a/libc/nt/ntdll/ZwSetTimerResolution.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetTimerResolution,ZwSetTimerResolution diff --git a/libc/nt/ntdll/ZwSetUuidSeed.S b/libc/nt/ntdll/ZwSetUuidSeed.S deleted file mode 100644 index 820d7c19b..000000000 --- a/libc/nt/ntdll/ZwSetUuidSeed.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetUuidSeed,ZwSetUuidSeed diff --git a/libc/nt/ntdll/ZwSetValueKey.S b/libc/nt/ntdll/ZwSetValueKey.S deleted file mode 100644 index 72435ce9b..000000000 --- a/libc/nt/ntdll/ZwSetValueKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetValueKey,ZwSetValueKey diff --git a/libc/nt/ntdll/ZwSetVolumeInformationFile.S b/libc/nt/ntdll/ZwSetVolumeInformationFile.S deleted file mode 100644 index 1ce3ed3be..000000000 --- a/libc/nt/ntdll/ZwSetVolumeInformationFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetVolumeInformationFile,ZwSetVolumeInformationFile diff --git a/libc/nt/ntdll/ZwSetWnfProcessNotificationEvent.S b/libc/nt/ntdll/ZwSetWnfProcessNotificationEvent.S deleted file mode 100644 index abe1d37a3..000000000 --- a/libc/nt/ntdll/ZwSetWnfProcessNotificationEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSetWnfProcessNotificationEvent,ZwSetWnfProcessNotificationEvent diff --git a/libc/nt/ntdll/ZwShutdownSystem.S b/libc/nt/ntdll/ZwShutdownSystem.S deleted file mode 100644 index b6f2cb451..000000000 --- a/libc/nt/ntdll/ZwShutdownSystem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwShutdownSystem,ZwShutdownSystem diff --git a/libc/nt/ntdll/ZwShutdownWorkerFactory.S b/libc/nt/ntdll/ZwShutdownWorkerFactory.S deleted file mode 100644 index 3466ff45e..000000000 --- a/libc/nt/ntdll/ZwShutdownWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwShutdownWorkerFactory,ZwShutdownWorkerFactory diff --git a/libc/nt/ntdll/ZwSignalAndWaitForSingleObject.S b/libc/nt/ntdll/ZwSignalAndWaitForSingleObject.S deleted file mode 100644 index b036f128a..000000000 --- a/libc/nt/ntdll/ZwSignalAndWaitForSingleObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSignalAndWaitForSingleObject,ZwSignalAndWaitForSingleObject diff --git a/libc/nt/ntdll/ZwSinglePhaseReject.S b/libc/nt/ntdll/ZwSinglePhaseReject.S deleted file mode 100644 index c7a63ceee..000000000 --- a/libc/nt/ntdll/ZwSinglePhaseReject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSinglePhaseReject,ZwSinglePhaseReject diff --git a/libc/nt/ntdll/ZwStartProfile.S b/libc/nt/ntdll/ZwStartProfile.S deleted file mode 100644 index 6f77752b4..000000000 --- a/libc/nt/ntdll/ZwStartProfile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwStartProfile,ZwStartProfile diff --git a/libc/nt/ntdll/ZwStopProfile.S b/libc/nt/ntdll/ZwStopProfile.S deleted file mode 100644 index 41334e678..000000000 --- a/libc/nt/ntdll/ZwStopProfile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwStopProfile,ZwStopProfile diff --git a/libc/nt/ntdll/ZwSubscribeWnfStateChange.S b/libc/nt/ntdll/ZwSubscribeWnfStateChange.S deleted file mode 100644 index 03dbf7c7d..000000000 --- a/libc/nt/ntdll/ZwSubscribeWnfStateChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSubscribeWnfStateChange,ZwSubscribeWnfStateChange diff --git a/libc/nt/ntdll/ZwSuspendProcess.S b/libc/nt/ntdll/ZwSuspendProcess.S deleted file mode 100644 index 8c7d80e1b..000000000 --- a/libc/nt/ntdll/ZwSuspendProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSuspendProcess,ZwSuspendProcess diff --git a/libc/nt/ntdll/ZwSuspendThread.S b/libc/nt/ntdll/ZwSuspendThread.S deleted file mode 100644 index adfb275eb..000000000 --- a/libc/nt/ntdll/ZwSuspendThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSuspendThread,ZwSuspendThread diff --git a/libc/nt/ntdll/ZwSystemDebugControl.S b/libc/nt/ntdll/ZwSystemDebugControl.S deleted file mode 100644 index dffa76c4c..000000000 --- a/libc/nt/ntdll/ZwSystemDebugControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwSystemDebugControl,ZwSystemDebugControl diff --git a/libc/nt/ntdll/ZwTerminateEnclave.S b/libc/nt/ntdll/ZwTerminateEnclave.S deleted file mode 100644 index af65fbc4e..000000000 --- a/libc/nt/ntdll/ZwTerminateEnclave.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwTerminateEnclave,ZwTerminateEnclave diff --git a/libc/nt/ntdll/ZwTerminateJobObject.S b/libc/nt/ntdll/ZwTerminateJobObject.S deleted file mode 100644 index 5e3bbb6af..000000000 --- a/libc/nt/ntdll/ZwTerminateJobObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwTerminateJobObject,ZwTerminateJobObject diff --git a/libc/nt/ntdll/ZwTerminateProcess.S b/libc/nt/ntdll/ZwTerminateProcess.S deleted file mode 100644 index b42b7ded8..000000000 --- a/libc/nt/ntdll/ZwTerminateProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwTerminateProcess,ZwTerminateProcess diff --git a/libc/nt/ntdll/ZwTerminateThread.S b/libc/nt/ntdll/ZwTerminateThread.S deleted file mode 100644 index 04c3ae596..000000000 --- a/libc/nt/ntdll/ZwTerminateThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwTerminateThread,ZwTerminateThread diff --git a/libc/nt/ntdll/ZwTestAlert.S b/libc/nt/ntdll/ZwTestAlert.S deleted file mode 100644 index 98a18e1c2..000000000 --- a/libc/nt/ntdll/ZwTestAlert.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwTestAlert,ZwTestAlert diff --git a/libc/nt/ntdll/ZwThawRegistry.S b/libc/nt/ntdll/ZwThawRegistry.S deleted file mode 100644 index 9ffdc0f10..000000000 --- a/libc/nt/ntdll/ZwThawRegistry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwThawRegistry,ZwThawRegistry diff --git a/libc/nt/ntdll/ZwThawTransactions.S b/libc/nt/ntdll/ZwThawTransactions.S deleted file mode 100644 index 2bfb344a4..000000000 --- a/libc/nt/ntdll/ZwThawTransactions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwThawTransactions,ZwThawTransactions diff --git a/libc/nt/ntdll/ZwTraceControl.S b/libc/nt/ntdll/ZwTraceControl.S deleted file mode 100644 index f10034878..000000000 --- a/libc/nt/ntdll/ZwTraceControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwTraceControl,ZwTraceControl diff --git a/libc/nt/ntdll/ZwTraceEvent.S b/libc/nt/ntdll/ZwTraceEvent.S deleted file mode 100644 index 06633be47..000000000 --- a/libc/nt/ntdll/ZwTraceEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwTraceEvent,ZwTraceEvent diff --git a/libc/nt/ntdll/ZwTranslateFilePath.S b/libc/nt/ntdll/ZwTranslateFilePath.S deleted file mode 100644 index 83a8d96e5..000000000 --- a/libc/nt/ntdll/ZwTranslateFilePath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwTranslateFilePath,ZwTranslateFilePath diff --git a/libc/nt/ntdll/ZwUmsThreadYield.S b/libc/nt/ntdll/ZwUmsThreadYield.S deleted file mode 100644 index b847a20d3..000000000 --- a/libc/nt/ntdll/ZwUmsThreadYield.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUmsThreadYield,ZwUmsThreadYield diff --git a/libc/nt/ntdll/ZwUnloadDriver.S b/libc/nt/ntdll/ZwUnloadDriver.S deleted file mode 100644 index e2d4d0df7..000000000 --- a/libc/nt/ntdll/ZwUnloadDriver.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnloadDriver,ZwUnloadDriver diff --git a/libc/nt/ntdll/ZwUnloadKey.S b/libc/nt/ntdll/ZwUnloadKey.S deleted file mode 100644 index 33d6afc2d..000000000 --- a/libc/nt/ntdll/ZwUnloadKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnloadKey,ZwUnloadKey diff --git a/libc/nt/ntdll/ZwUnloadKey2.S b/libc/nt/ntdll/ZwUnloadKey2.S deleted file mode 100644 index a8accdfe2..000000000 --- a/libc/nt/ntdll/ZwUnloadKey2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnloadKey2,ZwUnloadKey2 diff --git a/libc/nt/ntdll/ZwUnloadKeyEx.S b/libc/nt/ntdll/ZwUnloadKeyEx.S deleted file mode 100644 index 36b6a3010..000000000 --- a/libc/nt/ntdll/ZwUnloadKeyEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnloadKeyEx,ZwUnloadKeyEx diff --git a/libc/nt/ntdll/ZwUnlockFile.S b/libc/nt/ntdll/ZwUnlockFile.S deleted file mode 100644 index f6259b38e..000000000 --- a/libc/nt/ntdll/ZwUnlockFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnlockFile,ZwUnlockFile diff --git a/libc/nt/ntdll/ZwUnlockVirtualMemory.S b/libc/nt/ntdll/ZwUnlockVirtualMemory.S deleted file mode 100644 index 875130290..000000000 --- a/libc/nt/ntdll/ZwUnlockVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnlockVirtualMemory,ZwUnlockVirtualMemory diff --git a/libc/nt/ntdll/ZwUnmapViewOfSection.S b/libc/nt/ntdll/ZwUnmapViewOfSection.S deleted file mode 100644 index 8e760c2f4..000000000 --- a/libc/nt/ntdll/ZwUnmapViewOfSection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnmapViewOfSection,ZwUnmapViewOfSection diff --git a/libc/nt/ntdll/ZwUnmapViewOfSectionEx.S b/libc/nt/ntdll/ZwUnmapViewOfSectionEx.S deleted file mode 100644 index 8993a64b8..000000000 --- a/libc/nt/ntdll/ZwUnmapViewOfSectionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnmapViewOfSectionEx,ZwUnmapViewOfSectionEx diff --git a/libc/nt/ntdll/ZwUnsubscribeWnfStateChange.S b/libc/nt/ntdll/ZwUnsubscribeWnfStateChange.S deleted file mode 100644 index 8a455f939..000000000 --- a/libc/nt/ntdll/ZwUnsubscribeWnfStateChange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUnsubscribeWnfStateChange,ZwUnsubscribeWnfStateChange diff --git a/libc/nt/ntdll/ZwUpdateWnfStateData.S b/libc/nt/ntdll/ZwUpdateWnfStateData.S deleted file mode 100644 index f10ac8222..000000000 --- a/libc/nt/ntdll/ZwUpdateWnfStateData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwUpdateWnfStateData,ZwUpdateWnfStateData diff --git a/libc/nt/ntdll/ZwVdmControl.S b/libc/nt/ntdll/ZwVdmControl.S deleted file mode 100644 index f5dcba4b2..000000000 --- a/libc/nt/ntdll/ZwVdmControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwVdmControl,ZwVdmControl diff --git a/libc/nt/ntdll/ZwWaitForAlertByThreadId.S b/libc/nt/ntdll/ZwWaitForAlertByThreadId.S deleted file mode 100644 index 73b5186a0..000000000 --- a/libc/nt/ntdll/ZwWaitForAlertByThreadId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitForAlertByThreadId,ZwWaitForAlertByThreadId diff --git a/libc/nt/ntdll/ZwWaitForDebugEvent.S b/libc/nt/ntdll/ZwWaitForDebugEvent.S deleted file mode 100644 index 3b5ea3bfa..000000000 --- a/libc/nt/ntdll/ZwWaitForDebugEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitForDebugEvent,ZwWaitForDebugEvent diff --git a/libc/nt/ntdll/ZwWaitForKeyedEvent.S b/libc/nt/ntdll/ZwWaitForKeyedEvent.S deleted file mode 100644 index 6062cbac6..000000000 --- a/libc/nt/ntdll/ZwWaitForKeyedEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitForKeyedEvent,ZwWaitForKeyedEvent diff --git a/libc/nt/ntdll/ZwWaitForMultipleObjects.S b/libc/nt/ntdll/ZwWaitForMultipleObjects.S deleted file mode 100644 index c5f80630b..000000000 --- a/libc/nt/ntdll/ZwWaitForMultipleObjects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitForMultipleObjects,ZwWaitForMultipleObjects diff --git a/libc/nt/ntdll/ZwWaitForMultipleObjects32.S b/libc/nt/ntdll/ZwWaitForMultipleObjects32.S deleted file mode 100644 index 453769dde..000000000 --- a/libc/nt/ntdll/ZwWaitForMultipleObjects32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitForMultipleObjects32,ZwWaitForMultipleObjects32 diff --git a/libc/nt/ntdll/ZwWaitForSingleObject.S b/libc/nt/ntdll/ZwWaitForSingleObject.S deleted file mode 100644 index f22543ed5..000000000 --- a/libc/nt/ntdll/ZwWaitForSingleObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitForSingleObject,ZwWaitForSingleObject diff --git a/libc/nt/ntdll/ZwWaitForWorkViaWorkerFactory.S b/libc/nt/ntdll/ZwWaitForWorkViaWorkerFactory.S deleted file mode 100644 index e33d3b4a1..000000000 --- a/libc/nt/ntdll/ZwWaitForWorkViaWorkerFactory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitForWorkViaWorkerFactory,ZwWaitForWorkViaWorkerFactory diff --git a/libc/nt/ntdll/ZwWaitHighEventPair.S b/libc/nt/ntdll/ZwWaitHighEventPair.S deleted file mode 100644 index a2cbec158..000000000 --- a/libc/nt/ntdll/ZwWaitHighEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitHighEventPair,ZwWaitHighEventPair diff --git a/libc/nt/ntdll/ZwWaitLowEventPair.S b/libc/nt/ntdll/ZwWaitLowEventPair.S deleted file mode 100644 index 482baaa31..000000000 --- a/libc/nt/ntdll/ZwWaitLowEventPair.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWaitLowEventPair,ZwWaitLowEventPair diff --git a/libc/nt/ntdll/ZwWorkerFactoryWorkerReady.S b/libc/nt/ntdll/ZwWorkerFactoryWorkerReady.S deleted file mode 100644 index 920b6141c..000000000 --- a/libc/nt/ntdll/ZwWorkerFactoryWorkerReady.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWorkerFactoryWorkerReady,ZwWorkerFactoryWorkerReady diff --git a/libc/nt/ntdll/ZwWriteFile.S b/libc/nt/ntdll/ZwWriteFile.S deleted file mode 100644 index 9bd8de664..000000000 --- a/libc/nt/ntdll/ZwWriteFile.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWriteFile,ZwWriteFile diff --git a/libc/nt/ntdll/ZwWriteFileGather.S b/libc/nt/ntdll/ZwWriteFileGather.S deleted file mode 100644 index b98a9371e..000000000 --- a/libc/nt/ntdll/ZwWriteFileGather.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWriteFileGather,ZwWriteFileGather diff --git a/libc/nt/ntdll/ZwWriteRequestData.S b/libc/nt/ntdll/ZwWriteRequestData.S deleted file mode 100644 index 49470c913..000000000 --- a/libc/nt/ntdll/ZwWriteRequestData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWriteRequestData,ZwWriteRequestData diff --git a/libc/nt/ntdll/ZwWriteVirtualMemory.S b/libc/nt/ntdll/ZwWriteVirtualMemory.S deleted file mode 100644 index 6cfcdb5c3..000000000 --- a/libc/nt/ntdll/ZwWriteVirtualMemory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwWriteVirtualMemory,ZwWriteVirtualMemory diff --git a/libc/nt/ntdll/ZwYieldExecution.S b/libc/nt/ntdll/ZwYieldExecution.S deleted file mode 100644 index 11471b367..000000000 --- a/libc/nt/ntdll/ZwYieldExecution.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/ntdllimport.h" -.ntimp ZwYieldExecution,ZwYieldExecution diff --git a/libc/nt/pdh/CounterPathCallBack.S b/libc/nt/pdh/CounterPathCallBack.S deleted file mode 100644 index a7104c719..000000000 --- a/libc/nt/pdh/CounterPathCallBack.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_CounterPathCallBack,CounterPathCallBack,0 diff --git a/libc/nt/pdh/LoadPerfCounterTextStringsW.S b/libc/nt/pdh/LoadPerfCounterTextStringsW.S deleted file mode 100644 index 1ca8623d5..000000000 --- a/libc/nt/pdh/LoadPerfCounterTextStringsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_LoadPerfCounterTextStringsW,LoadPerfCounterTextStringsW,0 diff --git a/libc/nt/pdh/PdhAddCounterW.S b/libc/nt/pdh/PdhAddCounterW.S deleted file mode 100644 index f3e9e947e..000000000 --- a/libc/nt/pdh/PdhAddCounterW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhAddCounterW,PdhAddCounterW,0 diff --git a/libc/nt/pdh/PdhAddEnglishCounterW.S b/libc/nt/pdh/PdhAddEnglishCounterW.S index 9fbb8cb96..5df0a96ba 100644 --- a/libc/nt/pdh/PdhAddEnglishCounterW.S +++ b/libc/nt/pdh/PdhAddEnglishCounterW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp pdh,__imp_PdhAddEnglishCounterW,PdhAddEnglishCounterW,0 +.imp pdh,__imp_PdhAddEnglishCounterW,PdhAddEnglishCounterW .text.windows .ftrace1 diff --git a/libc/nt/pdh/PdhBindInputDataSourceW.S b/libc/nt/pdh/PdhBindInputDataSourceW.S deleted file mode 100644 index df0219201..000000000 --- a/libc/nt/pdh/PdhBindInputDataSourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhBindInputDataSourceW,PdhBindInputDataSourceW,0 diff --git a/libc/nt/pdh/PdhBrowseCountersHW.S b/libc/nt/pdh/PdhBrowseCountersHW.S deleted file mode 100644 index a8790625f..000000000 --- a/libc/nt/pdh/PdhBrowseCountersHW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhBrowseCountersHW,PdhBrowseCountersHW,0 diff --git a/libc/nt/pdh/PdhBrowseCountersW.S b/libc/nt/pdh/PdhBrowseCountersW.S deleted file mode 100644 index 5e5de9c99..000000000 --- a/libc/nt/pdh/PdhBrowseCountersW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhBrowseCountersW,PdhBrowseCountersW,0 diff --git a/libc/nt/pdh/PdhCalculateCounterFromRawValue.S b/libc/nt/pdh/PdhCalculateCounterFromRawValue.S deleted file mode 100644 index fc5e7b810..000000000 --- a/libc/nt/pdh/PdhCalculateCounterFromRawValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhCalculateCounterFromRawValue,PdhCalculateCounterFromRawValue,0 diff --git a/libc/nt/pdh/PdhCloseLog.S b/libc/nt/pdh/PdhCloseLog.S deleted file mode 100644 index e6c150a5e..000000000 --- a/libc/nt/pdh/PdhCloseLog.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhCloseLog,PdhCloseLog,0 diff --git a/libc/nt/pdh/PdhCloseQuery.S b/libc/nt/pdh/PdhCloseQuery.S deleted file mode 100644 index 75ddccce3..000000000 --- a/libc/nt/pdh/PdhCloseQuery.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhCloseQuery,PdhCloseQuery,0 diff --git a/libc/nt/pdh/PdhCollectQueryData.S b/libc/nt/pdh/PdhCollectQueryData.S deleted file mode 100644 index 427cb74cd..000000000 --- a/libc/nt/pdh/PdhCollectQueryData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhCollectQueryData,PdhCollectQueryData,0 diff --git a/libc/nt/pdh/PdhCollectQueryDataEx.S b/libc/nt/pdh/PdhCollectQueryDataEx.S index c1e0e72ff..53feb44ea 100644 --- a/libc/nt/pdh/PdhCollectQueryDataEx.S +++ b/libc/nt/pdh/PdhCollectQueryDataEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp pdh,__imp_PdhCollectQueryDataEx,PdhCollectQueryDataEx,0 +.imp pdh,__imp_PdhCollectQueryDataEx,PdhCollectQueryDataEx .text.windows .ftrace1 diff --git a/libc/nt/pdh/PdhCollectQueryDataWithTime.S b/libc/nt/pdh/PdhCollectQueryDataWithTime.S deleted file mode 100644 index b5fb83a32..000000000 --- a/libc/nt/pdh/PdhCollectQueryDataWithTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhCollectQueryDataWithTime,PdhCollectQueryDataWithTime,0 diff --git a/libc/nt/pdh/PdhComputeCounterStatistics.S b/libc/nt/pdh/PdhComputeCounterStatistics.S deleted file mode 100644 index 1b1a0907d..000000000 --- a/libc/nt/pdh/PdhComputeCounterStatistics.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhComputeCounterStatistics,PdhComputeCounterStatistics,0 diff --git a/libc/nt/pdh/PdhConnectMachineW.S b/libc/nt/pdh/PdhConnectMachineW.S deleted file mode 100644 index 1a92a2112..000000000 --- a/libc/nt/pdh/PdhConnectMachineW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhConnectMachineW,PdhConnectMachineW,0 diff --git a/libc/nt/pdh/PdhEnumLogSetNamesW.S b/libc/nt/pdh/PdhEnumLogSetNamesW.S deleted file mode 100644 index 382916247..000000000 --- a/libc/nt/pdh/PdhEnumLogSetNamesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhEnumLogSetNamesW,PdhEnumLogSetNamesW,0 diff --git a/libc/nt/pdh/PdhEnumMachinesHW.S b/libc/nt/pdh/PdhEnumMachinesHW.S deleted file mode 100644 index 2f55711ad..000000000 --- a/libc/nt/pdh/PdhEnumMachinesHW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhEnumMachinesHW,PdhEnumMachinesHW,0 diff --git a/libc/nt/pdh/PdhEnumMachinesW.S b/libc/nt/pdh/PdhEnumMachinesW.S deleted file mode 100644 index 14d5894b4..000000000 --- a/libc/nt/pdh/PdhEnumMachinesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhEnumMachinesW,PdhEnumMachinesW,0 diff --git a/libc/nt/pdh/PdhEnumObjectItemsHW.S b/libc/nt/pdh/PdhEnumObjectItemsHW.S deleted file mode 100644 index 4ad5fee1c..000000000 --- a/libc/nt/pdh/PdhEnumObjectItemsHW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhEnumObjectItemsHW,PdhEnumObjectItemsHW,0 diff --git a/libc/nt/pdh/PdhEnumObjectItemsW.S b/libc/nt/pdh/PdhEnumObjectItemsW.S deleted file mode 100644 index d0321b77c..000000000 --- a/libc/nt/pdh/PdhEnumObjectItemsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhEnumObjectItemsW,PdhEnumObjectItemsW,0 diff --git a/libc/nt/pdh/PdhEnumObjectsHW.S b/libc/nt/pdh/PdhEnumObjectsHW.S deleted file mode 100644 index f7d8c9640..000000000 --- a/libc/nt/pdh/PdhEnumObjectsHW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhEnumObjectsHW,PdhEnumObjectsHW,0 diff --git a/libc/nt/pdh/PdhEnumObjectsW.S b/libc/nt/pdh/PdhEnumObjectsW.S deleted file mode 100644 index 844a0ef65..000000000 --- a/libc/nt/pdh/PdhEnumObjectsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhEnumObjectsW,PdhEnumObjectsW,0 diff --git a/libc/nt/pdh/PdhExpandCounterPathW.S b/libc/nt/pdh/PdhExpandCounterPathW.S deleted file mode 100644 index 5e73a62c9..000000000 --- a/libc/nt/pdh/PdhExpandCounterPathW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhExpandCounterPathW,PdhExpandCounterPathW,0 diff --git a/libc/nt/pdh/PdhExpandWildCardPathHW.S b/libc/nt/pdh/PdhExpandWildCardPathHW.S deleted file mode 100644 index 2229c1dbb..000000000 --- a/libc/nt/pdh/PdhExpandWildCardPathHW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhExpandWildCardPathHW,PdhExpandWildCardPathHW,0 diff --git a/libc/nt/pdh/PdhExpandWildCardPathW.S b/libc/nt/pdh/PdhExpandWildCardPathW.S deleted file mode 100644 index 25c59f7f1..000000000 --- a/libc/nt/pdh/PdhExpandWildCardPathW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhExpandWildCardPathW,PdhExpandWildCardPathW,0 diff --git a/libc/nt/pdh/PdhFormatFromRawValue.S b/libc/nt/pdh/PdhFormatFromRawValue.S deleted file mode 100644 index 29e8c6d89..000000000 --- a/libc/nt/pdh/PdhFormatFromRawValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhFormatFromRawValue,PdhFormatFromRawValue,0 diff --git a/libc/nt/pdh/PdhGetCounterInfoW.S b/libc/nt/pdh/PdhGetCounterInfoW.S deleted file mode 100644 index d015c997f..000000000 --- a/libc/nt/pdh/PdhGetCounterInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetCounterInfoW,PdhGetCounterInfoW,0 diff --git a/libc/nt/pdh/PdhGetCounterTimeBase.S b/libc/nt/pdh/PdhGetCounterTimeBase.S deleted file mode 100644 index 1001a8913..000000000 --- a/libc/nt/pdh/PdhGetCounterTimeBase.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetCounterTimeBase,PdhGetCounterTimeBase,0 diff --git a/libc/nt/pdh/PdhGetDataSourceTimeRangeH.S b/libc/nt/pdh/PdhGetDataSourceTimeRangeH.S deleted file mode 100644 index 5b037d144..000000000 --- a/libc/nt/pdh/PdhGetDataSourceTimeRangeH.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetDataSourceTimeRangeH,PdhGetDataSourceTimeRangeH,0 diff --git a/libc/nt/pdh/PdhGetDataSourceTimeRangeW.S b/libc/nt/pdh/PdhGetDataSourceTimeRangeW.S deleted file mode 100644 index b6fcd755c..000000000 --- a/libc/nt/pdh/PdhGetDataSourceTimeRangeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetDataSourceTimeRangeW,PdhGetDataSourceTimeRangeW,0 diff --git a/libc/nt/pdh/PdhGetDefaultPerfCounterHW.S b/libc/nt/pdh/PdhGetDefaultPerfCounterHW.S deleted file mode 100644 index c12e3e7c4..000000000 --- a/libc/nt/pdh/PdhGetDefaultPerfCounterHW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetDefaultPerfCounterHW,PdhGetDefaultPerfCounterHW,0 diff --git a/libc/nt/pdh/PdhGetDefaultPerfCounterW.S b/libc/nt/pdh/PdhGetDefaultPerfCounterW.S deleted file mode 100644 index 5237a1ca2..000000000 --- a/libc/nt/pdh/PdhGetDefaultPerfCounterW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetDefaultPerfCounterW,PdhGetDefaultPerfCounterW,0 diff --git a/libc/nt/pdh/PdhGetDefaultPerfObjectHW.S b/libc/nt/pdh/PdhGetDefaultPerfObjectHW.S deleted file mode 100644 index e46544105..000000000 --- a/libc/nt/pdh/PdhGetDefaultPerfObjectHW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetDefaultPerfObjectHW,PdhGetDefaultPerfObjectHW,0 diff --git a/libc/nt/pdh/PdhGetDefaultPerfObjectW.S b/libc/nt/pdh/PdhGetDefaultPerfObjectW.S deleted file mode 100644 index 523e2fb91..000000000 --- a/libc/nt/pdh/PdhGetDefaultPerfObjectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetDefaultPerfObjectW,PdhGetDefaultPerfObjectW,0 diff --git a/libc/nt/pdh/PdhGetDllVersion.S b/libc/nt/pdh/PdhGetDllVersion.S deleted file mode 100644 index ad879231b..000000000 --- a/libc/nt/pdh/PdhGetDllVersion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetDllVersion,PdhGetDllVersion,0 diff --git a/libc/nt/pdh/PdhGetFormattedCounterArrayW.S b/libc/nt/pdh/PdhGetFormattedCounterArrayW.S deleted file mode 100644 index 7906d4011..000000000 --- a/libc/nt/pdh/PdhGetFormattedCounterArrayW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetFormattedCounterArrayW,PdhGetFormattedCounterArrayW,0 diff --git a/libc/nt/pdh/PdhGetFormattedCounterValue.S b/libc/nt/pdh/PdhGetFormattedCounterValue.S index b2e5ccb60..d7c8b5ca6 100644 --- a/libc/nt/pdh/PdhGetFormattedCounterValue.S +++ b/libc/nt/pdh/PdhGetFormattedCounterValue.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetFormattedCounterValue,PdhGetFormattedCounterValue,0 +.imp pdh,__imp_PdhGetFormattedCounterValue,PdhGetFormattedCounterValue .text.windows .ftrace1 diff --git a/libc/nt/pdh/PdhGetLogFileSize.S b/libc/nt/pdh/PdhGetLogFileSize.S deleted file mode 100644 index 6e1e907a6..000000000 --- a/libc/nt/pdh/PdhGetLogFileSize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetLogFileSize,PdhGetLogFileSize,0 diff --git a/libc/nt/pdh/PdhGetRawCounterArrayW.S b/libc/nt/pdh/PdhGetRawCounterArrayW.S deleted file mode 100644 index 2f4b7e4d3..000000000 --- a/libc/nt/pdh/PdhGetRawCounterArrayW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetRawCounterArrayW,PdhGetRawCounterArrayW,0 diff --git a/libc/nt/pdh/PdhGetRawCounterValue.S b/libc/nt/pdh/PdhGetRawCounterValue.S deleted file mode 100644 index 772def0ac..000000000 --- a/libc/nt/pdh/PdhGetRawCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhGetRawCounterValue,PdhGetRawCounterValue,0 diff --git a/libc/nt/pdh/PdhIsRealTimeQuery.S b/libc/nt/pdh/PdhIsRealTimeQuery.S deleted file mode 100644 index 6fa82126d..000000000 --- a/libc/nt/pdh/PdhIsRealTimeQuery.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhIsRealTimeQuery,PdhIsRealTimeQuery,0 diff --git a/libc/nt/pdh/PdhLookupPerfIndexByNameW.S b/libc/nt/pdh/PdhLookupPerfIndexByNameW.S deleted file mode 100644 index 189ffe961..000000000 --- a/libc/nt/pdh/PdhLookupPerfIndexByNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhLookupPerfIndexByNameW,PdhLookupPerfIndexByNameW,0 diff --git a/libc/nt/pdh/PdhLookupPerfNameByIndexW.S b/libc/nt/pdh/PdhLookupPerfNameByIndexW.S deleted file mode 100644 index e0113dc95..000000000 --- a/libc/nt/pdh/PdhLookupPerfNameByIndexW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhLookupPerfNameByIndexW,PdhLookupPerfNameByIndexW,0 diff --git a/libc/nt/pdh/PdhMakeCounterPathW.S b/libc/nt/pdh/PdhMakeCounterPathW.S deleted file mode 100644 index 89483b1c8..000000000 --- a/libc/nt/pdh/PdhMakeCounterPathW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhMakeCounterPathW,PdhMakeCounterPathW,0 diff --git a/libc/nt/pdh/PdhOpenLogW.S b/libc/nt/pdh/PdhOpenLogW.S deleted file mode 100644 index c8e187390..000000000 --- a/libc/nt/pdh/PdhOpenLogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhOpenLogW,PdhOpenLogW,0 diff --git a/libc/nt/pdh/PdhOpenQueryH.S b/libc/nt/pdh/PdhOpenQueryH.S deleted file mode 100644 index 2ec1b0dc9..000000000 --- a/libc/nt/pdh/PdhOpenQueryH.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhOpenQueryH,PdhOpenQueryH,0 diff --git a/libc/nt/pdh/PdhOpenQueryW.S b/libc/nt/pdh/PdhOpenQueryW.S index 01d563d51..42730dba4 100644 --- a/libc/nt/pdh/PdhOpenQueryW.S +++ b/libc/nt/pdh/PdhOpenQueryW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp pdh,__imp_PdhOpenQueryW,PdhOpenQueryW,0 +.imp pdh,__imp_PdhOpenQueryW,PdhOpenQueryW .text.windows .ftrace1 diff --git a/libc/nt/pdh/PdhParseCounterPathW.S b/libc/nt/pdh/PdhParseCounterPathW.S deleted file mode 100644 index c19c987f7..000000000 --- a/libc/nt/pdh/PdhParseCounterPathW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhParseCounterPathW,PdhParseCounterPathW,0 diff --git a/libc/nt/pdh/PdhParseInstanceNameW.S b/libc/nt/pdh/PdhParseInstanceNameW.S deleted file mode 100644 index 3bc57ab6d..000000000 --- a/libc/nt/pdh/PdhParseInstanceNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhParseInstanceNameW,PdhParseInstanceNameW,0 diff --git a/libc/nt/pdh/PdhReadRawLogRecord.S b/libc/nt/pdh/PdhReadRawLogRecord.S deleted file mode 100644 index f7aac80e9..000000000 --- a/libc/nt/pdh/PdhReadRawLogRecord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhReadRawLogRecord,PdhReadRawLogRecord,0 diff --git a/libc/nt/pdh/PdhRemoveCounter.S b/libc/nt/pdh/PdhRemoveCounter.S deleted file mode 100644 index 522e5e4c6..000000000 --- a/libc/nt/pdh/PdhRemoveCounter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhRemoveCounter,PdhRemoveCounter,0 diff --git a/libc/nt/pdh/PdhSelectDataSourceW.S b/libc/nt/pdh/PdhSelectDataSourceW.S deleted file mode 100644 index 0110a5183..000000000 --- a/libc/nt/pdh/PdhSelectDataSourceW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhSelectDataSourceW,PdhSelectDataSourceW,0 diff --git a/libc/nt/pdh/PdhSetCounterScaleFactor.S b/libc/nt/pdh/PdhSetCounterScaleFactor.S deleted file mode 100644 index b405c5b84..000000000 --- a/libc/nt/pdh/PdhSetCounterScaleFactor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhSetCounterScaleFactor,PdhSetCounterScaleFactor,0 diff --git a/libc/nt/pdh/PdhSetDefaultRealTimeDataSource.S b/libc/nt/pdh/PdhSetDefaultRealTimeDataSource.S deleted file mode 100644 index 13f121ef2..000000000 --- a/libc/nt/pdh/PdhSetDefaultRealTimeDataSource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhSetDefaultRealTimeDataSource,PdhSetDefaultRealTimeDataSource,0 diff --git a/libc/nt/pdh/PdhSetQueryTimeRange.S b/libc/nt/pdh/PdhSetQueryTimeRange.S deleted file mode 100644 index 9ea4d9a48..000000000 --- a/libc/nt/pdh/PdhSetQueryTimeRange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhSetQueryTimeRange,PdhSetQueryTimeRange,0 diff --git a/libc/nt/pdh/PdhUpdateLogFileCatalog.S b/libc/nt/pdh/PdhUpdateLogFileCatalog.S deleted file mode 100644 index 539b6e63d..000000000 --- a/libc/nt/pdh/PdhUpdateLogFileCatalog.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhUpdateLogFileCatalog,PdhUpdateLogFileCatalog,0 diff --git a/libc/nt/pdh/PdhUpdateLogW.S b/libc/nt/pdh/PdhUpdateLogW.S deleted file mode 100644 index a2a4cd74f..000000000 --- a/libc/nt/pdh/PdhUpdateLogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhUpdateLogW,PdhUpdateLogW,0 diff --git a/libc/nt/pdh/PdhValidatePathExW.S b/libc/nt/pdh/PdhValidatePathExW.S deleted file mode 100644 index 100ab120f..000000000 --- a/libc/nt/pdh/PdhValidatePathExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhValidatePathExW,PdhValidatePathExW,0 diff --git a/libc/nt/pdh/PdhValidatePathW.S b/libc/nt/pdh/PdhValidatePathW.S deleted file mode 100644 index a9a4798cc..000000000 --- a/libc/nt/pdh/PdhValidatePathW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PdhValidatePathW,PdhValidatePathW,0 diff --git a/libc/nt/pdh/PerfAddCounters.S b/libc/nt/pdh/PerfAddCounters.S deleted file mode 100644 index 7e04f41ce..000000000 --- a/libc/nt/pdh/PerfAddCounters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfAddCounters,PerfAddCounters,0 diff --git a/libc/nt/pdh/PerfCloseQueryHandle.S b/libc/nt/pdh/PerfCloseQueryHandle.S deleted file mode 100644 index e25ed9a07..000000000 --- a/libc/nt/pdh/PerfCloseQueryHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfCloseQueryHandle,PerfCloseQueryHandle,0 diff --git a/libc/nt/pdh/PerfCreateInstance.S b/libc/nt/pdh/PerfCreateInstance.S deleted file mode 100644 index 4dd7d8d46..000000000 --- a/libc/nt/pdh/PerfCreateInstance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfCreateInstance,PerfCreateInstance,0 diff --git a/libc/nt/pdh/PerfDecrementULongCounterValue.S b/libc/nt/pdh/PerfDecrementULongCounterValue.S deleted file mode 100644 index 8de7363a6..000000000 --- a/libc/nt/pdh/PerfDecrementULongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfDecrementULongCounterValue,PerfDecrementULongCounterValue,0 diff --git a/libc/nt/pdh/PerfDecrementULongLongCounterValue.S b/libc/nt/pdh/PerfDecrementULongLongCounterValue.S deleted file mode 100644 index ed16fa50c..000000000 --- a/libc/nt/pdh/PerfDecrementULongLongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfDecrementULongLongCounterValue,PerfDecrementULongLongCounterValue,0 diff --git a/libc/nt/pdh/PerfDeleteCounters.S b/libc/nt/pdh/PerfDeleteCounters.S deleted file mode 100644 index 08d2e364a..000000000 --- a/libc/nt/pdh/PerfDeleteCounters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfDeleteCounters,PerfDeleteCounters,0 diff --git a/libc/nt/pdh/PerfDeleteInstance.S b/libc/nt/pdh/PerfDeleteInstance.S deleted file mode 100644 index 3e1c73490..000000000 --- a/libc/nt/pdh/PerfDeleteInstance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfDeleteInstance,PerfDeleteInstance,0 diff --git a/libc/nt/pdh/PerfEnumerateCounterSet.S b/libc/nt/pdh/PerfEnumerateCounterSet.S deleted file mode 100644 index d6d92609c..000000000 --- a/libc/nt/pdh/PerfEnumerateCounterSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfEnumerateCounterSet,PerfEnumerateCounterSet,0 diff --git a/libc/nt/pdh/PerfEnumerateCounterSetInstances.S b/libc/nt/pdh/PerfEnumerateCounterSetInstances.S deleted file mode 100644 index 5ab314f49..000000000 --- a/libc/nt/pdh/PerfEnumerateCounterSetInstances.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfEnumerateCounterSetInstances,PerfEnumerateCounterSetInstances,0 diff --git a/libc/nt/pdh/PerfIncrementULongCounterValue.S b/libc/nt/pdh/PerfIncrementULongCounterValue.S deleted file mode 100644 index d53c1ad27..000000000 --- a/libc/nt/pdh/PerfIncrementULongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfIncrementULongCounterValue,PerfIncrementULongCounterValue,0 diff --git a/libc/nt/pdh/PerfIncrementULongLongCounterValue.S b/libc/nt/pdh/PerfIncrementULongLongCounterValue.S deleted file mode 100644 index 506942b15..000000000 --- a/libc/nt/pdh/PerfIncrementULongLongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfIncrementULongLongCounterValue,PerfIncrementULongLongCounterValue,0 diff --git a/libc/nt/pdh/PerfOpenQueryHandle.S b/libc/nt/pdh/PerfOpenQueryHandle.S deleted file mode 100644 index 2ef47c9f0..000000000 --- a/libc/nt/pdh/PerfOpenQueryHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfOpenQueryHandle,PerfOpenQueryHandle,0 diff --git a/libc/nt/pdh/PerfQueryCounterData.S b/libc/nt/pdh/PerfQueryCounterData.S deleted file mode 100644 index 09e3b7e32..000000000 --- a/libc/nt/pdh/PerfQueryCounterData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfQueryCounterData,PerfQueryCounterData,0 diff --git a/libc/nt/pdh/PerfQueryCounterInfo.S b/libc/nt/pdh/PerfQueryCounterInfo.S deleted file mode 100644 index 2c7df04ae..000000000 --- a/libc/nt/pdh/PerfQueryCounterInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfQueryCounterInfo,PerfQueryCounterInfo,0 diff --git a/libc/nt/pdh/PerfQueryCounterSetRegistrationInfo.S b/libc/nt/pdh/PerfQueryCounterSetRegistrationInfo.S deleted file mode 100644 index 1a64f6f86..000000000 --- a/libc/nt/pdh/PerfQueryCounterSetRegistrationInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfQueryCounterSetRegistrationInfo,PerfQueryCounterSetRegistrationInfo,0 diff --git a/libc/nt/pdh/PerfQueryInstance.S b/libc/nt/pdh/PerfQueryInstance.S deleted file mode 100644 index 9b9b5a141..000000000 --- a/libc/nt/pdh/PerfQueryInstance.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfQueryInstance,PerfQueryInstance,0 diff --git a/libc/nt/pdh/PerfSetCounterRefValue.S b/libc/nt/pdh/PerfSetCounterRefValue.S deleted file mode 100644 index 4f0eaad2a..000000000 --- a/libc/nt/pdh/PerfSetCounterRefValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfSetCounterRefValue,PerfSetCounterRefValue,0 diff --git a/libc/nt/pdh/PerfSetCounterSetInfo.S b/libc/nt/pdh/PerfSetCounterSetInfo.S deleted file mode 100644 index 063ce037b..000000000 --- a/libc/nt/pdh/PerfSetCounterSetInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfSetCounterSetInfo,PerfSetCounterSetInfo,0 diff --git a/libc/nt/pdh/PerfSetULongCounterValue.S b/libc/nt/pdh/PerfSetULongCounterValue.S deleted file mode 100644 index 1b664c582..000000000 --- a/libc/nt/pdh/PerfSetULongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfSetULongCounterValue,PerfSetULongCounterValue,0 diff --git a/libc/nt/pdh/PerfSetULongLongCounterValue.S b/libc/nt/pdh/PerfSetULongLongCounterValue.S deleted file mode 100644 index 9a3e1a78b..000000000 --- a/libc/nt/pdh/PerfSetULongLongCounterValue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfSetULongLongCounterValue,PerfSetULongLongCounterValue,0 diff --git a/libc/nt/pdh/PerfStartProvider.S b/libc/nt/pdh/PerfStartProvider.S deleted file mode 100644 index b06260ac6..000000000 --- a/libc/nt/pdh/PerfStartProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfStartProvider,PerfStartProvider,0 diff --git a/libc/nt/pdh/PerfStartProviderEx.S b/libc/nt/pdh/PerfStartProviderEx.S deleted file mode 100644 index 62e1ed113..000000000 --- a/libc/nt/pdh/PerfStartProviderEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfStartProviderEx,PerfStartProviderEx,0 diff --git a/libc/nt/pdh/PerfStopProvider.S b/libc/nt/pdh/PerfStopProvider.S deleted file mode 100644 index 31c868275..000000000 --- a/libc/nt/pdh/PerfStopProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_PerfStopProvider,PerfStopProvider,0 diff --git a/libc/nt/pdh/UnloadPerfCounterTextStringsW.S b/libc/nt/pdh/UnloadPerfCounterTextStringsW.S deleted file mode 100644 index 5719690d6..000000000 --- a/libc/nt/pdh/UnloadPerfCounterTextStringsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp pdh,__imp_UnloadPerfCounterTextStringsW,UnloadPerfCounterTextStringsW,0 diff --git a/libc/nt/psapi/EmptyWorkingSet.S b/libc/nt/psapi/EmptyWorkingSet.S deleted file mode 100644 index 987a61522..000000000 --- a/libc/nt/psapi/EmptyWorkingSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_EmptyWorkingSet,EmptyWorkingSet,0 diff --git a/libc/nt/psapi/EnumDeviceDrivers.S b/libc/nt/psapi/EnumDeviceDrivers.S deleted file mode 100644 index 8829db5af..000000000 --- a/libc/nt/psapi/EnumDeviceDrivers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_EnumDeviceDrivers,EnumDeviceDrivers,0 diff --git a/libc/nt/psapi/EnumPageFilesW.S b/libc/nt/psapi/EnumPageFilesW.S deleted file mode 100644 index 434445d0d..000000000 --- a/libc/nt/psapi/EnumPageFilesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_EnumPageFilesW,EnumPageFilesW,0 diff --git a/libc/nt/psapi/EnumProcessModules.S b/libc/nt/psapi/EnumProcessModules.S deleted file mode 100644 index 33fa968c3..000000000 --- a/libc/nt/psapi/EnumProcessModules.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_EnumProcessModules,EnumProcessModules,0 diff --git a/libc/nt/psapi/EnumProcessModulesEx.S b/libc/nt/psapi/EnumProcessModulesEx.S deleted file mode 100644 index cc3c50c92..000000000 --- a/libc/nt/psapi/EnumProcessModulesEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_EnumProcessModulesEx,EnumProcessModulesEx,0 diff --git a/libc/nt/psapi/EnumProcesses.S b/libc/nt/psapi/EnumProcesses.S deleted file mode 100644 index f5a990136..000000000 --- a/libc/nt/psapi/EnumProcesses.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_EnumProcesses,EnumProcesses,0 diff --git a/libc/nt/psapi/GetDeviceDriverBaseNameW.S b/libc/nt/psapi/GetDeviceDriverBaseNameW.S deleted file mode 100644 index c462895d4..000000000 --- a/libc/nt/psapi/GetDeviceDriverBaseNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetDeviceDriverBaseNameW,GetDeviceDriverBaseNameW,0 diff --git a/libc/nt/psapi/GetDeviceDriverFileNameW.S b/libc/nt/psapi/GetDeviceDriverFileNameW.S deleted file mode 100644 index 844331c7d..000000000 --- a/libc/nt/psapi/GetDeviceDriverFileNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetDeviceDriverFileNameW,GetDeviceDriverFileNameW,0 diff --git a/libc/nt/psapi/GetMappedFileNameW.S b/libc/nt/psapi/GetMappedFileNameW.S deleted file mode 100644 index 55455d616..000000000 --- a/libc/nt/psapi/GetMappedFileNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetMappedFileNameW,GetMappedFileNameW,0 diff --git a/libc/nt/psapi/GetModuleBaseNameW.S b/libc/nt/psapi/GetModuleBaseNameW.S deleted file mode 100644 index 1e7045671..000000000 --- a/libc/nt/psapi/GetModuleBaseNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetModuleBaseNameW,GetModuleBaseNameW,0 diff --git a/libc/nt/psapi/GetModuleFileNameExW.S b/libc/nt/psapi/GetModuleFileNameExW.S deleted file mode 100644 index e48d33b77..000000000 --- a/libc/nt/psapi/GetModuleFileNameExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetModuleFileNameExW,GetModuleFileNameExW,0 diff --git a/libc/nt/psapi/GetModuleInformation.S b/libc/nt/psapi/GetModuleInformation.S deleted file mode 100644 index d709752bf..000000000 --- a/libc/nt/psapi/GetModuleInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetModuleInformation,GetModuleInformation,0 diff --git a/libc/nt/psapi/GetPerformanceInfo.S b/libc/nt/psapi/GetPerformanceInfo.S deleted file mode 100644 index 83fd66536..000000000 --- a/libc/nt/psapi/GetPerformanceInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetPerformanceInfo,GetPerformanceInfo,0 diff --git a/libc/nt/psapi/GetProcessImageFileNameW.S b/libc/nt/psapi/GetProcessImageFileNameW.S index 53ab4a125..b7c0c69a4 100644 --- a/libc/nt/psapi/GetProcessImageFileNameW.S +++ b/libc/nt/psapi/GetProcessImageFileNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp psapi,__imp_GetProcessImageFileNameW,GetProcessImageFileNameW,0 +.imp psapi,__imp_GetProcessImageFileNameW,GetProcessImageFileNameW .text.windows .ftrace1 diff --git a/libc/nt/psapi/GetProcessMemoryInfo.S b/libc/nt/psapi/GetProcessMemoryInfo.S index b44a2cf7a..543f4ab0f 100644 --- a/libc/nt/psapi/GetProcessMemoryInfo.S +++ b/libc/nt/psapi/GetProcessMemoryInfo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp psapi,__imp_GetProcessMemoryInfo,GetProcessMemoryInfo,0 +.imp psapi,__imp_GetProcessMemoryInfo,GetProcessMemoryInfo .text.windows .ftrace1 diff --git a/libc/nt/psapi/GetWsChanges.S b/libc/nt/psapi/GetWsChanges.S deleted file mode 100644 index c54156624..000000000 --- a/libc/nt/psapi/GetWsChanges.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetWsChanges,GetWsChanges,0 diff --git a/libc/nt/psapi/GetWsChangesEx.S b/libc/nt/psapi/GetWsChangesEx.S deleted file mode 100644 index 539b13e43..000000000 --- a/libc/nt/psapi/GetWsChangesEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_GetWsChangesEx,GetWsChangesEx,0 diff --git a/libc/nt/psapi/InitializeProcessForWsWatch.S b/libc/nt/psapi/InitializeProcessForWsWatch.S deleted file mode 100644 index dbcbc763d..000000000 --- a/libc/nt/psapi/InitializeProcessForWsWatch.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_InitializeProcessForWsWatch,InitializeProcessForWsWatch,0 diff --git a/libc/nt/psapi/QueryWorkingSet.S b/libc/nt/psapi/QueryWorkingSet.S deleted file mode 100644 index 1926ee328..000000000 --- a/libc/nt/psapi/QueryWorkingSet.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_QueryWorkingSet,QueryWorkingSet,0 diff --git a/libc/nt/psapi/QueryWorkingSetEx.S b/libc/nt/psapi/QueryWorkingSetEx.S deleted file mode 100644 index 9c291e835..000000000 --- a/libc/nt/psapi/QueryWorkingSetEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp psapi,__imp_QueryWorkingSetEx,QueryWorkingSetEx,0 diff --git a/libc/nt/struct/securityattributes.h b/libc/nt/struct/securityattributes.h index 604bd95c3..6487df652 100644 --- a/libc/nt/struct/securityattributes.h +++ b/libc/nt/struct/securityattributes.h @@ -1,5 +1,6 @@ #ifndef COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYATTRIBUTES_H_ #define COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYATTRIBUTES_H_ +#include "libc/mem/alloca.h" #include "libc/nt/struct/securitydescriptor.h" #if !(__ASSEMBLER__ + __LINKER__ + 0) @@ -9,7 +10,10 @@ struct NtSecurityAttributes { bool32 bInheritHandle; }; -const char *DescribeNtSecurityAttributes(struct NtSecurityAttributes *); +const char *DescribeNtSecurityAttributes(char[32], + struct NtSecurityAttributes *); +#define DescribeNtSecurityAttributes(x) \ + DescribeNtSecurityAttributes(alloca(32), x) #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ #endif /* COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYATTRIBUTES_H_ */ diff --git a/libc/nt/url/AddMIMEFileTypesPS.S b/libc/nt/url/AddMIMEFileTypesPS.S deleted file mode 100644 index 35b446b9f..000000000 --- a/libc/nt/url/AddMIMEFileTypesPS.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_AddMIMEFileTypesPS,AddMIMEFileTypesPS,102 diff --git a/libc/nt/url/AutodialHookCallback.S b/libc/nt/url/AutodialHookCallback.S deleted file mode 100644 index ba04b0a77..000000000 --- a/libc/nt/url/AutodialHookCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_AutodialHookCallback,AutodialHookCallback,103 diff --git a/libc/nt/url/FileProtocolHandler.S b/libc/nt/url/FileProtocolHandler.S deleted file mode 100644 index 026682b4f..000000000 --- a/libc/nt/url/FileProtocolHandler.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_FileProtocolHandler,FileProtocolHandler,104 diff --git a/libc/nt/url/InetIsOffline.S b/libc/nt/url/InetIsOffline.S deleted file mode 100644 index feffe7751..000000000 --- a/libc/nt/url/InetIsOffline.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_InetIsOffline,InetIsOffline,106 diff --git a/libc/nt/url/MIMEAssociationDialogW.S b/libc/nt/url/MIMEAssociationDialogW.S deleted file mode 100644 index 032d95b09..000000000 --- a/libc/nt/url/MIMEAssociationDialogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_MIMEAssociationDialogW,MIMEAssociationDialogW,108 diff --git a/libc/nt/url/MailToProtocolHandler.S b/libc/nt/url/MailToProtocolHandler.S deleted file mode 100644 index e4d3a7ba4..000000000 --- a/libc/nt/url/MailToProtocolHandler.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_MailToProtocolHandler,MailToProtocolHandler,109 diff --git a/libc/nt/url/OpenURL.S b/libc/nt/url/OpenURL.S deleted file mode 100644 index ae8aca279..000000000 --- a/libc/nt/url/OpenURL.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_OpenURL,OpenURL,111 diff --git a/libc/nt/url/TelnetProtocolHandler.S b/libc/nt/url/TelnetProtocolHandler.S deleted file mode 100644 index 7f9152b88..000000000 --- a/libc/nt/url/TelnetProtocolHandler.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_TelnetProtocolHandler,TelnetProtocolHandler,113 diff --git a/libc/nt/url/TranslateURLW.S b/libc/nt/url/TranslateURLW.S deleted file mode 100644 index e5338f30b..000000000 --- a/libc/nt/url/TranslateURLW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_TranslateURLW,TranslateURLW,116 diff --git a/libc/nt/url/URLAssociationDialogW.S b/libc/nt/url/URLAssociationDialogW.S deleted file mode 100644 index 4e5d16b79..000000000 --- a/libc/nt/url/URLAssociationDialogW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp url,__imp_URLAssociationDialogW,URLAssociationDialogW,118 diff --git a/libc/nt/user32/ActivateKeyboardLayout.S b/libc/nt/user32/ActivateKeyboardLayout.S deleted file mode 100644 index 34d0790fb..000000000 --- a/libc/nt/user32/ActivateKeyboardLayout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ActivateKeyboardLayout,ActivateKeyboardLayout,1505 diff --git a/libc/nt/user32/AddClipboardFormatListener.S b/libc/nt/user32/AddClipboardFormatListener.S deleted file mode 100644 index 06e7b4266..000000000 --- a/libc/nt/user32/AddClipboardFormatListener.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AddClipboardFormatListener,AddClipboardFormatListener,1506 diff --git a/libc/nt/user32/AdjustWindowRect.S b/libc/nt/user32/AdjustWindowRect.S index b4b2b1650..2b537e267 100644 --- a/libc/nt/user32/AdjustWindowRect.S +++ b/libc/nt/user32/AdjustWindowRect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_AdjustWindowRect,AdjustWindowRect,1507 +.imp user32,__imp_AdjustWindowRect,AdjustWindowRect .text.windows .ftrace1 diff --git a/libc/nt/user32/AdjustWindowRectEx.S b/libc/nt/user32/AdjustWindowRectEx.S deleted file mode 100644 index 15b3ba2f6..000000000 --- a/libc/nt/user32/AdjustWindowRectEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AdjustWindowRectEx,AdjustWindowRectEx,1508 diff --git a/libc/nt/user32/AdjustWindowRectExForDpi.S b/libc/nt/user32/AdjustWindowRectExForDpi.S deleted file mode 100644 index 728624313..000000000 --- a/libc/nt/user32/AdjustWindowRectExForDpi.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AdjustWindowRectExForDpi,AdjustWindowRectExForDpi,1509 diff --git a/libc/nt/user32/AlignRects.S b/libc/nt/user32/AlignRects.S deleted file mode 100644 index 36975c161..000000000 --- a/libc/nt/user32/AlignRects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AlignRects,AlignRects,1510 diff --git a/libc/nt/user32/AllowForegroundActivation.S b/libc/nt/user32/AllowForegroundActivation.S deleted file mode 100644 index 5b8378840..000000000 --- a/libc/nt/user32/AllowForegroundActivation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AllowForegroundActivation,AllowForegroundActivation,1511 diff --git a/libc/nt/user32/AllowSetForegroundWindow.S b/libc/nt/user32/AllowSetForegroundWindow.S deleted file mode 100644 index 419dc7930..000000000 --- a/libc/nt/user32/AllowSetForegroundWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AllowSetForegroundWindow,AllowSetForegroundWindow,1512 diff --git a/libc/nt/user32/AnimateWindow.S b/libc/nt/user32/AnimateWindow.S index daf201b23..429820ad2 100644 --- a/libc/nt/user32/AnimateWindow.S +++ b/libc/nt/user32/AnimateWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_AnimateWindow,AnimateWindow,1513 +.imp user32,__imp_AnimateWindow,AnimateWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/AnyPopup.S b/libc/nt/user32/AnyPopup.S deleted file mode 100644 index c3f01beec..000000000 --- a/libc/nt/user32/AnyPopup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AnyPopup,AnyPopup,1514 diff --git a/libc/nt/user32/AppendMenuA.S b/libc/nt/user32/AppendMenuA.S index 1579513dd..e7e4b8406 100644 --- a/libc/nt/user32/AppendMenuA.S +++ b/libc/nt/user32/AppendMenuA.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_AppendMenuA,AppendMenuA,1515 +.imp user32,__imp_AppendMenuA,AppendMenuA .text.windows .ftrace1 diff --git a/libc/nt/user32/AppendMenuW.S b/libc/nt/user32/AppendMenuW.S index e02b358ba..3565f8cc2 100644 --- a/libc/nt/user32/AppendMenuW.S +++ b/libc/nt/user32/AppendMenuW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_AppendMenuW,AppendMenuW,1516 +.imp user32,__imp_AppendMenuW,AppendMenuW .text.windows .ftrace1 diff --git a/libc/nt/user32/AreDpiAwarenessContextsEqual.S b/libc/nt/user32/AreDpiAwarenessContextsEqual.S deleted file mode 100644 index c4631d12e..000000000 --- a/libc/nt/user32/AreDpiAwarenessContextsEqual.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AreDpiAwarenessContextsEqual,AreDpiAwarenessContextsEqual,1517 diff --git a/libc/nt/user32/ArrangeIconicWindows.S b/libc/nt/user32/ArrangeIconicWindows.S deleted file mode 100644 index f57ead0fa..000000000 --- a/libc/nt/user32/ArrangeIconicWindows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ArrangeIconicWindows,ArrangeIconicWindows,1518 diff --git a/libc/nt/user32/AttachThreadInput.S b/libc/nt/user32/AttachThreadInput.S deleted file mode 100644 index fb4043d4b..000000000 --- a/libc/nt/user32/AttachThreadInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_AttachThreadInput,AttachThreadInput,1519 diff --git a/libc/nt/user32/BeginDeferWindowPos.S b/libc/nt/user32/BeginDeferWindowPos.S deleted file mode 100644 index 77e3ef51f..000000000 --- a/libc/nt/user32/BeginDeferWindowPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_BeginDeferWindowPos,BeginDeferWindowPos,1520 diff --git a/libc/nt/user32/BeginPaint.S b/libc/nt/user32/BeginPaint.S index 19f72da52..3fa7a741d 100644 --- a/libc/nt/user32/BeginPaint.S +++ b/libc/nt/user32/BeginPaint.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_BeginPaint,BeginPaint,1521 +.imp user32,__imp_BeginPaint,BeginPaint .text.windows .ftrace1 diff --git a/libc/nt/user32/BlockInput.S b/libc/nt/user32/BlockInput.S deleted file mode 100644 index a7843cc4d..000000000 --- a/libc/nt/user32/BlockInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_BlockInput,BlockInput,1522 diff --git a/libc/nt/user32/BringWindowToTop.S b/libc/nt/user32/BringWindowToTop.S index 7fc77c849..cad128121 100644 --- a/libc/nt/user32/BringWindowToTop.S +++ b/libc/nt/user32/BringWindowToTop.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_BringWindowToTop,BringWindowToTop,1523 +.imp user32,__imp_BringWindowToTop,BringWindowToTop .text.windows .ftrace1 diff --git a/libc/nt/user32/BroadcastSystemMessageExW.S b/libc/nt/user32/BroadcastSystemMessageExW.S deleted file mode 100644 index 6f0d764ed..000000000 --- a/libc/nt/user32/BroadcastSystemMessageExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_BroadcastSystemMessageExW,BroadcastSystemMessageExW,1527 diff --git a/libc/nt/user32/BroadcastSystemMessageW.S b/libc/nt/user32/BroadcastSystemMessageW.S deleted file mode 100644 index c5296bb52..000000000 --- a/libc/nt/user32/BroadcastSystemMessageW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_BroadcastSystemMessageW,BroadcastSystemMessageW,1528 diff --git a/libc/nt/user32/BuildReasonArray.S b/libc/nt/user32/BuildReasonArray.S deleted file mode 100644 index a97243f55..000000000 --- a/libc/nt/user32/BuildReasonArray.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_BuildReasonArray,BuildReasonArray,1529 diff --git a/libc/nt/user32/CalcMenuBar.S b/libc/nt/user32/CalcMenuBar.S deleted file mode 100644 index c6d1be16a..000000000 --- a/libc/nt/user32/CalcMenuBar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CalcMenuBar,CalcMenuBar,1530 diff --git a/libc/nt/user32/CalculatePopupWindowPosition.S b/libc/nt/user32/CalculatePopupWindowPosition.S deleted file mode 100644 index c2cdb4c02..000000000 --- a/libc/nt/user32/CalculatePopupWindowPosition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CalculatePopupWindowPosition,CalculatePopupWindowPosition,1531 diff --git a/libc/nt/user32/CallMsgFilterW.S b/libc/nt/user32/CallMsgFilterW.S deleted file mode 100644 index fc2d23011..000000000 --- a/libc/nt/user32/CallMsgFilterW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CallMsgFilterW,CallMsgFilterW,1534 diff --git a/libc/nt/user32/CallNextHookEx.S b/libc/nt/user32/CallNextHookEx.S index 95dac3a57..4f942681a 100644 --- a/libc/nt/user32/CallNextHookEx.S +++ b/libc/nt/user32/CallNextHookEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_CallNextHookEx,CallNextHookEx,1535 +.imp user32,__imp_CallNextHookEx,CallNextHookEx .text.windows .ftrace1 diff --git a/libc/nt/user32/CallWindowProcW.S b/libc/nt/user32/CallWindowProcW.S deleted file mode 100644 index 417837498..000000000 --- a/libc/nt/user32/CallWindowProcW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CallWindowProcW,CallWindowProcW,1537 diff --git a/libc/nt/user32/CancelShutdown.S b/libc/nt/user32/CancelShutdown.S deleted file mode 100644 index bc4f6975e..000000000 --- a/libc/nt/user32/CancelShutdown.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CancelShutdown,CancelShutdown,1538 diff --git a/libc/nt/user32/CascadeChildWindows.S b/libc/nt/user32/CascadeChildWindows.S deleted file mode 100644 index 945af87d5..000000000 --- a/libc/nt/user32/CascadeChildWindows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CascadeChildWindows,CascadeChildWindows,1539 diff --git a/libc/nt/user32/CascadeWindows.S b/libc/nt/user32/CascadeWindows.S deleted file mode 100644 index d12933c81..000000000 --- a/libc/nt/user32/CascadeWindows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CascadeWindows,CascadeWindows,1540 diff --git a/libc/nt/user32/ChangeClipboardChain.S b/libc/nt/user32/ChangeClipboardChain.S deleted file mode 100644 index 6e864b4d6..000000000 --- a/libc/nt/user32/ChangeClipboardChain.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ChangeClipboardChain,ChangeClipboardChain,1541 diff --git a/libc/nt/user32/ChangeDisplaySettingsExW.S b/libc/nt/user32/ChangeDisplaySettingsExW.S deleted file mode 100644 index c3e62c22f..000000000 --- a/libc/nt/user32/ChangeDisplaySettingsExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ChangeDisplaySettingsExW,ChangeDisplaySettingsExW,1544 diff --git a/libc/nt/user32/ChangeDisplaySettingsW.S b/libc/nt/user32/ChangeDisplaySettingsW.S deleted file mode 100644 index 117e9211d..000000000 --- a/libc/nt/user32/ChangeDisplaySettingsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ChangeDisplaySettingsW,ChangeDisplaySettingsW,1545 diff --git a/libc/nt/user32/ChangeMenuW.S b/libc/nt/user32/ChangeMenuW.S deleted file mode 100644 index f217dc452..000000000 --- a/libc/nt/user32/ChangeMenuW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ChangeMenuW,ChangeMenuW,1547 diff --git a/libc/nt/user32/ChangeWindowMessageFilter.S b/libc/nt/user32/ChangeWindowMessageFilter.S deleted file mode 100644 index c94766d5f..000000000 --- a/libc/nt/user32/ChangeWindowMessageFilter.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ChangeWindowMessageFilter,ChangeWindowMessageFilter,1548 diff --git a/libc/nt/user32/ChangeWindowMessageFilterEx.S b/libc/nt/user32/ChangeWindowMessageFilterEx.S deleted file mode 100644 index 6792301f2..000000000 --- a/libc/nt/user32/ChangeWindowMessageFilterEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ChangeWindowMessageFilterEx,ChangeWindowMessageFilterEx,1549 diff --git a/libc/nt/user32/CharToOemBuffW.S b/libc/nt/user32/CharToOemBuffW.S deleted file mode 100644 index 3f90a5f18..000000000 --- a/libc/nt/user32/CharToOemBuffW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CharToOemBuffW,CharToOemBuffW,1567 diff --git a/libc/nt/user32/CharToOemW.S b/libc/nt/user32/CharToOemW.S deleted file mode 100644 index a12ef5de8..000000000 --- a/libc/nt/user32/CharToOemW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CharToOemW,CharToOemW,1568 diff --git a/libc/nt/user32/CheckDBCSEnabledExt.S b/libc/nt/user32/CheckDBCSEnabledExt.S deleted file mode 100644 index ac0e56b32..000000000 --- a/libc/nt/user32/CheckDBCSEnabledExt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CheckDBCSEnabledExt,CheckDBCSEnabledExt,1573 diff --git a/libc/nt/user32/CheckDlgButton.S b/libc/nt/user32/CheckDlgButton.S deleted file mode 100644 index 65705e17b..000000000 --- a/libc/nt/user32/CheckDlgButton.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CheckDlgButton,CheckDlgButton,1574 diff --git a/libc/nt/user32/CheckMenuItem.S b/libc/nt/user32/CheckMenuItem.S deleted file mode 100644 index d98a76d4f..000000000 --- a/libc/nt/user32/CheckMenuItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CheckMenuItem,CheckMenuItem,1575 diff --git a/libc/nt/user32/CheckMenuRadioItem.S b/libc/nt/user32/CheckMenuRadioItem.S deleted file mode 100644 index 01060493e..000000000 --- a/libc/nt/user32/CheckMenuRadioItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CheckMenuRadioItem,CheckMenuRadioItem,1576 diff --git a/libc/nt/user32/CheckProcessForClipboardAccess.S b/libc/nt/user32/CheckProcessForClipboardAccess.S deleted file mode 100644 index 4e1e68510..000000000 --- a/libc/nt/user32/CheckProcessForClipboardAccess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CheckProcessForClipboardAccess,CheckProcessForClipboardAccess,1577 diff --git a/libc/nt/user32/CheckProcessSession.S b/libc/nt/user32/CheckProcessSession.S deleted file mode 100644 index 381fca490..000000000 --- a/libc/nt/user32/CheckProcessSession.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CheckProcessSession,CheckProcessSession,1578 diff --git a/libc/nt/user32/CheckRadioButton.S b/libc/nt/user32/CheckRadioButton.S deleted file mode 100644 index cf242aebd..000000000 --- a/libc/nt/user32/CheckRadioButton.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CheckRadioButton,CheckRadioButton,1579 diff --git a/libc/nt/user32/CheckWindowThreadDesktop.S b/libc/nt/user32/CheckWindowThreadDesktop.S deleted file mode 100644 index 39d9a2052..000000000 --- a/libc/nt/user32/CheckWindowThreadDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CheckWindowThreadDesktop,CheckWindowThreadDesktop,1580 diff --git a/libc/nt/user32/ChildWindowFromPoint.S b/libc/nt/user32/ChildWindowFromPoint.S deleted file mode 100644 index 28fefdeae..000000000 --- a/libc/nt/user32/ChildWindowFromPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ChildWindowFromPoint,ChildWindowFromPoint,1581 diff --git a/libc/nt/user32/ChildWindowFromPointEx.S b/libc/nt/user32/ChildWindowFromPointEx.S deleted file mode 100644 index f5611a51d..000000000 --- a/libc/nt/user32/ChildWindowFromPointEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ChildWindowFromPointEx,ChildWindowFromPointEx,1582 diff --git a/libc/nt/user32/CliImmSetHotKey.S b/libc/nt/user32/CliImmSetHotKey.S deleted file mode 100644 index 95e0fe632..000000000 --- a/libc/nt/user32/CliImmSetHotKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CliImmSetHotKey,CliImmSetHotKey,1583 diff --git a/libc/nt/user32/ClientThreadSetup.S b/libc/nt/user32/ClientThreadSetup.S deleted file mode 100644 index efcb62252..000000000 --- a/libc/nt/user32/ClientThreadSetup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ClientThreadSetup,ClientThreadSetup,1584 diff --git a/libc/nt/user32/ClientToScreen.S b/libc/nt/user32/ClientToScreen.S deleted file mode 100644 index 215c9eaf4..000000000 --- a/libc/nt/user32/ClientToScreen.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ClientToScreen,ClientToScreen,1585 diff --git a/libc/nt/user32/ClipCursor.S b/libc/nt/user32/ClipCursor.S deleted file mode 100644 index e2e336497..000000000 --- a/libc/nt/user32/ClipCursor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ClipCursor,ClipCursor,1586 diff --git a/libc/nt/user32/CloseClipboard.S b/libc/nt/user32/CloseClipboard.S deleted file mode 100644 index fe9a1e5e0..000000000 --- a/libc/nt/user32/CloseClipboard.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CloseClipboard,CloseClipboard,1587 diff --git a/libc/nt/user32/CloseDesktop.S b/libc/nt/user32/CloseDesktop.S deleted file mode 100644 index 24afb4653..000000000 --- a/libc/nt/user32/CloseDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CloseDesktop,CloseDesktop,1588 diff --git a/libc/nt/user32/CloseGestureInfoHandle.S b/libc/nt/user32/CloseGestureInfoHandle.S deleted file mode 100644 index e3325182b..000000000 --- a/libc/nt/user32/CloseGestureInfoHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CloseGestureInfoHandle,CloseGestureInfoHandle,1589 diff --git a/libc/nt/user32/CloseTouchInputHandle.S b/libc/nt/user32/CloseTouchInputHandle.S deleted file mode 100644 index 4b582bb92..000000000 --- a/libc/nt/user32/CloseTouchInputHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CloseTouchInputHandle,CloseTouchInputHandle,1590 diff --git a/libc/nt/user32/CloseWindow.S b/libc/nt/user32/CloseWindow.S index 236b63032..baa555965 100644 --- a/libc/nt/user32/CloseWindow.S +++ b/libc/nt/user32/CloseWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_CloseWindow,CloseWindow,1591 +.imp user32,__imp_CloseWindow,CloseWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/CloseWindowStation.S b/libc/nt/user32/CloseWindowStation.S deleted file mode 100644 index 356b17592..000000000 --- a/libc/nt/user32/CloseWindowStation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CloseWindowStation,CloseWindowStation,1592 diff --git a/libc/nt/user32/ConsoleControl.S b/libc/nt/user32/ConsoleControl.S deleted file mode 100644 index a8de5d569..000000000 --- a/libc/nt/user32/ConsoleControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ConsoleControl,ConsoleControl,1593 diff --git a/libc/nt/user32/ControlMagnification.S b/libc/nt/user32/ControlMagnification.S deleted file mode 100644 index 3e5c2e554..000000000 --- a/libc/nt/user32/ControlMagnification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ControlMagnification,ControlMagnification,1594 diff --git a/libc/nt/user32/CopyAcceleratorTableW.S b/libc/nt/user32/CopyAcceleratorTableW.S deleted file mode 100644 index 0b0d171eb..000000000 --- a/libc/nt/user32/CopyAcceleratorTableW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CopyAcceleratorTableW,CopyAcceleratorTableW,1596 diff --git a/libc/nt/user32/CopyIcon.S b/libc/nt/user32/CopyIcon.S deleted file mode 100644 index dc6c73920..000000000 --- a/libc/nt/user32/CopyIcon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CopyIcon,CopyIcon,1597 diff --git a/libc/nt/user32/CopyImage.S b/libc/nt/user32/CopyImage.S deleted file mode 100644 index e2828ae3b..000000000 --- a/libc/nt/user32/CopyImage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CopyImage,CopyImage,1598 diff --git a/libc/nt/user32/CopyRect.S b/libc/nt/user32/CopyRect.S deleted file mode 100644 index 3dae145aa..000000000 --- a/libc/nt/user32/CopyRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CopyRect,CopyRect,1599 diff --git a/libc/nt/user32/CountClipboardFormats.S b/libc/nt/user32/CountClipboardFormats.S deleted file mode 100644 index 81395d95a..000000000 --- a/libc/nt/user32/CountClipboardFormats.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CountClipboardFormats,CountClipboardFormats,1600 diff --git a/libc/nt/user32/CreateAcceleratorTableW.S b/libc/nt/user32/CreateAcceleratorTableW.S deleted file mode 100644 index 8b0539423..000000000 --- a/libc/nt/user32/CreateAcceleratorTableW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateAcceleratorTableW,CreateAcceleratorTableW,1602 diff --git a/libc/nt/user32/CreateCaret.S b/libc/nt/user32/CreateCaret.S deleted file mode 100644 index 19ee17a43..000000000 --- a/libc/nt/user32/CreateCaret.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateCaret,CreateCaret,1603 diff --git a/libc/nt/user32/CreateCursor.S b/libc/nt/user32/CreateCursor.S deleted file mode 100644 index 4b9a0b3e8..000000000 --- a/libc/nt/user32/CreateCursor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateCursor,CreateCursor,1604 diff --git a/libc/nt/user32/CreateDCompositionHwndTarget.S b/libc/nt/user32/CreateDCompositionHwndTarget.S deleted file mode 100644 index 8b90c9472..000000000 --- a/libc/nt/user32/CreateDCompositionHwndTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateDCompositionHwndTarget,CreateDCompositionHwndTarget,1605 diff --git a/libc/nt/user32/CreateDesktopExW.S b/libc/nt/user32/CreateDesktopExW.S deleted file mode 100644 index aabf174af..000000000 --- a/libc/nt/user32/CreateDesktopExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateDesktopExW,CreateDesktopExW,1608 diff --git a/libc/nt/user32/CreateDesktopW.S b/libc/nt/user32/CreateDesktopW.S deleted file mode 100644 index 759da166c..000000000 --- a/libc/nt/user32/CreateDesktopW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateDesktopW,CreateDesktopW,1609 diff --git a/libc/nt/user32/CreateDialogIndirectParamAorW.S b/libc/nt/user32/CreateDialogIndirectParamAorW.S deleted file mode 100644 index 5b22e0650..000000000 --- a/libc/nt/user32/CreateDialogIndirectParamAorW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateDialogIndirectParamAorW,CreateDialogIndirectParamAorW,1611 diff --git a/libc/nt/user32/CreateDialogIndirectParamW.S b/libc/nt/user32/CreateDialogIndirectParamW.S deleted file mode 100644 index fde87f532..000000000 --- a/libc/nt/user32/CreateDialogIndirectParamW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateDialogIndirectParamW,CreateDialogIndirectParamW,1612 diff --git a/libc/nt/user32/CreateDialogParamW.S b/libc/nt/user32/CreateDialogParamW.S deleted file mode 100644 index 885f28622..000000000 --- a/libc/nt/user32/CreateDialogParamW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateDialogParamW,CreateDialogParamW,1614 diff --git a/libc/nt/user32/CreateIcon.S b/libc/nt/user32/CreateIcon.S deleted file mode 100644 index 47d3d6ed1..000000000 --- a/libc/nt/user32/CreateIcon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateIcon,CreateIcon,1615 diff --git a/libc/nt/user32/CreateIconFromResource.S b/libc/nt/user32/CreateIconFromResource.S deleted file mode 100644 index 0918dd790..000000000 --- a/libc/nt/user32/CreateIconFromResource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateIconFromResource,CreateIconFromResource,1616 diff --git a/libc/nt/user32/CreateIconFromResourceEx.S b/libc/nt/user32/CreateIconFromResourceEx.S deleted file mode 100644 index 3b95e1b4f..000000000 --- a/libc/nt/user32/CreateIconFromResourceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateIconFromResourceEx,CreateIconFromResourceEx,1617 diff --git a/libc/nt/user32/CreateIconIndirect.S b/libc/nt/user32/CreateIconIndirect.S index d13de35be..138bf8248 100644 --- a/libc/nt/user32/CreateIconIndirect.S +++ b/libc/nt/user32/CreateIconIndirect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_CreateIconIndirect,CreateIconIndirect,1618 +.imp user32,__imp_CreateIconIndirect,CreateIconIndirect .text.windows .ftrace1 diff --git a/libc/nt/user32/CreateMDIWindowW.S b/libc/nt/user32/CreateMDIWindowW.S deleted file mode 100644 index 95fb8427e..000000000 --- a/libc/nt/user32/CreateMDIWindowW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateMDIWindowW,CreateMDIWindowW,1620 diff --git a/libc/nt/user32/CreateMenu.S b/libc/nt/user32/CreateMenu.S index 31b3840d2..2c2755836 100644 --- a/libc/nt/user32/CreateMenu.S +++ b/libc/nt/user32/CreateMenu.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_CreateMenu,CreateMenu,1621 +.imp user32,__imp_CreateMenu,CreateMenu .text.windows .ftrace1 diff --git a/libc/nt/user32/CreatePalmRejectionDelayZone.S b/libc/nt/user32/CreatePalmRejectionDelayZone.S deleted file mode 100644 index 51b737217..000000000 --- a/libc/nt/user32/CreatePalmRejectionDelayZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreatePalmRejectionDelayZone,CreatePalmRejectionDelayZone,1503 diff --git a/libc/nt/user32/CreatePopupMenu.S b/libc/nt/user32/CreatePopupMenu.S index 8732e6fb8..5ff63a9b4 100644 --- a/libc/nt/user32/CreatePopupMenu.S +++ b/libc/nt/user32/CreatePopupMenu.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_CreatePopupMenu,CreatePopupMenu,1622 +.imp user32,__imp_CreatePopupMenu,CreatePopupMenu .text.windows .ftrace1 diff --git a/libc/nt/user32/CreateSystemThreads.S b/libc/nt/user32/CreateSystemThreads.S deleted file mode 100644 index b9b1c82a4..000000000 --- a/libc/nt/user32/CreateSystemThreads.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateSystemThreads,CreateSystemThreads,1623 diff --git a/libc/nt/user32/CreateWindowExW.S b/libc/nt/user32/CreateWindowExW.S index 0d9cd64e9..9491dde03 100644 --- a/libc/nt/user32/CreateWindowExW.S +++ b/libc/nt/user32/CreateWindowExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_CreateWindowExW,CreateWindowExW,1625 +.imp user32,__imp_CreateWindowExW,CreateWindowExW .text.windows .ftrace1 diff --git a/libc/nt/user32/CreateWindowInBand.S b/libc/nt/user32/CreateWindowInBand.S deleted file mode 100644 index bb91df21c..000000000 --- a/libc/nt/user32/CreateWindowInBand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateWindowInBand,CreateWindowInBand,1626 diff --git a/libc/nt/user32/CreateWindowInBandEx.S b/libc/nt/user32/CreateWindowInBandEx.S deleted file mode 100644 index 00be7b7fb..000000000 --- a/libc/nt/user32/CreateWindowInBandEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateWindowInBandEx,CreateWindowInBandEx,1627 diff --git a/libc/nt/user32/CreateWindowIndirect.S b/libc/nt/user32/CreateWindowIndirect.S deleted file mode 100644 index 10f1fa859..000000000 --- a/libc/nt/user32/CreateWindowIndirect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateWindowIndirect,CreateWindowIndirect,1628 diff --git a/libc/nt/user32/CreateWindowStationW.S b/libc/nt/user32/CreateWindowStationW.S deleted file mode 100644 index 4d44e189d..000000000 --- a/libc/nt/user32/CreateWindowStationW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CreateWindowStationW,CreateWindowStationW,1630 diff --git a/libc/nt/user32/CsrBroadcastSystemMessageExW.S b/libc/nt/user32/CsrBroadcastSystemMessageExW.S deleted file mode 100644 index fa1ba8817..000000000 --- a/libc/nt/user32/CsrBroadcastSystemMessageExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CsrBroadcastSystemMessageExW,CsrBroadcastSystemMessageExW,1631 diff --git a/libc/nt/user32/CtxInitUser32.S b/libc/nt/user32/CtxInitUser32.S deleted file mode 100644 index 428615f96..000000000 --- a/libc/nt/user32/CtxInitUser32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_CtxInitUser32,CtxInitUser32,1632 diff --git a/libc/nt/user32/DWMBindCursorToOutputConfig.S b/libc/nt/user32/DWMBindCursorToOutputConfig.S deleted file mode 100644 index cdc3cb1a5..000000000 --- a/libc/nt/user32/DWMBindCursorToOutputConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DWMBindCursorToOutputConfig,DWMBindCursorToOutputConfig,1633 diff --git a/libc/nt/user32/DWMCommitInputSystemOutputConfig.S b/libc/nt/user32/DWMCommitInputSystemOutputConfig.S deleted file mode 100644 index 50fa6a5bf..000000000 --- a/libc/nt/user32/DWMCommitInputSystemOutputConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DWMCommitInputSystemOutputConfig,DWMCommitInputSystemOutputConfig,1634 diff --git a/libc/nt/user32/DWMSetCursorOrientation.S b/libc/nt/user32/DWMSetCursorOrientation.S deleted file mode 100644 index 35393cc16..000000000 --- a/libc/nt/user32/DWMSetCursorOrientation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DWMSetCursorOrientation,DWMSetCursorOrientation,1635 diff --git a/libc/nt/user32/DWMSetInputSystemOutputConfig.S b/libc/nt/user32/DWMSetInputSystemOutputConfig.S deleted file mode 100644 index d711e8902..000000000 --- a/libc/nt/user32/DWMSetInputSystemOutputConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DWMSetInputSystemOutputConfig,DWMSetInputSystemOutputConfig,1636 diff --git a/libc/nt/user32/DdeAbandonTransaction.S b/libc/nt/user32/DdeAbandonTransaction.S deleted file mode 100644 index d55a0b2e4..000000000 --- a/libc/nt/user32/DdeAbandonTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeAbandonTransaction,DdeAbandonTransaction,1637 diff --git a/libc/nt/user32/DdeAccessData.S b/libc/nt/user32/DdeAccessData.S deleted file mode 100644 index 4abc47a78..000000000 --- a/libc/nt/user32/DdeAccessData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeAccessData,DdeAccessData,1638 diff --git a/libc/nt/user32/DdeAddData.S b/libc/nt/user32/DdeAddData.S deleted file mode 100644 index 4a2594755..000000000 --- a/libc/nt/user32/DdeAddData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeAddData,DdeAddData,1639 diff --git a/libc/nt/user32/DdeClientTransaction.S b/libc/nt/user32/DdeClientTransaction.S deleted file mode 100644 index a1400000b..000000000 --- a/libc/nt/user32/DdeClientTransaction.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeClientTransaction,DdeClientTransaction,1640 diff --git a/libc/nt/user32/DdeCmpStringHandles.S b/libc/nt/user32/DdeCmpStringHandles.S deleted file mode 100644 index 83454a4aa..000000000 --- a/libc/nt/user32/DdeCmpStringHandles.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeCmpStringHandles,DdeCmpStringHandles,1641 diff --git a/libc/nt/user32/DdeConnect.S b/libc/nt/user32/DdeConnect.S deleted file mode 100644 index 2811eb63a..000000000 --- a/libc/nt/user32/DdeConnect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeConnect,DdeConnect,1642 diff --git a/libc/nt/user32/DdeConnectList.S b/libc/nt/user32/DdeConnectList.S deleted file mode 100644 index b3fcb9b8a..000000000 --- a/libc/nt/user32/DdeConnectList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeConnectList,DdeConnectList,1643 diff --git a/libc/nt/user32/DdeCreateDataHandle.S b/libc/nt/user32/DdeCreateDataHandle.S deleted file mode 100644 index 8a549aa47..000000000 --- a/libc/nt/user32/DdeCreateDataHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeCreateDataHandle,DdeCreateDataHandle,1644 diff --git a/libc/nt/user32/DdeCreateStringHandleW.S b/libc/nt/user32/DdeCreateStringHandleW.S deleted file mode 100644 index 661b14c0e..000000000 --- a/libc/nt/user32/DdeCreateStringHandleW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeCreateStringHandleW,DdeCreateStringHandleW,1646 diff --git a/libc/nt/user32/DdeDisconnect.S b/libc/nt/user32/DdeDisconnect.S deleted file mode 100644 index a1dc666f8..000000000 --- a/libc/nt/user32/DdeDisconnect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeDisconnect,DdeDisconnect,1647 diff --git a/libc/nt/user32/DdeDisconnectList.S b/libc/nt/user32/DdeDisconnectList.S deleted file mode 100644 index cbadfe318..000000000 --- a/libc/nt/user32/DdeDisconnectList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeDisconnectList,DdeDisconnectList,1648 diff --git a/libc/nt/user32/DdeEnableCallback.S b/libc/nt/user32/DdeEnableCallback.S deleted file mode 100644 index 6f3b3689e..000000000 --- a/libc/nt/user32/DdeEnableCallback.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeEnableCallback,DdeEnableCallback,1649 diff --git a/libc/nt/user32/DdeFreeDataHandle.S b/libc/nt/user32/DdeFreeDataHandle.S deleted file mode 100644 index 511019fb6..000000000 --- a/libc/nt/user32/DdeFreeDataHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeFreeDataHandle,DdeFreeDataHandle,1650 diff --git a/libc/nt/user32/DdeFreeStringHandle.S b/libc/nt/user32/DdeFreeStringHandle.S deleted file mode 100644 index a3abbbb8a..000000000 --- a/libc/nt/user32/DdeFreeStringHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeFreeStringHandle,DdeFreeStringHandle,1651 diff --git a/libc/nt/user32/DdeGetData.S b/libc/nt/user32/DdeGetData.S deleted file mode 100644 index 26b399f06..000000000 --- a/libc/nt/user32/DdeGetData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeGetData,DdeGetData,1652 diff --git a/libc/nt/user32/DdeGetLastError.S b/libc/nt/user32/DdeGetLastError.S deleted file mode 100644 index cec47abac..000000000 --- a/libc/nt/user32/DdeGetLastError.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeGetLastError,DdeGetLastError,1653 diff --git a/libc/nt/user32/DdeGetQualityOfService.S b/libc/nt/user32/DdeGetQualityOfService.S deleted file mode 100644 index c5782f4a3..000000000 --- a/libc/nt/user32/DdeGetQualityOfService.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeGetQualityOfService,DdeGetQualityOfService,1654 diff --git a/libc/nt/user32/DdeImpersonateClient.S b/libc/nt/user32/DdeImpersonateClient.S deleted file mode 100644 index a1ed9b284..000000000 --- a/libc/nt/user32/DdeImpersonateClient.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeImpersonateClient,DdeImpersonateClient,1655 diff --git a/libc/nt/user32/DdeInitializeW.S b/libc/nt/user32/DdeInitializeW.S deleted file mode 100644 index bf762b51c..000000000 --- a/libc/nt/user32/DdeInitializeW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeInitializeW,DdeInitializeW,1657 diff --git a/libc/nt/user32/DdeKeepStringHandle.S b/libc/nt/user32/DdeKeepStringHandle.S deleted file mode 100644 index dd4a8af29..000000000 --- a/libc/nt/user32/DdeKeepStringHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeKeepStringHandle,DdeKeepStringHandle,1658 diff --git a/libc/nt/user32/DdeNameService.S b/libc/nt/user32/DdeNameService.S deleted file mode 100644 index 0a27047f0..000000000 --- a/libc/nt/user32/DdeNameService.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeNameService,DdeNameService,1659 diff --git a/libc/nt/user32/DdePostAdvise.S b/libc/nt/user32/DdePostAdvise.S deleted file mode 100644 index b56224f80..000000000 --- a/libc/nt/user32/DdePostAdvise.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdePostAdvise,DdePostAdvise,1660 diff --git a/libc/nt/user32/DdeQueryConvInfo.S b/libc/nt/user32/DdeQueryConvInfo.S deleted file mode 100644 index 5b313e2e4..000000000 --- a/libc/nt/user32/DdeQueryConvInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeQueryConvInfo,DdeQueryConvInfo,1661 diff --git a/libc/nt/user32/DdeQueryNextServer.S b/libc/nt/user32/DdeQueryNextServer.S deleted file mode 100644 index 3e0630062..000000000 --- a/libc/nt/user32/DdeQueryNextServer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeQueryNextServer,DdeQueryNextServer,1662 diff --git a/libc/nt/user32/DdeQueryStringW.S b/libc/nt/user32/DdeQueryStringW.S deleted file mode 100644 index 7ba3cf57e..000000000 --- a/libc/nt/user32/DdeQueryStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeQueryStringW,DdeQueryStringW,1664 diff --git a/libc/nt/user32/DdeReconnect.S b/libc/nt/user32/DdeReconnect.S deleted file mode 100644 index 073233e64..000000000 --- a/libc/nt/user32/DdeReconnect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeReconnect,DdeReconnect,1665 diff --git a/libc/nt/user32/DdeSetQualityOfService.S b/libc/nt/user32/DdeSetQualityOfService.S deleted file mode 100644 index 60d8ee6e3..000000000 --- a/libc/nt/user32/DdeSetQualityOfService.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeSetQualityOfService,DdeSetQualityOfService,1666 diff --git a/libc/nt/user32/DdeSetUserHandle.S b/libc/nt/user32/DdeSetUserHandle.S deleted file mode 100644 index 2529d6dc2..000000000 --- a/libc/nt/user32/DdeSetUserHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeSetUserHandle,DdeSetUserHandle,1667 diff --git a/libc/nt/user32/DdeUnaccessData.S b/libc/nt/user32/DdeUnaccessData.S deleted file mode 100644 index 8cc633f4f..000000000 --- a/libc/nt/user32/DdeUnaccessData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeUnaccessData,DdeUnaccessData,1668 diff --git a/libc/nt/user32/DdeUninitialize.S b/libc/nt/user32/DdeUninitialize.S deleted file mode 100644 index e46386131..000000000 --- a/libc/nt/user32/DdeUninitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DdeUninitialize,DdeUninitialize,1669 diff --git a/libc/nt/user32/DefFrameProcW.S b/libc/nt/user32/DefFrameProcW.S deleted file mode 100644 index dfe8e4016..000000000 --- a/libc/nt/user32/DefFrameProcW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DefFrameProcW,DefFrameProcW,1673 diff --git a/libc/nt/user32/DefMDIChildProcW.S b/libc/nt/user32/DefMDIChildProcW.S deleted file mode 100644 index c188b3361..000000000 --- a/libc/nt/user32/DefMDIChildProcW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DefMDIChildProcW,DefMDIChildProcW,1675 diff --git a/libc/nt/user32/DefRawInputProc.S b/libc/nt/user32/DefRawInputProc.S deleted file mode 100644 index 12edf8714..000000000 --- a/libc/nt/user32/DefRawInputProc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DefRawInputProc,DefRawInputProc,1676 diff --git a/libc/nt/user32/DefWindowProcW.S b/libc/nt/user32/DefWindowProcW.S index 6573118a6..798b00313 100644 --- a/libc/nt/user32/DefWindowProcW.S +++ b/libc/nt/user32/DefWindowProcW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_DefWindowProcW,DefWindowProcW,174 +.imp user32,__imp_DefWindowProcW,DefWindowProcW .text.windows .ftrace1 diff --git a/libc/nt/user32/DeferWindowPos.S b/libc/nt/user32/DeferWindowPos.S deleted file mode 100644 index 1e07e7649..000000000 --- a/libc/nt/user32/DeferWindowPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DeferWindowPos,DeferWindowPos,1679 diff --git a/libc/nt/user32/DeferWindowPosAndBand.S b/libc/nt/user32/DeferWindowPosAndBand.S deleted file mode 100644 index 0ac4b6bc9..000000000 --- a/libc/nt/user32/DeferWindowPosAndBand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DeferWindowPosAndBand,DeferWindowPosAndBand,1680 diff --git a/libc/nt/user32/DelegateInput.S b/libc/nt/user32/DelegateInput.S deleted file mode 100644 index f9f3c3a72..000000000 --- a/libc/nt/user32/DelegateInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DelegateInput,DelegateInput,2503 diff --git a/libc/nt/user32/DeleteMenu.S b/libc/nt/user32/DeleteMenu.S index 33902b9a1..5be482983 100644 --- a/libc/nt/user32/DeleteMenu.S +++ b/libc/nt/user32/DeleteMenu.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_DeleteMenu,DeleteMenu,1681 +.imp user32,__imp_DeleteMenu,DeleteMenu .text.windows .ftrace1 diff --git a/libc/nt/user32/DeregisterShellHookWindow.S b/libc/nt/user32/DeregisterShellHookWindow.S deleted file mode 100644 index 373741e95..000000000 --- a/libc/nt/user32/DeregisterShellHookWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DeregisterShellHookWindow,DeregisterShellHookWindow,1682 diff --git a/libc/nt/user32/DestroyAcceleratorTable.S b/libc/nt/user32/DestroyAcceleratorTable.S deleted file mode 100644 index 25f6e4eb8..000000000 --- a/libc/nt/user32/DestroyAcceleratorTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DestroyAcceleratorTable,DestroyAcceleratorTable,1683 diff --git a/libc/nt/user32/DestroyCaret.S b/libc/nt/user32/DestroyCaret.S deleted file mode 100644 index dbd3cf0d6..000000000 --- a/libc/nt/user32/DestroyCaret.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DestroyCaret,DestroyCaret,1684 diff --git a/libc/nt/user32/DestroyCursor.S b/libc/nt/user32/DestroyCursor.S deleted file mode 100644 index 9db84f860..000000000 --- a/libc/nt/user32/DestroyCursor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DestroyCursor,DestroyCursor,1685 diff --git a/libc/nt/user32/DestroyDCompositionHwndTarget.S b/libc/nt/user32/DestroyDCompositionHwndTarget.S deleted file mode 100644 index 33c9d80c0..000000000 --- a/libc/nt/user32/DestroyDCompositionHwndTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DestroyDCompositionHwndTarget,DestroyDCompositionHwndTarget,1686 diff --git a/libc/nt/user32/DestroyIcon.S b/libc/nt/user32/DestroyIcon.S index e68585df9..8990343c6 100644 --- a/libc/nt/user32/DestroyIcon.S +++ b/libc/nt/user32/DestroyIcon.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_DestroyIcon,DestroyIcon,1687 +.imp user32,__imp_DestroyIcon,DestroyIcon .text.windows .ftrace1 diff --git a/libc/nt/user32/DestroyMenu.S b/libc/nt/user32/DestroyMenu.S index 1bd78d00c..c7c543012 100644 --- a/libc/nt/user32/DestroyMenu.S +++ b/libc/nt/user32/DestroyMenu.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_DestroyMenu,DestroyMenu,1688 +.imp user32,__imp_DestroyMenu,DestroyMenu .text.windows .ftrace1 diff --git a/libc/nt/user32/DestroyPalmRejectionDelayZone.S b/libc/nt/user32/DestroyPalmRejectionDelayZone.S deleted file mode 100644 index ace502b9e..000000000 --- a/libc/nt/user32/DestroyPalmRejectionDelayZone.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DestroyPalmRejectionDelayZone,DestroyPalmRejectionDelayZone,1504 diff --git a/libc/nt/user32/DestroyReasons.S b/libc/nt/user32/DestroyReasons.S deleted file mode 100644 index 29700cf58..000000000 --- a/libc/nt/user32/DestroyReasons.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DestroyReasons,DestroyReasons,1689 diff --git a/libc/nt/user32/DestroyWindow.S b/libc/nt/user32/DestroyWindow.S index b072fa583..10e9e41c8 100644 --- a/libc/nt/user32/DestroyWindow.S +++ b/libc/nt/user32/DestroyWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_DestroyWindow,DestroyWindow,1690 +.imp user32,__imp_DestroyWindow,DestroyWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/DialogBoxIndirectParamAorW.S b/libc/nt/user32/DialogBoxIndirectParamAorW.S deleted file mode 100644 index 6b7829a02..000000000 --- a/libc/nt/user32/DialogBoxIndirectParamAorW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DialogBoxIndirectParamAorW,DialogBoxIndirectParamAorW,1692 diff --git a/libc/nt/user32/DialogBoxIndirectParamW.S b/libc/nt/user32/DialogBoxIndirectParamW.S deleted file mode 100644 index 9c5e50abe..000000000 --- a/libc/nt/user32/DialogBoxIndirectParamW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DialogBoxIndirectParamW,DialogBoxIndirectParamW,1693 diff --git a/libc/nt/user32/DialogBoxParamW.S b/libc/nt/user32/DialogBoxParamW.S deleted file mode 100644 index d9530c187..000000000 --- a/libc/nt/user32/DialogBoxParamW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DialogBoxParamW,DialogBoxParamW,1695 diff --git a/libc/nt/user32/DisableProcessWindowsGhosting.S b/libc/nt/user32/DisableProcessWindowsGhosting.S deleted file mode 100644 index 0312f396b..000000000 --- a/libc/nt/user32/DisableProcessWindowsGhosting.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DisableProcessWindowsGhosting,DisableProcessWindowsGhosting,1696 diff --git a/libc/nt/user32/DispatchMessageW.S b/libc/nt/user32/DispatchMessageW.S index 2130d709b..c6408a0ba 100644 --- a/libc/nt/user32/DispatchMessageW.S +++ b/libc/nt/user32/DispatchMessageW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_DispatchMessageW,DispatchMessageW,1698 +.imp user32,__imp_DispatchMessageW,DispatchMessageW .text.windows .ftrace1 diff --git a/libc/nt/user32/DisplayConfigGetDeviceInfo.S b/libc/nt/user32/DisplayConfigGetDeviceInfo.S deleted file mode 100644 index ae9366eaa..000000000 --- a/libc/nt/user32/DisplayConfigGetDeviceInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DisplayConfigGetDeviceInfo,DisplayConfigGetDeviceInfo,1699 diff --git a/libc/nt/user32/DisplayConfigSetDeviceInfo.S b/libc/nt/user32/DisplayConfigSetDeviceInfo.S deleted file mode 100644 index a0061a983..000000000 --- a/libc/nt/user32/DisplayConfigSetDeviceInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DisplayConfigSetDeviceInfo,DisplayConfigSetDeviceInfo,1700 diff --git a/libc/nt/user32/DisplayExitWindowsWarnings.S b/libc/nt/user32/DisplayExitWindowsWarnings.S deleted file mode 100644 index 2f3a5fd3d..000000000 --- a/libc/nt/user32/DisplayExitWindowsWarnings.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DisplayExitWindowsWarnings,DisplayExitWindowsWarnings,1701 diff --git a/libc/nt/user32/DlgDirListComboBoxW.S b/libc/nt/user32/DlgDirListComboBoxW.S deleted file mode 100644 index 62e211b1c..000000000 --- a/libc/nt/user32/DlgDirListComboBoxW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DlgDirListComboBoxW,DlgDirListComboBoxW,1704 diff --git a/libc/nt/user32/DlgDirListW.S b/libc/nt/user32/DlgDirListW.S deleted file mode 100644 index d5c38cf78..000000000 --- a/libc/nt/user32/DlgDirListW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DlgDirListW,DlgDirListW,1705 diff --git a/libc/nt/user32/DlgDirSelectComboBoxExW.S b/libc/nt/user32/DlgDirSelectComboBoxExW.S deleted file mode 100644 index 41d9ea386..000000000 --- a/libc/nt/user32/DlgDirSelectComboBoxExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DlgDirSelectComboBoxExW,DlgDirSelectComboBoxExW,1707 diff --git a/libc/nt/user32/DlgDirSelectExW.S b/libc/nt/user32/DlgDirSelectExW.S deleted file mode 100644 index cc34ad806..000000000 --- a/libc/nt/user32/DlgDirSelectExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DlgDirSelectExW,DlgDirSelectExW,1709 diff --git a/libc/nt/user32/DoSoundConnect.S b/libc/nt/user32/DoSoundConnect.S deleted file mode 100644 index 93942326f..000000000 --- a/libc/nt/user32/DoSoundConnect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DoSoundConnect,DoSoundConnect,1710 diff --git a/libc/nt/user32/DoSoundDisconnect.S b/libc/nt/user32/DoSoundDisconnect.S deleted file mode 100644 index 6b6a98dbc..000000000 --- a/libc/nt/user32/DoSoundDisconnect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DoSoundDisconnect,DoSoundDisconnect,1711 diff --git a/libc/nt/user32/DragDetect.S b/libc/nt/user32/DragDetect.S deleted file mode 100644 index 8bce9035b..000000000 --- a/libc/nt/user32/DragDetect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DragDetect,DragDetect,1712 diff --git a/libc/nt/user32/DragObject.S b/libc/nt/user32/DragObject.S deleted file mode 100644 index f1be23e99..000000000 --- a/libc/nt/user32/DragObject.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DragObject,DragObject,1713 diff --git a/libc/nt/user32/DrawAnimatedRects.S b/libc/nt/user32/DrawAnimatedRects.S deleted file mode 100644 index eb67603f7..000000000 --- a/libc/nt/user32/DrawAnimatedRects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawAnimatedRects,DrawAnimatedRects,1714 diff --git a/libc/nt/user32/DrawCaption.S b/libc/nt/user32/DrawCaption.S deleted file mode 100644 index 461ee8eca..000000000 --- a/libc/nt/user32/DrawCaption.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawCaption,DrawCaption,1715 diff --git a/libc/nt/user32/DrawCaptionTempW.S b/libc/nt/user32/DrawCaptionTempW.S deleted file mode 100644 index 1165aa70e..000000000 --- a/libc/nt/user32/DrawCaptionTempW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawCaptionTempW,DrawCaptionTempW,1717 diff --git a/libc/nt/user32/DrawEdge.S b/libc/nt/user32/DrawEdge.S deleted file mode 100644 index c5466b19c..000000000 --- a/libc/nt/user32/DrawEdge.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawEdge,DrawEdge,1718 diff --git a/libc/nt/user32/DrawFocusRect.S b/libc/nt/user32/DrawFocusRect.S deleted file mode 100644 index 3f0a52b06..000000000 --- a/libc/nt/user32/DrawFocusRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawFocusRect,DrawFocusRect,1719 diff --git a/libc/nt/user32/DrawFrame.S b/libc/nt/user32/DrawFrame.S deleted file mode 100644 index 4b2362419..000000000 --- a/libc/nt/user32/DrawFrame.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawFrame,DrawFrame,1720 diff --git a/libc/nt/user32/DrawFrameControl.S b/libc/nt/user32/DrawFrameControl.S deleted file mode 100644 index ce37a9d90..000000000 --- a/libc/nt/user32/DrawFrameControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawFrameControl,DrawFrameControl,1721 diff --git a/libc/nt/user32/DrawIcon.S b/libc/nt/user32/DrawIcon.S deleted file mode 100644 index de7f4b57b..000000000 --- a/libc/nt/user32/DrawIcon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawIcon,DrawIcon,1722 diff --git a/libc/nt/user32/DrawIconEx.S b/libc/nt/user32/DrawIconEx.S deleted file mode 100644 index 36ea3213f..000000000 --- a/libc/nt/user32/DrawIconEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawIconEx,DrawIconEx,1723 diff --git a/libc/nt/user32/DrawMenuBar.S b/libc/nt/user32/DrawMenuBar.S deleted file mode 100644 index 5f6d04dda..000000000 --- a/libc/nt/user32/DrawMenuBar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawMenuBar,DrawMenuBar,1724 diff --git a/libc/nt/user32/DrawMenuBarTemp.S b/libc/nt/user32/DrawMenuBarTemp.S deleted file mode 100644 index 01f324706..000000000 --- a/libc/nt/user32/DrawMenuBarTemp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawMenuBarTemp,DrawMenuBarTemp,1725 diff --git a/libc/nt/user32/DrawStateW.S b/libc/nt/user32/DrawStateW.S deleted file mode 100644 index e9aec278e..000000000 --- a/libc/nt/user32/DrawStateW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DrawStateW,DrawStateW,1727 diff --git a/libc/nt/user32/DrawTextExW.S b/libc/nt/user32/DrawTextExW.S index 5d997769d..6e02da576 100644 --- a/libc/nt/user32/DrawTextExW.S +++ b/libc/nt/user32/DrawTextExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_DrawTextExW,DrawTextExW,1730 +.imp user32,__imp_DrawTextExW,DrawTextExW .text.windows .ftrace1 diff --git a/libc/nt/user32/DrawTextW.S b/libc/nt/user32/DrawTextW.S index 20c729aeb..104ef0317 100644 --- a/libc/nt/user32/DrawTextW.S +++ b/libc/nt/user32/DrawTextW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_DrawTextW,DrawTextW,1731 +.imp user32,__imp_DrawTextW,DrawTextW .text.windows .ftrace1 diff --git a/libc/nt/user32/DwmGetDxRgn.S b/libc/nt/user32/DwmGetDxRgn.S deleted file mode 100644 index 6f8a6d85e..000000000 --- a/libc/nt/user32/DwmGetDxRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DwmGetDxRgn,DwmGetDxRgn,1553 diff --git a/libc/nt/user32/DwmGetDxSharedSurface.S b/libc/nt/user32/DwmGetDxSharedSurface.S deleted file mode 100644 index fb9affb4f..000000000 --- a/libc/nt/user32/DwmGetDxSharedSurface.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DwmGetDxSharedSurface,DwmGetDxSharedSurface,1732 diff --git a/libc/nt/user32/DwmGetRemoteSessionOcclusionEvent.S b/libc/nt/user32/DwmGetRemoteSessionOcclusionEvent.S deleted file mode 100644 index 3630ec855..000000000 --- a/libc/nt/user32/DwmGetRemoteSessionOcclusionEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DwmGetRemoteSessionOcclusionEvent,DwmGetRemoteSessionOcclusionEvent,1733 diff --git a/libc/nt/user32/DwmGetRemoteSessionOcclusionState.S b/libc/nt/user32/DwmGetRemoteSessionOcclusionState.S deleted file mode 100644 index 135dc1319..000000000 --- a/libc/nt/user32/DwmGetRemoteSessionOcclusionState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DwmGetRemoteSessionOcclusionState,DwmGetRemoteSessionOcclusionState,1734 diff --git a/libc/nt/user32/DwmKernelShutdown.S b/libc/nt/user32/DwmKernelShutdown.S deleted file mode 100644 index ba853e8da..000000000 --- a/libc/nt/user32/DwmKernelShutdown.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DwmKernelShutdown,DwmKernelShutdown,1735 diff --git a/libc/nt/user32/DwmKernelStartup.S b/libc/nt/user32/DwmKernelStartup.S deleted file mode 100644 index 233c64077..000000000 --- a/libc/nt/user32/DwmKernelStartup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DwmKernelStartup,DwmKernelStartup,1736 diff --git a/libc/nt/user32/DwmLockScreenUpdates.S b/libc/nt/user32/DwmLockScreenUpdates.S deleted file mode 100644 index e7ed5ca4b..000000000 --- a/libc/nt/user32/DwmLockScreenUpdates.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DwmLockScreenUpdates,DwmLockScreenUpdates,1737 diff --git a/libc/nt/user32/DwmValidateWindow.S b/libc/nt/user32/DwmValidateWindow.S deleted file mode 100644 index 499cea3f1..000000000 --- a/libc/nt/user32/DwmValidateWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_DwmValidateWindow,DwmValidateWindow,1738 diff --git a/libc/nt/user32/EditWndProc.S b/libc/nt/user32/EditWndProc.S deleted file mode 100644 index 56ce55492..000000000 --- a/libc/nt/user32/EditWndProc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EditWndProc,EditWndProc,1739 diff --git a/libc/nt/user32/EmptyClipboard.S b/libc/nt/user32/EmptyClipboard.S deleted file mode 100644 index aac3de022..000000000 --- a/libc/nt/user32/EmptyClipboard.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EmptyClipboard,EmptyClipboard,1704 diff --git a/libc/nt/user32/EnableMenuItem.S b/libc/nt/user32/EnableMenuItem.S deleted file mode 100644 index 0897759c7..000000000 --- a/libc/nt/user32/EnableMenuItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnableMenuItem,EnableMenuItem,1741 diff --git a/libc/nt/user32/EnableMouseInPointer.S b/libc/nt/user32/EnableMouseInPointer.S deleted file mode 100644 index 90602dcd0..000000000 --- a/libc/nt/user32/EnableMouseInPointer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnableMouseInPointer,EnableMouseInPointer,1742 diff --git a/libc/nt/user32/EnableNonClientDpiScaling.S b/libc/nt/user32/EnableNonClientDpiScaling.S deleted file mode 100644 index 7a1c5ed7b..000000000 --- a/libc/nt/user32/EnableNonClientDpiScaling.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnableNonClientDpiScaling,EnableNonClientDpiScaling,1743 diff --git a/libc/nt/user32/EnableOneCoreTransformMode.S b/libc/nt/user32/EnableOneCoreTransformMode.S deleted file mode 100644 index 62845be64..000000000 --- a/libc/nt/user32/EnableOneCoreTransformMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnableOneCoreTransformMode,EnableOneCoreTransformMode,1744 diff --git a/libc/nt/user32/EnableScrollBar.S b/libc/nt/user32/EnableScrollBar.S deleted file mode 100644 index 722989e05..000000000 --- a/libc/nt/user32/EnableScrollBar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnableScrollBar,EnableScrollBar,1745 diff --git a/libc/nt/user32/EnableSessionForMMCSS.S b/libc/nt/user32/EnableSessionForMMCSS.S deleted file mode 100644 index 61499621f..000000000 --- a/libc/nt/user32/EnableSessionForMMCSS.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnableSessionForMMCSS,EnableSessionForMMCSS,1746 diff --git a/libc/nt/user32/EnableWindow.S b/libc/nt/user32/EnableWindow.S deleted file mode 100644 index 254781ec3..000000000 --- a/libc/nt/user32/EnableWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnableWindow,EnableWindow,1747 diff --git a/libc/nt/user32/EndDeferWindowPos.S b/libc/nt/user32/EndDeferWindowPos.S deleted file mode 100644 index 3407b6ec6..000000000 --- a/libc/nt/user32/EndDeferWindowPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EndDeferWindowPos,EndDeferWindowPos,1748 diff --git a/libc/nt/user32/EndDeferWindowPosEx.S b/libc/nt/user32/EndDeferWindowPosEx.S deleted file mode 100644 index 8a7180920..000000000 --- a/libc/nt/user32/EndDeferWindowPosEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EndDeferWindowPosEx,EndDeferWindowPosEx,1749 diff --git a/libc/nt/user32/EndDialog.S b/libc/nt/user32/EndDialog.S deleted file mode 100644 index 658e08f22..000000000 --- a/libc/nt/user32/EndDialog.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EndDialog,EndDialog,1750 diff --git a/libc/nt/user32/EndMenu.S b/libc/nt/user32/EndMenu.S deleted file mode 100644 index efff62531..000000000 --- a/libc/nt/user32/EndMenu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EndMenu,EndMenu,1751 diff --git a/libc/nt/user32/EndPaint.S b/libc/nt/user32/EndPaint.S index 1f998c9ee..631394e0d 100644 --- a/libc/nt/user32/EndPaint.S +++ b/libc/nt/user32/EndPaint.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_EndPaint,EndPaint,1752 +.imp user32,__imp_EndPaint,EndPaint .text.windows .ftrace1 diff --git a/libc/nt/user32/EndTask.S b/libc/nt/user32/EndTask.S deleted file mode 100644 index 2a28bccf4..000000000 --- a/libc/nt/user32/EndTask.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EndTask,EndTask,1753 diff --git a/libc/nt/user32/EnterReaderModeHelper.S b/libc/nt/user32/EnterReaderModeHelper.S deleted file mode 100644 index aca99659d..000000000 --- a/libc/nt/user32/EnterReaderModeHelper.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnterReaderModeHelper,EnterReaderModeHelper,1754 diff --git a/libc/nt/user32/EnumChildWindows.S b/libc/nt/user32/EnumChildWindows.S index 43d0cc02c..528023daf 100644 --- a/libc/nt/user32/EnumChildWindows.S +++ b/libc/nt/user32/EnumChildWindows.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_EnumChildWindows,EnumChildWindows,1755 +.imp user32,__imp_EnumChildWindows,EnumChildWindows .text.windows .ftrace1 diff --git a/libc/nt/user32/EnumClipboardFormats.S b/libc/nt/user32/EnumClipboardFormats.S deleted file mode 100644 index ba127a34c..000000000 --- a/libc/nt/user32/EnumClipboardFormats.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumClipboardFormats,EnumClipboardFormats,1756 diff --git a/libc/nt/user32/EnumDesktopWindows.S b/libc/nt/user32/EnumDesktopWindows.S deleted file mode 100644 index 50edd5b04..000000000 --- a/libc/nt/user32/EnumDesktopWindows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumDesktopWindows,EnumDesktopWindows,1757 diff --git a/libc/nt/user32/EnumDesktopsW.S b/libc/nt/user32/EnumDesktopsW.S deleted file mode 100644 index b74d4d794..000000000 --- a/libc/nt/user32/EnumDesktopsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumDesktopsW,EnumDesktopsW,1759 diff --git a/libc/nt/user32/EnumDisplayDevicesW.S b/libc/nt/user32/EnumDisplayDevicesW.S deleted file mode 100644 index 90d208e44..000000000 --- a/libc/nt/user32/EnumDisplayDevicesW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumDisplayDevicesW,EnumDisplayDevicesW,1761 diff --git a/libc/nt/user32/EnumDisplayMonitors.S b/libc/nt/user32/EnumDisplayMonitors.S deleted file mode 100644 index 093ad0a60..000000000 --- a/libc/nt/user32/EnumDisplayMonitors.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumDisplayMonitors,EnumDisplayMonitors,1762 diff --git a/libc/nt/user32/EnumDisplaySettingsExW.S b/libc/nt/user32/EnumDisplaySettingsExW.S deleted file mode 100644 index fdb2507de..000000000 --- a/libc/nt/user32/EnumDisplaySettingsExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumDisplaySettingsExW,EnumDisplaySettingsExW,1765 diff --git a/libc/nt/user32/EnumDisplaySettingsW.S b/libc/nt/user32/EnumDisplaySettingsW.S deleted file mode 100644 index 46ec94f7d..000000000 --- a/libc/nt/user32/EnumDisplaySettingsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumDisplaySettingsW,EnumDisplaySettingsW,1766 diff --git a/libc/nt/user32/EnumPropsExW.S b/libc/nt/user32/EnumPropsExW.S deleted file mode 100644 index 9833906db..000000000 --- a/libc/nt/user32/EnumPropsExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumPropsExW,EnumPropsExW,1769 diff --git a/libc/nt/user32/EnumPropsW.S b/libc/nt/user32/EnumPropsW.S deleted file mode 100644 index 80cce6fc9..000000000 --- a/libc/nt/user32/EnumPropsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumPropsW,EnumPropsW,1770 diff --git a/libc/nt/user32/EnumThreadWindows.S b/libc/nt/user32/EnumThreadWindows.S deleted file mode 100644 index a130aa624..000000000 --- a/libc/nt/user32/EnumThreadWindows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumThreadWindows,EnumThreadWindows,1771 diff --git a/libc/nt/user32/EnumWindowStationsW.S b/libc/nt/user32/EnumWindowStationsW.S deleted file mode 100644 index c6cd67e2c..000000000 --- a/libc/nt/user32/EnumWindowStationsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumWindowStationsW,EnumWindowStationsW,1773 diff --git a/libc/nt/user32/EnumWindows.S b/libc/nt/user32/EnumWindows.S deleted file mode 100644 index f385eb297..000000000 --- a/libc/nt/user32/EnumWindows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EnumWindows,EnumWindows,1774 diff --git a/libc/nt/user32/EqualRect.S b/libc/nt/user32/EqualRect.S deleted file mode 100644 index a815c4380..000000000 --- a/libc/nt/user32/EqualRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EqualRect,EqualRect,1775 diff --git a/libc/nt/user32/EvaluateProximityToPolygon.S b/libc/nt/user32/EvaluateProximityToPolygon.S deleted file mode 100644 index 4246e9f81..000000000 --- a/libc/nt/user32/EvaluateProximityToPolygon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EvaluateProximityToPolygon,EvaluateProximityToPolygon,1776 diff --git a/libc/nt/user32/EvaluateProximityToRect.S b/libc/nt/user32/EvaluateProximityToRect.S deleted file mode 100644 index 1109401d1..000000000 --- a/libc/nt/user32/EvaluateProximityToRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_EvaluateProximityToRect,EvaluateProximityToRect,1777 diff --git a/libc/nt/user32/ExcludeUpdateRgn.S b/libc/nt/user32/ExcludeUpdateRgn.S deleted file mode 100644 index 7d411e454..000000000 --- a/libc/nt/user32/ExcludeUpdateRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ExcludeUpdateRgn,ExcludeUpdateRgn,1778 diff --git a/libc/nt/user32/ExitWindowsEx.S b/libc/nt/user32/ExitWindowsEx.S deleted file mode 100644 index 48a06f75f..000000000 --- a/libc/nt/user32/ExitWindowsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ExitWindowsEx,ExitWindowsEx,1779 diff --git a/libc/nt/user32/FillRect.S b/libc/nt/user32/FillRect.S index d57026b8b..f0652d8c6 100644 --- a/libc/nt/user32/FillRect.S +++ b/libc/nt/user32/FillRect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_FillRect,FillRect,1780 +.imp user32,__imp_FillRect,FillRect .text.windows .ftrace1 diff --git a/libc/nt/user32/FindWindowExW.S b/libc/nt/user32/FindWindowExW.S index a8f3e94c6..33d107e52 100644 --- a/libc/nt/user32/FindWindowExW.S +++ b/libc/nt/user32/FindWindowExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_FindWindowExW,FindWindowExW,1783 +.imp user32,__imp_FindWindowExW,FindWindowExW .text.windows .ftrace1 diff --git a/libc/nt/user32/FindWindowW.S b/libc/nt/user32/FindWindowW.S index 2ceb29754..47c4fc6e0 100644 --- a/libc/nt/user32/FindWindowW.S +++ b/libc/nt/user32/FindWindowW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_FindWindowW,FindWindowW,1784 +.imp user32,__imp_FindWindowW,FindWindowW .text.windows .ftrace1 diff --git a/libc/nt/user32/FlashWindow.S b/libc/nt/user32/FlashWindow.S deleted file mode 100644 index cd054f289..000000000 --- a/libc/nt/user32/FlashWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_FlashWindow,FlashWindow,1785 diff --git a/libc/nt/user32/FlashWindowEx.S b/libc/nt/user32/FlashWindowEx.S deleted file mode 100644 index 3f0131632..000000000 --- a/libc/nt/user32/FlashWindowEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_FlashWindowEx,FlashWindowEx,1786 diff --git a/libc/nt/user32/FrameRect.S b/libc/nt/user32/FrameRect.S deleted file mode 100644 index 5eaeff63d..000000000 --- a/libc/nt/user32/FrameRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_FrameRect,FrameRect,1787 diff --git a/libc/nt/user32/FreeDDElParam.S b/libc/nt/user32/FreeDDElParam.S deleted file mode 100644 index 1a5967f14..000000000 --- a/libc/nt/user32/FreeDDElParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_FreeDDElParam,FreeDDElParam,1788 diff --git a/libc/nt/user32/FrostCrashedWindow.S b/libc/nt/user32/FrostCrashedWindow.S deleted file mode 100644 index 90749ac6f..000000000 --- a/libc/nt/user32/FrostCrashedWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_FrostCrashedWindow,FrostCrashedWindow,1789 diff --git a/libc/nt/user32/GetActiveWindow.S b/libc/nt/user32/GetActiveWindow.S deleted file mode 100644 index f5327e748..000000000 --- a/libc/nt/user32/GetActiveWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetActiveWindow,GetActiveWindow,1790 diff --git a/libc/nt/user32/GetAltTabInfoW.S b/libc/nt/user32/GetAltTabInfoW.S deleted file mode 100644 index f5ac5b1aa..000000000 --- a/libc/nt/user32/GetAltTabInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetAltTabInfoW,GetAltTabInfoW,1793 diff --git a/libc/nt/user32/GetAncestor.S b/libc/nt/user32/GetAncestor.S deleted file mode 100644 index 8474919f6..000000000 --- a/libc/nt/user32/GetAncestor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetAncestor,GetAncestor,1794 diff --git a/libc/nt/user32/GetAppCompatFlags.S b/libc/nt/user32/GetAppCompatFlags.S deleted file mode 100644 index 3bb1f85e1..000000000 --- a/libc/nt/user32/GetAppCompatFlags.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetAppCompatFlags,GetAppCompatFlags,1795 diff --git a/libc/nt/user32/GetAppCompatFlags2.S b/libc/nt/user32/GetAppCompatFlags2.S deleted file mode 100644 index de94ca8a1..000000000 --- a/libc/nt/user32/GetAppCompatFlags2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetAppCompatFlags2,GetAppCompatFlags2,1796 diff --git a/libc/nt/user32/GetAsyncKeyState.S b/libc/nt/user32/GetAsyncKeyState.S deleted file mode 100644 index 13819281f..000000000 --- a/libc/nt/user32/GetAsyncKeyState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetAsyncKeyState,GetAsyncKeyState,1797 diff --git a/libc/nt/user32/GetAutoRotationState.S b/libc/nt/user32/GetAutoRotationState.S deleted file mode 100644 index f1b28b1c3..000000000 --- a/libc/nt/user32/GetAutoRotationState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetAutoRotationState,GetAutoRotationState,1798 diff --git a/libc/nt/user32/GetAwarenessFromDpiAwarenessContext.S b/libc/nt/user32/GetAwarenessFromDpiAwarenessContext.S deleted file mode 100644 index 424032488..000000000 --- a/libc/nt/user32/GetAwarenessFromDpiAwarenessContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetAwarenessFromDpiAwarenessContext,GetAwarenessFromDpiAwarenessContext,1799 diff --git a/libc/nt/user32/GetCIMSSM.S b/libc/nt/user32/GetCIMSSM.S deleted file mode 100644 index b979cf043..000000000 --- a/libc/nt/user32/GetCIMSSM.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetCIMSSM,GetCIMSSM,1800 diff --git a/libc/nt/user32/GetCapture.S b/libc/nt/user32/GetCapture.S deleted file mode 100644 index fe724f690..000000000 --- a/libc/nt/user32/GetCapture.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetCapture,GetCapture,1801 diff --git a/libc/nt/user32/GetCaretBlinkTime.S b/libc/nt/user32/GetCaretBlinkTime.S deleted file mode 100644 index 6b7e182ce..000000000 --- a/libc/nt/user32/GetCaretBlinkTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetCaretBlinkTime,GetCaretBlinkTime,1802 diff --git a/libc/nt/user32/GetCaretPos.S b/libc/nt/user32/GetCaretPos.S deleted file mode 100644 index d2eafa873..000000000 --- a/libc/nt/user32/GetCaretPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetCaretPos,GetCaretPos,1803 diff --git a/libc/nt/user32/GetClassInfoExW.S b/libc/nt/user32/GetClassInfoExW.S deleted file mode 100644 index 8bfd81b1e..000000000 --- a/libc/nt/user32/GetClassInfoExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClassInfoExW,GetClassInfoExW,1806 diff --git a/libc/nt/user32/GetClassInfoW.S b/libc/nt/user32/GetClassInfoW.S deleted file mode 100644 index a97f3aac4..000000000 --- a/libc/nt/user32/GetClassInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClassInfoW,GetClassInfoW,1807 diff --git a/libc/nt/user32/GetClassLongPtrW.S b/libc/nt/user32/GetClassLongPtrW.S deleted file mode 100644 index ae11b8e9b..000000000 --- a/libc/nt/user32/GetClassLongPtrW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClassLongPtrW,GetClassLongPtrW,1810 diff --git a/libc/nt/user32/GetClassLongW.S b/libc/nt/user32/GetClassLongW.S deleted file mode 100644 index 68dfaefcf..000000000 --- a/libc/nt/user32/GetClassLongW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClassLongW,GetClassLongW,1811 diff --git a/libc/nt/user32/GetClassNameW.S b/libc/nt/user32/GetClassNameW.S deleted file mode 100644 index ec1eea50d..000000000 --- a/libc/nt/user32/GetClassNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClassNameW,GetClassNameW,1813 diff --git a/libc/nt/user32/GetClassWord.S b/libc/nt/user32/GetClassWord.S deleted file mode 100644 index 997bd2af5..000000000 --- a/libc/nt/user32/GetClassWord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClassWord,GetClassWord,1814 diff --git a/libc/nt/user32/GetClientRect.S b/libc/nt/user32/GetClientRect.S index 5c0d55093..28f88904d 100644 --- a/libc/nt/user32/GetClientRect.S +++ b/libc/nt/user32/GetClientRect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetClientRect,GetClientRect,1815 +.imp user32,__imp_GetClientRect,GetClientRect .text.windows .ftrace1 diff --git a/libc/nt/user32/GetClipCursor.S b/libc/nt/user32/GetClipCursor.S deleted file mode 100644 index 6d88ffcca..000000000 --- a/libc/nt/user32/GetClipCursor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClipCursor,GetClipCursor,1816 diff --git a/libc/nt/user32/GetClipboardAccessToken.S b/libc/nt/user32/GetClipboardAccessToken.S deleted file mode 100644 index 094befd0f..000000000 --- a/libc/nt/user32/GetClipboardAccessToken.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClipboardAccessToken,GetClipboardAccessToken,1817 diff --git a/libc/nt/user32/GetClipboardData.S b/libc/nt/user32/GetClipboardData.S deleted file mode 100644 index 7c53bf61a..000000000 --- a/libc/nt/user32/GetClipboardData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClipboardData,GetClipboardData,1818 diff --git a/libc/nt/user32/GetClipboardFormatNameW.S b/libc/nt/user32/GetClipboardFormatNameW.S deleted file mode 100644 index ac3ba552f..000000000 --- a/libc/nt/user32/GetClipboardFormatNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClipboardFormatNameW,GetClipboardFormatNameW,1820 diff --git a/libc/nt/user32/GetClipboardOwner.S b/libc/nt/user32/GetClipboardOwner.S deleted file mode 100644 index 316b8c42b..000000000 --- a/libc/nt/user32/GetClipboardOwner.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClipboardOwner,GetClipboardOwner,1821 diff --git a/libc/nt/user32/GetClipboardSequenceNumber.S b/libc/nt/user32/GetClipboardSequenceNumber.S deleted file mode 100644 index d66d85e4c..000000000 --- a/libc/nt/user32/GetClipboardSequenceNumber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClipboardSequenceNumber,GetClipboardSequenceNumber,1822 diff --git a/libc/nt/user32/GetClipboardViewer.S b/libc/nt/user32/GetClipboardViewer.S deleted file mode 100644 index e003d942f..000000000 --- a/libc/nt/user32/GetClipboardViewer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetClipboardViewer,GetClipboardViewer,1823 diff --git a/libc/nt/user32/GetComboBoxInfo.S b/libc/nt/user32/GetComboBoxInfo.S deleted file mode 100644 index 96ed87a88..000000000 --- a/libc/nt/user32/GetComboBoxInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetComboBoxInfo,GetComboBoxInfo,1824 diff --git a/libc/nt/user32/GetCurrentInputMessageSource.S b/libc/nt/user32/GetCurrentInputMessageSource.S deleted file mode 100644 index 1c124db2c..000000000 --- a/libc/nt/user32/GetCurrentInputMessageSource.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetCurrentInputMessageSource,GetCurrentInputMessageSource,1825 diff --git a/libc/nt/user32/GetCursor.S b/libc/nt/user32/GetCursor.S index 839dd9b98..fe3f4520a 100644 --- a/libc/nt/user32/GetCursor.S +++ b/libc/nt/user32/GetCursor.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetCursor,GetCursor,1826 +.imp user32,__imp_GetCursor,GetCursor .text.windows .ftrace1 diff --git a/libc/nt/user32/GetCursorFrameInfo.S b/libc/nt/user32/GetCursorFrameInfo.S deleted file mode 100644 index 1daa65ec0..000000000 --- a/libc/nt/user32/GetCursorFrameInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetCursorFrameInfo,GetCursorFrameInfo,1827 diff --git a/libc/nt/user32/GetCursorInfo.S b/libc/nt/user32/GetCursorInfo.S deleted file mode 100644 index aec7ffa79..000000000 --- a/libc/nt/user32/GetCursorInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetCursorInfo,GetCursorInfo,1828 diff --git a/libc/nt/user32/GetCursorPos.S b/libc/nt/user32/GetCursorPos.S index 1e8e3ba7d..08020daf7 100644 --- a/libc/nt/user32/GetCursorPos.S +++ b/libc/nt/user32/GetCursorPos.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetCursorPos,GetCursorPos,1829 +.imp user32,__imp_GetCursorPos,GetCursorPos .text.windows .ftrace1 diff --git a/libc/nt/user32/GetDC.S b/libc/nt/user32/GetDC.S index e57356c3e..113d2100c 100644 --- a/libc/nt/user32/GetDC.S +++ b/libc/nt/user32/GetDC.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetDC,GetDC,1830 +.imp user32,__imp_GetDC,GetDC .text.windows .ftrace1 diff --git a/libc/nt/user32/GetDCEx.S b/libc/nt/user32/GetDCEx.S deleted file mode 100644 index a310f619c..000000000 --- a/libc/nt/user32/GetDCEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDCEx,GetDCEx,1831 diff --git a/libc/nt/user32/GetDesktopID.S b/libc/nt/user32/GetDesktopID.S deleted file mode 100644 index a62b59b97..000000000 --- a/libc/nt/user32/GetDesktopID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDesktopID,GetDesktopID,1832 diff --git a/libc/nt/user32/GetDesktopWindow.S b/libc/nt/user32/GetDesktopWindow.S index 7314ad1a6..699670add 100644 --- a/libc/nt/user32/GetDesktopWindow.S +++ b/libc/nt/user32/GetDesktopWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetDesktopWindow,GetDesktopWindow,1833 +.imp user32,__imp_GetDesktopWindow,GetDesktopWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/GetDialogBaseUnits.S b/libc/nt/user32/GetDialogBaseUnits.S deleted file mode 100644 index 34f64f694..000000000 --- a/libc/nt/user32/GetDialogBaseUnits.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDialogBaseUnits,GetDialogBaseUnits,1834 diff --git a/libc/nt/user32/GetDialogControlDpiChangeBehavior.S b/libc/nt/user32/GetDialogControlDpiChangeBehavior.S deleted file mode 100644 index f198eb110..000000000 --- a/libc/nt/user32/GetDialogControlDpiChangeBehavior.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDialogControlDpiChangeBehavior,GetDialogControlDpiChangeBehavior,1835 diff --git a/libc/nt/user32/GetDialogDpiChangeBehavior.S b/libc/nt/user32/GetDialogDpiChangeBehavior.S deleted file mode 100644 index 6452c049e..000000000 --- a/libc/nt/user32/GetDialogDpiChangeBehavior.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDialogDpiChangeBehavior,GetDialogDpiChangeBehavior,1836 diff --git a/libc/nt/user32/GetDisplayAutoRotationPreferences.S b/libc/nt/user32/GetDisplayAutoRotationPreferences.S deleted file mode 100644 index f9245066f..000000000 --- a/libc/nt/user32/GetDisplayAutoRotationPreferences.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDisplayAutoRotationPreferences,GetDisplayAutoRotationPreferences,1837 diff --git a/libc/nt/user32/GetDisplayConfigBufferSizes.S b/libc/nt/user32/GetDisplayConfigBufferSizes.S deleted file mode 100644 index c555e3778..000000000 --- a/libc/nt/user32/GetDisplayConfigBufferSizes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDisplayConfigBufferSizes,GetDisplayConfigBufferSizes,1838 diff --git a/libc/nt/user32/GetDlgCtrlID.S b/libc/nt/user32/GetDlgCtrlID.S deleted file mode 100644 index f207784f2..000000000 --- a/libc/nt/user32/GetDlgCtrlID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDlgCtrlID,GetDlgCtrlID,1839 diff --git a/libc/nt/user32/GetDlgItem.S b/libc/nt/user32/GetDlgItem.S deleted file mode 100644 index e14e8dab6..000000000 --- a/libc/nt/user32/GetDlgItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDlgItem,GetDlgItem,1840 diff --git a/libc/nt/user32/GetDlgItemInt.S b/libc/nt/user32/GetDlgItemInt.S deleted file mode 100644 index a6b0be47c..000000000 --- a/libc/nt/user32/GetDlgItemInt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDlgItemInt,GetDlgItemInt,1841 diff --git a/libc/nt/user32/GetDlgItemTextW.S b/libc/nt/user32/GetDlgItemTextW.S deleted file mode 100644 index 533d87670..000000000 --- a/libc/nt/user32/GetDlgItemTextW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDlgItemTextW,GetDlgItemTextW,1843 diff --git a/libc/nt/user32/GetDoubleClickTime.S b/libc/nt/user32/GetDoubleClickTime.S deleted file mode 100644 index c359b966d..000000000 --- a/libc/nt/user32/GetDoubleClickTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDoubleClickTime,GetDoubleClickTime,1844 diff --git a/libc/nt/user32/GetDpiForMonitorInternal.S b/libc/nt/user32/GetDpiForMonitorInternal.S deleted file mode 100644 index 7fba8ce8a..000000000 --- a/libc/nt/user32/GetDpiForMonitorInternal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDpiForMonitorInternal,GetDpiForMonitorInternal,1845 diff --git a/libc/nt/user32/GetDpiForSystem.S b/libc/nt/user32/GetDpiForSystem.S deleted file mode 100644 index 9836b19ef..000000000 --- a/libc/nt/user32/GetDpiForSystem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDpiForSystem,GetDpiForSystem,1846 diff --git a/libc/nt/user32/GetDpiForWindow.S b/libc/nt/user32/GetDpiForWindow.S deleted file mode 100644 index 719d5b542..000000000 --- a/libc/nt/user32/GetDpiForWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDpiForWindow,GetDpiForWindow,1847 diff --git a/libc/nt/user32/GetDpiFromDpiAwarenessContext.S b/libc/nt/user32/GetDpiFromDpiAwarenessContext.S deleted file mode 100644 index f6df8fe24..000000000 --- a/libc/nt/user32/GetDpiFromDpiAwarenessContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetDpiFromDpiAwarenessContext,GetDpiFromDpiAwarenessContext,1848 diff --git a/libc/nt/user32/GetFocus.S b/libc/nt/user32/GetFocus.S deleted file mode 100644 index 85754ddd7..000000000 --- a/libc/nt/user32/GetFocus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetFocus,GetFocus,1849 diff --git a/libc/nt/user32/GetForegroundWindow.S b/libc/nt/user32/GetForegroundWindow.S deleted file mode 100644 index d310716f9..000000000 --- a/libc/nt/user32/GetForegroundWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetForegroundWindow,GetForegroundWindow,1850 diff --git a/libc/nt/user32/GetGUIThreadInfo.S b/libc/nt/user32/GetGUIThreadInfo.S deleted file mode 100644 index cd9016913..000000000 --- a/libc/nt/user32/GetGUIThreadInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetGUIThreadInfo,GetGUIThreadInfo,1851 diff --git a/libc/nt/user32/GetGestureConfig.S b/libc/nt/user32/GetGestureConfig.S deleted file mode 100644 index cc3e6d09d..000000000 --- a/libc/nt/user32/GetGestureConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetGestureConfig,GetGestureConfig,1852 diff --git a/libc/nt/user32/GetGestureExtraArgs.S b/libc/nt/user32/GetGestureExtraArgs.S deleted file mode 100644 index b96f39b03..000000000 --- a/libc/nt/user32/GetGestureExtraArgs.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetGestureExtraArgs,GetGestureExtraArgs,1853 diff --git a/libc/nt/user32/GetGestureInfo.S b/libc/nt/user32/GetGestureInfo.S deleted file mode 100644 index 1c311d271..000000000 --- a/libc/nt/user32/GetGestureInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetGestureInfo,GetGestureInfo,1854 diff --git a/libc/nt/user32/GetGuiResources.S b/libc/nt/user32/GetGuiResources.S deleted file mode 100644 index fb88e4eee..000000000 --- a/libc/nt/user32/GetGuiResources.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetGuiResources,GetGuiResources,1855 diff --git a/libc/nt/user32/GetIconInfo.S b/libc/nt/user32/GetIconInfo.S deleted file mode 100644 index ac4062a19..000000000 --- a/libc/nt/user32/GetIconInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetIconInfo,GetIconInfo,1856 diff --git a/libc/nt/user32/GetIconInfoExW.S b/libc/nt/user32/GetIconInfoExW.S deleted file mode 100644 index bff4358e7..000000000 --- a/libc/nt/user32/GetIconInfoExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetIconInfoExW,GetIconInfoExW,1858 diff --git a/libc/nt/user32/GetInputDesktop.S b/libc/nt/user32/GetInputDesktop.S deleted file mode 100644 index 16f5c0f36..000000000 --- a/libc/nt/user32/GetInputDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetInputDesktop,GetInputDesktop,1859 diff --git a/libc/nt/user32/GetInputLocaleInfo.S b/libc/nt/user32/GetInputLocaleInfo.S deleted file mode 100644 index 8a5e57aec..000000000 --- a/libc/nt/user32/GetInputLocaleInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetInputLocaleInfo,GetInputLocaleInfo,1860 diff --git a/libc/nt/user32/GetInputState.S b/libc/nt/user32/GetInputState.S deleted file mode 100644 index 27328a8c0..000000000 --- a/libc/nt/user32/GetInputState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetInputState,GetInputState,1861 diff --git a/libc/nt/user32/GetInternalWindowPos.S b/libc/nt/user32/GetInternalWindowPos.S deleted file mode 100644 index 2e8387ef8..000000000 --- a/libc/nt/user32/GetInternalWindowPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetInternalWindowPos,GetInternalWindowPos,1862 diff --git a/libc/nt/user32/GetKBCodePage.S b/libc/nt/user32/GetKBCodePage.S deleted file mode 100644 index 9749b1369..000000000 --- a/libc/nt/user32/GetKBCodePage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetKBCodePage,GetKBCodePage,1863 diff --git a/libc/nt/user32/GetKeyNameTextW.S b/libc/nt/user32/GetKeyNameTextW.S deleted file mode 100644 index 45f3799ae..000000000 --- a/libc/nt/user32/GetKeyNameTextW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetKeyNameTextW,GetKeyNameTextW,1865 diff --git a/libc/nt/user32/GetKeyState.S b/libc/nt/user32/GetKeyState.S index feb578a4f..b001bee54 100644 --- a/libc/nt/user32/GetKeyState.S +++ b/libc/nt/user32/GetKeyState.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetKeyState,GetKeyState,1866 +.imp user32,__imp_GetKeyState,GetKeyState .text.windows .ftrace1 diff --git a/libc/nt/user32/GetKeyboardLayout.S b/libc/nt/user32/GetKeyboardLayout.S index 45f492da2..ff2f7678e 100644 --- a/libc/nt/user32/GetKeyboardLayout.S +++ b/libc/nt/user32/GetKeyboardLayout.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetKeyboardLayout,GetKeyboardLayout,1867 +.imp user32,__imp_GetKeyboardLayout,GetKeyboardLayout .text.windows .ftrace1 diff --git a/libc/nt/user32/GetKeyboardLayoutList.S b/libc/nt/user32/GetKeyboardLayoutList.S deleted file mode 100644 index c43fb16e9..000000000 --- a/libc/nt/user32/GetKeyboardLayoutList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetKeyboardLayoutList,GetKeyboardLayoutList,1868 diff --git a/libc/nt/user32/GetKeyboardLayoutNameW.S b/libc/nt/user32/GetKeyboardLayoutNameW.S deleted file mode 100644 index d8038f09b..000000000 --- a/libc/nt/user32/GetKeyboardLayoutNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetKeyboardLayoutNameW,GetKeyboardLayoutNameW,1870 diff --git a/libc/nt/user32/GetKeyboardState.S b/libc/nt/user32/GetKeyboardState.S deleted file mode 100644 index 95c14c15f..000000000 --- a/libc/nt/user32/GetKeyboardState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetKeyboardState,GetKeyboardState,1871 diff --git a/libc/nt/user32/GetKeyboardType.S b/libc/nt/user32/GetKeyboardType.S deleted file mode 100644 index 040872b65..000000000 --- a/libc/nt/user32/GetKeyboardType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetKeyboardType,GetKeyboardType,1872 diff --git a/libc/nt/user32/GetLastActivePopup.S b/libc/nt/user32/GetLastActivePopup.S deleted file mode 100644 index adcbf0107..000000000 --- a/libc/nt/user32/GetLastActivePopup.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetLastActivePopup,GetLastActivePopup,1873 diff --git a/libc/nt/user32/GetLastInputInfo.S b/libc/nt/user32/GetLastInputInfo.S deleted file mode 100644 index affc2db84..000000000 --- a/libc/nt/user32/GetLastInputInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetLastInputInfo,GetLastInputInfo,1874 diff --git a/libc/nt/user32/GetLayeredWindowAttributes.S b/libc/nt/user32/GetLayeredWindowAttributes.S deleted file mode 100644 index b28451d97..000000000 --- a/libc/nt/user32/GetLayeredWindowAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetLayeredWindowAttributes,GetLayeredWindowAttributes,1875 diff --git a/libc/nt/user32/GetListBoxInfo.S b/libc/nt/user32/GetListBoxInfo.S deleted file mode 100644 index 26020ebaf..000000000 --- a/libc/nt/user32/GetListBoxInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetListBoxInfo,GetListBoxInfo,1876 diff --git a/libc/nt/user32/GetMagnificationDesktopColorEffect.S b/libc/nt/user32/GetMagnificationDesktopColorEffect.S deleted file mode 100644 index 63f93e9a7..000000000 --- a/libc/nt/user32/GetMagnificationDesktopColorEffect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMagnificationDesktopColorEffect,GetMagnificationDesktopColorEffect,1877 diff --git a/libc/nt/user32/GetMagnificationDesktopMagnification.S b/libc/nt/user32/GetMagnificationDesktopMagnification.S deleted file mode 100644 index 7bb634b72..000000000 --- a/libc/nt/user32/GetMagnificationDesktopMagnification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMagnificationDesktopMagnification,GetMagnificationDesktopMagnification,1878 diff --git a/libc/nt/user32/GetMagnificationDesktopSamplingMode.S b/libc/nt/user32/GetMagnificationDesktopSamplingMode.S deleted file mode 100644 index 644a46f72..000000000 --- a/libc/nt/user32/GetMagnificationDesktopSamplingMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMagnificationDesktopSamplingMode,GetMagnificationDesktopSamplingMode,1879 diff --git a/libc/nt/user32/GetMagnificationLensCtxInformation.S b/libc/nt/user32/GetMagnificationLensCtxInformation.S deleted file mode 100644 index d4a9fdf5a..000000000 --- a/libc/nt/user32/GetMagnificationLensCtxInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMagnificationLensCtxInformation,GetMagnificationLensCtxInformation,1880 diff --git a/libc/nt/user32/GetMenu.S b/libc/nt/user32/GetMenu.S index 7fe2ec3dc..3c690d970 100644 --- a/libc/nt/user32/GetMenu.S +++ b/libc/nt/user32/GetMenu.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetMenu,GetMenu,1881 +.imp user32,__imp_GetMenu,GetMenu .text.windows .ftrace1 diff --git a/libc/nt/user32/GetMenuBarInfo.S b/libc/nt/user32/GetMenuBarInfo.S deleted file mode 100644 index 36b8ad702..000000000 --- a/libc/nt/user32/GetMenuBarInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuBarInfo,GetMenuBarInfo,1882 diff --git a/libc/nt/user32/GetMenuCheckMarkDimensions.S b/libc/nt/user32/GetMenuCheckMarkDimensions.S deleted file mode 100644 index b960484d0..000000000 --- a/libc/nt/user32/GetMenuCheckMarkDimensions.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuCheckMarkDimensions,GetMenuCheckMarkDimensions,1883 diff --git a/libc/nt/user32/GetMenuContextHelpId.S b/libc/nt/user32/GetMenuContextHelpId.S deleted file mode 100644 index e866be3da..000000000 --- a/libc/nt/user32/GetMenuContextHelpId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuContextHelpId,GetMenuContextHelpId,1884 diff --git a/libc/nt/user32/GetMenuDefaultItem.S b/libc/nt/user32/GetMenuDefaultItem.S deleted file mode 100644 index 7c01a7f62..000000000 --- a/libc/nt/user32/GetMenuDefaultItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuDefaultItem,GetMenuDefaultItem,1885 diff --git a/libc/nt/user32/GetMenuInfo.S b/libc/nt/user32/GetMenuInfo.S deleted file mode 100644 index 3619db3fb..000000000 --- a/libc/nt/user32/GetMenuInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuInfo,GetMenuInfo,1886 diff --git a/libc/nt/user32/GetMenuItemCount.S b/libc/nt/user32/GetMenuItemCount.S deleted file mode 100644 index 01e1be4db..000000000 --- a/libc/nt/user32/GetMenuItemCount.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuItemCount,GetMenuItemCount,1887 diff --git a/libc/nt/user32/GetMenuItemID.S b/libc/nt/user32/GetMenuItemID.S deleted file mode 100644 index 1e9b568fc..000000000 --- a/libc/nt/user32/GetMenuItemID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuItemID,GetMenuItemID,1888 diff --git a/libc/nt/user32/GetMenuItemInfoW.S b/libc/nt/user32/GetMenuItemInfoW.S deleted file mode 100644 index 72a4681fc..000000000 --- a/libc/nt/user32/GetMenuItemInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuItemInfoW,GetMenuItemInfoW,1890 diff --git a/libc/nt/user32/GetMenuItemRect.S b/libc/nt/user32/GetMenuItemRect.S deleted file mode 100644 index 6e9016ba5..000000000 --- a/libc/nt/user32/GetMenuItemRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuItemRect,GetMenuItemRect,1891 diff --git a/libc/nt/user32/GetMenuState.S b/libc/nt/user32/GetMenuState.S deleted file mode 100644 index b080eb8a4..000000000 --- a/libc/nt/user32/GetMenuState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuState,GetMenuState,1892 diff --git a/libc/nt/user32/GetMenuStringW.S b/libc/nt/user32/GetMenuStringW.S deleted file mode 100644 index 575680481..000000000 --- a/libc/nt/user32/GetMenuStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMenuStringW,GetMenuStringW,1894 diff --git a/libc/nt/user32/GetMessageExtraInfo.S b/libc/nt/user32/GetMessageExtraInfo.S deleted file mode 100644 index 6a8181c32..000000000 --- a/libc/nt/user32/GetMessageExtraInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMessageExtraInfo,GetMessageExtraInfo,1896 diff --git a/libc/nt/user32/GetMessagePos.S b/libc/nt/user32/GetMessagePos.S deleted file mode 100644 index 1b0a91264..000000000 --- a/libc/nt/user32/GetMessagePos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMessagePos,GetMessagePos,1897 diff --git a/libc/nt/user32/GetMessageTime.S b/libc/nt/user32/GetMessageTime.S deleted file mode 100644 index c44e6cea7..000000000 --- a/libc/nt/user32/GetMessageTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMessageTime,GetMessageTime,1898 diff --git a/libc/nt/user32/GetMessageW.S b/libc/nt/user32/GetMessageW.S index f4c8eb9ba..bef0fef10 100644 --- a/libc/nt/user32/GetMessageW.S +++ b/libc/nt/user32/GetMessageW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetMessageW,GetMessageW,1899 +.imp user32,__imp_GetMessageW,GetMessageW .text.windows .ftrace1 diff --git a/libc/nt/user32/GetMonitorInfoW.S b/libc/nt/user32/GetMonitorInfoW.S deleted file mode 100644 index 8ab27c51d..000000000 --- a/libc/nt/user32/GetMonitorInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMonitorInfoW,GetMonitorInfoW,1901 diff --git a/libc/nt/user32/GetMouseMovePointsEx.S b/libc/nt/user32/GetMouseMovePointsEx.S deleted file mode 100644 index 37e6c62cb..000000000 --- a/libc/nt/user32/GetMouseMovePointsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetMouseMovePointsEx,GetMouseMovePointsEx,1902 diff --git a/libc/nt/user32/GetNextDlgGroupItem.S b/libc/nt/user32/GetNextDlgGroupItem.S deleted file mode 100644 index 8a2137e3a..000000000 --- a/libc/nt/user32/GetNextDlgGroupItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetNextDlgGroupItem,GetNextDlgGroupItem,1903 diff --git a/libc/nt/user32/GetNextDlgTabItem.S b/libc/nt/user32/GetNextDlgTabItem.S deleted file mode 100644 index cc70eaf99..000000000 --- a/libc/nt/user32/GetNextDlgTabItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetNextDlgTabItem,GetNextDlgTabItem,1904 diff --git a/libc/nt/user32/GetOpenClipboardWindow.S b/libc/nt/user32/GetOpenClipboardWindow.S deleted file mode 100644 index 4af3d6d25..000000000 --- a/libc/nt/user32/GetOpenClipboardWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetOpenClipboardWindow,GetOpenClipboardWindow,1905 diff --git a/libc/nt/user32/GetParent.S b/libc/nt/user32/GetParent.S index 87bebe54e..00411cf41 100644 --- a/libc/nt/user32/GetParent.S +++ b/libc/nt/user32/GetParent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetParent,GetParent,1906 +.imp user32,__imp_GetParent,GetParent .text.windows .ftrace1 diff --git a/libc/nt/user32/GetPhysicalCursorPos.S b/libc/nt/user32/GetPhysicalCursorPos.S deleted file mode 100644 index c2e3f9740..000000000 --- a/libc/nt/user32/GetPhysicalCursorPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPhysicalCursorPos,GetPhysicalCursorPos,1907 diff --git a/libc/nt/user32/GetPointerCursorId.S b/libc/nt/user32/GetPointerCursorId.S deleted file mode 100644 index 7cb0e4171..000000000 --- a/libc/nt/user32/GetPointerCursorId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerCursorId,GetPointerCursorId,1908 diff --git a/libc/nt/user32/GetPointerDevice.S b/libc/nt/user32/GetPointerDevice.S deleted file mode 100644 index 174b8c570..000000000 --- a/libc/nt/user32/GetPointerDevice.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerDevice,GetPointerDevice,1909 diff --git a/libc/nt/user32/GetPointerDeviceCursors.S b/libc/nt/user32/GetPointerDeviceCursors.S deleted file mode 100644 index 4a7b9aafc..000000000 --- a/libc/nt/user32/GetPointerDeviceCursors.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerDeviceCursors,GetPointerDeviceCursors,1910 diff --git a/libc/nt/user32/GetPointerDeviceProperties.S b/libc/nt/user32/GetPointerDeviceProperties.S deleted file mode 100644 index 2dd3095bf..000000000 --- a/libc/nt/user32/GetPointerDeviceProperties.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerDeviceProperties,GetPointerDeviceProperties,1911 diff --git a/libc/nt/user32/GetPointerDeviceRects.S b/libc/nt/user32/GetPointerDeviceRects.S deleted file mode 100644 index 8df78e559..000000000 --- a/libc/nt/user32/GetPointerDeviceRects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerDeviceRects,GetPointerDeviceRects,1912 diff --git a/libc/nt/user32/GetPointerDevices.S b/libc/nt/user32/GetPointerDevices.S deleted file mode 100644 index 8cc4955ca..000000000 --- a/libc/nt/user32/GetPointerDevices.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerDevices,GetPointerDevices,1913 diff --git a/libc/nt/user32/GetPointerFrameArrivalTimes.S b/libc/nt/user32/GetPointerFrameArrivalTimes.S deleted file mode 100644 index 5954a5e03..000000000 --- a/libc/nt/user32/GetPointerFrameArrivalTimes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerFrameArrivalTimes,GetPointerFrameArrivalTimes,1914 diff --git a/libc/nt/user32/GetPointerFrameInfo.S b/libc/nt/user32/GetPointerFrameInfo.S deleted file mode 100644 index e810dede0..000000000 --- a/libc/nt/user32/GetPointerFrameInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerFrameInfo,GetPointerFrameInfo,1915 diff --git a/libc/nt/user32/GetPointerFrameInfoHistory.S b/libc/nt/user32/GetPointerFrameInfoHistory.S deleted file mode 100644 index 2709897a9..000000000 --- a/libc/nt/user32/GetPointerFrameInfoHistory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerFrameInfoHistory,GetPointerFrameInfoHistory,1916 diff --git a/libc/nt/user32/GetPointerFramePenInfo.S b/libc/nt/user32/GetPointerFramePenInfo.S deleted file mode 100644 index e2ad9b3aa..000000000 --- a/libc/nt/user32/GetPointerFramePenInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerFramePenInfo,GetPointerFramePenInfo,1917 diff --git a/libc/nt/user32/GetPointerFramePenInfoHistory.S b/libc/nt/user32/GetPointerFramePenInfoHistory.S deleted file mode 100644 index fa5b3bc58..000000000 --- a/libc/nt/user32/GetPointerFramePenInfoHistory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerFramePenInfoHistory,GetPointerFramePenInfoHistory,1918 diff --git a/libc/nt/user32/GetPointerFrameTouchInfo.S b/libc/nt/user32/GetPointerFrameTouchInfo.S deleted file mode 100644 index 1d9ad32ef..000000000 --- a/libc/nt/user32/GetPointerFrameTouchInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerFrameTouchInfo,GetPointerFrameTouchInfo,1919 diff --git a/libc/nt/user32/GetPointerFrameTouchInfoHistory.S b/libc/nt/user32/GetPointerFrameTouchInfoHistory.S deleted file mode 100644 index 369983215..000000000 --- a/libc/nt/user32/GetPointerFrameTouchInfoHistory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerFrameTouchInfoHistory,GetPointerFrameTouchInfoHistory,1920 diff --git a/libc/nt/user32/GetPointerInfo.S b/libc/nt/user32/GetPointerInfo.S deleted file mode 100644 index 6f12ee54c..000000000 --- a/libc/nt/user32/GetPointerInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerInfo,GetPointerInfo,1921 diff --git a/libc/nt/user32/GetPointerInfoHistory.S b/libc/nt/user32/GetPointerInfoHistory.S deleted file mode 100644 index d95784dc6..000000000 --- a/libc/nt/user32/GetPointerInfoHistory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerInfoHistory,GetPointerInfoHistory,1922 diff --git a/libc/nt/user32/GetPointerInputTransform.S b/libc/nt/user32/GetPointerInputTransform.S deleted file mode 100644 index 3f85030d3..000000000 --- a/libc/nt/user32/GetPointerInputTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerInputTransform,GetPointerInputTransform,1923 diff --git a/libc/nt/user32/GetPointerPenInfo.S b/libc/nt/user32/GetPointerPenInfo.S deleted file mode 100644 index 2faf959e4..000000000 --- a/libc/nt/user32/GetPointerPenInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerPenInfo,GetPointerPenInfo,1924 diff --git a/libc/nt/user32/GetPointerPenInfoHistory.S b/libc/nt/user32/GetPointerPenInfoHistory.S deleted file mode 100644 index ce972235b..000000000 --- a/libc/nt/user32/GetPointerPenInfoHistory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerPenInfoHistory,GetPointerPenInfoHistory,1925 diff --git a/libc/nt/user32/GetPointerTouchInfo.S b/libc/nt/user32/GetPointerTouchInfo.S deleted file mode 100644 index 960d6d721..000000000 --- a/libc/nt/user32/GetPointerTouchInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerTouchInfo,GetPointerTouchInfo,1926 diff --git a/libc/nt/user32/GetPointerTouchInfoHistory.S b/libc/nt/user32/GetPointerTouchInfoHistory.S deleted file mode 100644 index bce75daba..000000000 --- a/libc/nt/user32/GetPointerTouchInfoHistory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerTouchInfoHistory,GetPointerTouchInfoHistory,1927 diff --git a/libc/nt/user32/GetPointerType.S b/libc/nt/user32/GetPointerType.S deleted file mode 100644 index 6009f12c2..000000000 --- a/libc/nt/user32/GetPointerType.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPointerType,GetPointerType,1928 diff --git a/libc/nt/user32/GetPriorityClipboardFormat.S b/libc/nt/user32/GetPriorityClipboardFormat.S deleted file mode 100644 index 78fe0a692..000000000 --- a/libc/nt/user32/GetPriorityClipboardFormat.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPriorityClipboardFormat,GetPriorityClipboardFormat,1929 diff --git a/libc/nt/user32/GetProcessDefaultLayout.S b/libc/nt/user32/GetProcessDefaultLayout.S deleted file mode 100644 index 10ff2d367..000000000 --- a/libc/nt/user32/GetProcessDefaultLayout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetProcessDefaultLayout,GetProcessDefaultLayout,1930 diff --git a/libc/nt/user32/GetProcessDpiAwarenessInternal.S b/libc/nt/user32/GetProcessDpiAwarenessInternal.S deleted file mode 100644 index d449803da..000000000 --- a/libc/nt/user32/GetProcessDpiAwarenessInternal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetProcessDpiAwarenessInternal,GetProcessDpiAwarenessInternal,1931 diff --git a/libc/nt/user32/GetProcessUIContextInformation.S b/libc/nt/user32/GetProcessUIContextInformation.S deleted file mode 100644 index a93c7a3d9..000000000 --- a/libc/nt/user32/GetProcessUIContextInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetProcessUIContextInformation,GetProcessUIContextInformation,2521 diff --git a/libc/nt/user32/GetProcessWindowStation.S b/libc/nt/user32/GetProcessWindowStation.S deleted file mode 100644 index 37d9a07f8..000000000 --- a/libc/nt/user32/GetProcessWindowStation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetProcessWindowStation,GetProcessWindowStation,1932 diff --git a/libc/nt/user32/GetProgmanWindow.S b/libc/nt/user32/GetProgmanWindow.S deleted file mode 100644 index f2f7013b1..000000000 --- a/libc/nt/user32/GetProgmanWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetProgmanWindow,GetProgmanWindow,1933 diff --git a/libc/nt/user32/GetPropW.S b/libc/nt/user32/GetPropW.S deleted file mode 100644 index 1c54d9110..000000000 --- a/libc/nt/user32/GetPropW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetPropW,GetPropW,1935 diff --git a/libc/nt/user32/GetQueueStatus.S b/libc/nt/user32/GetQueueStatus.S deleted file mode 100644 index 4d48ccd3f..000000000 --- a/libc/nt/user32/GetQueueStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetQueueStatus,GetQueueStatus,1936 diff --git a/libc/nt/user32/GetRawInputBuffer.S b/libc/nt/user32/GetRawInputBuffer.S deleted file mode 100644 index 2a8cc2379..000000000 --- a/libc/nt/user32/GetRawInputBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetRawInputBuffer,GetRawInputBuffer,1937 diff --git a/libc/nt/user32/GetRawInputData.S b/libc/nt/user32/GetRawInputData.S deleted file mode 100644 index ac7fac2fe..000000000 --- a/libc/nt/user32/GetRawInputData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetRawInputData,GetRawInputData,1938 diff --git a/libc/nt/user32/GetRawInputDeviceInfoW.S b/libc/nt/user32/GetRawInputDeviceInfoW.S deleted file mode 100644 index 239cc07ba..000000000 --- a/libc/nt/user32/GetRawInputDeviceInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetRawInputDeviceInfoW,GetRawInputDeviceInfoW,1940 diff --git a/libc/nt/user32/GetRawInputDeviceList.S b/libc/nt/user32/GetRawInputDeviceList.S deleted file mode 100644 index ed9f27de8..000000000 --- a/libc/nt/user32/GetRawInputDeviceList.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetRawInputDeviceList,GetRawInputDeviceList,1941 diff --git a/libc/nt/user32/GetRawPointerDeviceData.S b/libc/nt/user32/GetRawPointerDeviceData.S deleted file mode 100644 index 4b72e07c3..000000000 --- a/libc/nt/user32/GetRawPointerDeviceData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetRawPointerDeviceData,GetRawPointerDeviceData,1942 diff --git a/libc/nt/user32/GetReasonTitleFromReasonCode.S b/libc/nt/user32/GetReasonTitleFromReasonCode.S deleted file mode 100644 index 7d95c6d69..000000000 --- a/libc/nt/user32/GetReasonTitleFromReasonCode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetReasonTitleFromReasonCode,GetReasonTitleFromReasonCode,1943 diff --git a/libc/nt/user32/GetRegisteredRawInputDevices.S b/libc/nt/user32/GetRegisteredRawInputDevices.S deleted file mode 100644 index f49a55b30..000000000 --- a/libc/nt/user32/GetRegisteredRawInputDevices.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetRegisteredRawInputDevices,GetRegisteredRawInputDevices,1944 diff --git a/libc/nt/user32/GetScrollBarInfo.S b/libc/nt/user32/GetScrollBarInfo.S deleted file mode 100644 index 31754287e..000000000 --- a/libc/nt/user32/GetScrollBarInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetScrollBarInfo,GetScrollBarInfo,1945 diff --git a/libc/nt/user32/GetScrollInfo.S b/libc/nt/user32/GetScrollInfo.S deleted file mode 100644 index bfc863936..000000000 --- a/libc/nt/user32/GetScrollInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetScrollInfo,GetScrollInfo,1946 diff --git a/libc/nt/user32/GetScrollPos.S b/libc/nt/user32/GetScrollPos.S deleted file mode 100644 index cc1e1a7a8..000000000 --- a/libc/nt/user32/GetScrollPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetScrollPos,GetScrollPos,1947 diff --git a/libc/nt/user32/GetScrollRange.S b/libc/nt/user32/GetScrollRange.S deleted file mode 100644 index 58554f6f2..000000000 --- a/libc/nt/user32/GetScrollRange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetScrollRange,GetScrollRange,1948 diff --git a/libc/nt/user32/GetSendMessageReceiver.S b/libc/nt/user32/GetSendMessageReceiver.S deleted file mode 100644 index 6eda8f11c..000000000 --- a/libc/nt/user32/GetSendMessageReceiver.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetSendMessageReceiver,GetSendMessageReceiver,1949 diff --git a/libc/nt/user32/GetShellWindow.S b/libc/nt/user32/GetShellWindow.S index 45fa9a188..50956f532 100644 --- a/libc/nt/user32/GetShellWindow.S +++ b/libc/nt/user32/GetShellWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetShellWindow,GetShellWindow,1950 +.imp user32,__imp_GetShellWindow,GetShellWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/GetSubMenu.S b/libc/nt/user32/GetSubMenu.S deleted file mode 100644 index c3da0fd67..000000000 --- a/libc/nt/user32/GetSubMenu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetSubMenu,GetSubMenu,1951 diff --git a/libc/nt/user32/GetSysColor.S b/libc/nt/user32/GetSysColor.S deleted file mode 100644 index dcede240b..000000000 --- a/libc/nt/user32/GetSysColor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetSysColor,GetSysColor,1952 diff --git a/libc/nt/user32/GetSysColorBrush.S b/libc/nt/user32/GetSysColorBrush.S deleted file mode 100644 index d327d7417..000000000 --- a/libc/nt/user32/GetSysColorBrush.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetSysColorBrush,GetSysColorBrush,1953 diff --git a/libc/nt/user32/GetSystemDpiForProcess.S b/libc/nt/user32/GetSystemDpiForProcess.S deleted file mode 100644 index f5da702b9..000000000 --- a/libc/nt/user32/GetSystemDpiForProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetSystemDpiForProcess,GetSystemDpiForProcess,1954 diff --git a/libc/nt/user32/GetSystemMenu.S b/libc/nt/user32/GetSystemMenu.S index 168d85289..8592ffad5 100644 --- a/libc/nt/user32/GetSystemMenu.S +++ b/libc/nt/user32/GetSystemMenu.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetSystemMenu,GetSystemMenu,1955 +.imp user32,__imp_GetSystemMenu,GetSystemMenu .text.windows .ftrace1 diff --git a/libc/nt/user32/GetSystemMetrics.S b/libc/nt/user32/GetSystemMetrics.S deleted file mode 100644 index aed2e0302..000000000 --- a/libc/nt/user32/GetSystemMetrics.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetSystemMetrics,GetSystemMetrics,1956 diff --git a/libc/nt/user32/GetSystemMetricsForDpi.S b/libc/nt/user32/GetSystemMetricsForDpi.S deleted file mode 100644 index 7cefa120a..000000000 --- a/libc/nt/user32/GetSystemMetricsForDpi.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetSystemMetricsForDpi,GetSystemMetricsForDpi,1957 diff --git a/libc/nt/user32/GetTabbedTextExtentW.S b/libc/nt/user32/GetTabbedTextExtentW.S deleted file mode 100644 index e75291a90..000000000 --- a/libc/nt/user32/GetTabbedTextExtentW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetTabbedTextExtentW,GetTabbedTextExtentW,1959 diff --git a/libc/nt/user32/GetTaskmanWindow.S b/libc/nt/user32/GetTaskmanWindow.S deleted file mode 100644 index c7baf78b7..000000000 --- a/libc/nt/user32/GetTaskmanWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetTaskmanWindow,GetTaskmanWindow,1960 diff --git a/libc/nt/user32/GetThreadDesktop.S b/libc/nt/user32/GetThreadDesktop.S deleted file mode 100644 index 09ff91919..000000000 --- a/libc/nt/user32/GetThreadDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetThreadDesktop,GetThreadDesktop,1961 diff --git a/libc/nt/user32/GetThreadDpiAwarenessContext.S b/libc/nt/user32/GetThreadDpiAwarenessContext.S deleted file mode 100644 index ea1f40f84..000000000 --- a/libc/nt/user32/GetThreadDpiAwarenessContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetThreadDpiAwarenessContext,GetThreadDpiAwarenessContext,1962 diff --git a/libc/nt/user32/GetThreadDpiHostingBehavior.S b/libc/nt/user32/GetThreadDpiHostingBehavior.S deleted file mode 100644 index f4e3979a7..000000000 --- a/libc/nt/user32/GetThreadDpiHostingBehavior.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetThreadDpiHostingBehavior,GetThreadDpiHostingBehavior,1963 diff --git a/libc/nt/user32/GetTitleBarInfo.S b/libc/nt/user32/GetTitleBarInfo.S deleted file mode 100644 index 72cf353d0..000000000 --- a/libc/nt/user32/GetTitleBarInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetTitleBarInfo,GetTitleBarInfo,1964 diff --git a/libc/nt/user32/GetTopLevelWindow.S b/libc/nt/user32/GetTopLevelWindow.S deleted file mode 100644 index d6f5cf054..000000000 --- a/libc/nt/user32/GetTopLevelWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetTopLevelWindow,GetTopLevelWindow,1965 diff --git a/libc/nt/user32/GetTopWindow.S b/libc/nt/user32/GetTopWindow.S deleted file mode 100644 index 9557f8e99..000000000 --- a/libc/nt/user32/GetTopWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetTopWindow,GetTopWindow,1966 diff --git a/libc/nt/user32/GetTouchInputInfo.S b/libc/nt/user32/GetTouchInputInfo.S deleted file mode 100644 index b87fc3cd4..000000000 --- a/libc/nt/user32/GetTouchInputInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetTouchInputInfo,GetTouchInputInfo,1967 diff --git a/libc/nt/user32/GetUnpredictedMessagePos.S b/libc/nt/user32/GetUnpredictedMessagePos.S deleted file mode 100644 index 64df5e5c0..000000000 --- a/libc/nt/user32/GetUnpredictedMessagePos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetUnpredictedMessagePos,GetUnpredictedMessagePos,1968 diff --git a/libc/nt/user32/GetUpdateRect.S b/libc/nt/user32/GetUpdateRect.S deleted file mode 100644 index 0c9822c8a..000000000 --- a/libc/nt/user32/GetUpdateRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetUpdateRect,GetUpdateRect,1969 diff --git a/libc/nt/user32/GetUpdateRgn.S b/libc/nt/user32/GetUpdateRgn.S deleted file mode 100644 index 139760a3b..000000000 --- a/libc/nt/user32/GetUpdateRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetUpdateRgn,GetUpdateRgn,1970 diff --git a/libc/nt/user32/GetUpdatedClipboardFormats.S b/libc/nt/user32/GetUpdatedClipboardFormats.S deleted file mode 100644 index 89bdacc74..000000000 --- a/libc/nt/user32/GetUpdatedClipboardFormats.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetUpdatedClipboardFormats,GetUpdatedClipboardFormats,1971 diff --git a/libc/nt/user32/GetUserObjectInformationW.S b/libc/nt/user32/GetUserObjectInformationW.S deleted file mode 100644 index 726ced836..000000000 --- a/libc/nt/user32/GetUserObjectInformationW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetUserObjectInformationW,GetUserObjectInformationW,1973 diff --git a/libc/nt/user32/GetUserObjectSecurity.S b/libc/nt/user32/GetUserObjectSecurity.S deleted file mode 100644 index c5f187295..000000000 --- a/libc/nt/user32/GetUserObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetUserObjectSecurity,GetUserObjectSecurity,1974 diff --git a/libc/nt/user32/GetWinStationInfo.S b/libc/nt/user32/GetWinStationInfo.S deleted file mode 100644 index 3e4ae9438..000000000 --- a/libc/nt/user32/GetWinStationInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWinStationInfo,GetWinStationInfo,1975 diff --git a/libc/nt/user32/GetWindow.S b/libc/nt/user32/GetWindow.S index 6d5653d89..a37283934 100644 --- a/libc/nt/user32/GetWindow.S +++ b/libc/nt/user32/GetWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetWindow,GetWindow,1976 +.imp user32,__imp_GetWindow,GetWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/GetWindowBand.S b/libc/nt/user32/GetWindowBand.S deleted file mode 100644 index 0d82c4a1e..000000000 --- a/libc/nt/user32/GetWindowBand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowBand,GetWindowBand,1977 diff --git a/libc/nt/user32/GetWindowCompositionAttribute.S b/libc/nt/user32/GetWindowCompositionAttribute.S deleted file mode 100644 index 5f203b82c..000000000 --- a/libc/nt/user32/GetWindowCompositionAttribute.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowCompositionAttribute,GetWindowCompositionAttribute,1978 diff --git a/libc/nt/user32/GetWindowCompositionInfo.S b/libc/nt/user32/GetWindowCompositionInfo.S deleted file mode 100644 index 4b457d55a..000000000 --- a/libc/nt/user32/GetWindowCompositionInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowCompositionInfo,GetWindowCompositionInfo,1979 diff --git a/libc/nt/user32/GetWindowContextHelpId.S b/libc/nt/user32/GetWindowContextHelpId.S deleted file mode 100644 index 71aae5f8b..000000000 --- a/libc/nt/user32/GetWindowContextHelpId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowContextHelpId,GetWindowContextHelpId,1980 diff --git a/libc/nt/user32/GetWindowDC.S b/libc/nt/user32/GetWindowDC.S deleted file mode 100644 index e649e19b1..000000000 --- a/libc/nt/user32/GetWindowDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowDC,GetWindowDC,1981 diff --git a/libc/nt/user32/GetWindowDisplayAffinity.S b/libc/nt/user32/GetWindowDisplayAffinity.S deleted file mode 100644 index 7311a3d58..000000000 --- a/libc/nt/user32/GetWindowDisplayAffinity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowDisplayAffinity,GetWindowDisplayAffinity,1982 diff --git a/libc/nt/user32/GetWindowDpiAwarenessContext.S b/libc/nt/user32/GetWindowDpiAwarenessContext.S deleted file mode 100644 index 8d25c3c4a..000000000 --- a/libc/nt/user32/GetWindowDpiAwarenessContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowDpiAwarenessContext,GetWindowDpiAwarenessContext,1983 diff --git a/libc/nt/user32/GetWindowDpiHostingBehavior.S b/libc/nt/user32/GetWindowDpiHostingBehavior.S deleted file mode 100644 index df0825ef9..000000000 --- a/libc/nt/user32/GetWindowDpiHostingBehavior.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowDpiHostingBehavior,GetWindowDpiHostingBehavior,1984 diff --git a/libc/nt/user32/GetWindowFeedbackSetting.S b/libc/nt/user32/GetWindowFeedbackSetting.S deleted file mode 100644 index 31a8d0a3d..000000000 --- a/libc/nt/user32/GetWindowFeedbackSetting.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowFeedbackSetting,GetWindowFeedbackSetting,1985 diff --git a/libc/nt/user32/GetWindowInfo.S b/libc/nt/user32/GetWindowInfo.S deleted file mode 100644 index a145f558c..000000000 --- a/libc/nt/user32/GetWindowInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowInfo,GetWindowInfo,1986 diff --git a/libc/nt/user32/GetWindowLongPtrW.S b/libc/nt/user32/GetWindowLongPtrW.S deleted file mode 100644 index 6658c397e..000000000 --- a/libc/nt/user32/GetWindowLongPtrW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowLongPtrW,GetWindowLongPtrW,1989 diff --git a/libc/nt/user32/GetWindowLongW.S b/libc/nt/user32/GetWindowLongW.S deleted file mode 100644 index c5ae9467a..000000000 --- a/libc/nt/user32/GetWindowLongW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowLongW,GetWindowLongW,1990 diff --git a/libc/nt/user32/GetWindowMinimizeRect.S b/libc/nt/user32/GetWindowMinimizeRect.S deleted file mode 100644 index 4ce3f0569..000000000 --- a/libc/nt/user32/GetWindowMinimizeRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowMinimizeRect,GetWindowMinimizeRect,1991 diff --git a/libc/nt/user32/GetWindowModuleFileNameW.S b/libc/nt/user32/GetWindowModuleFileNameW.S deleted file mode 100644 index 3f260c0c4..000000000 --- a/libc/nt/user32/GetWindowModuleFileNameW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowModuleFileNameW,GetWindowModuleFileNameW,1994 diff --git a/libc/nt/user32/GetWindowPlacement.S b/libc/nt/user32/GetWindowPlacement.S index 8f2357a24..6395ba586 100644 --- a/libc/nt/user32/GetWindowPlacement.S +++ b/libc/nt/user32/GetWindowPlacement.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowPlacement,GetWindowPlacement,1995 +.imp user32,__imp_GetWindowPlacement,GetWindowPlacement .text.windows .ftrace1 diff --git a/libc/nt/user32/GetWindowProcessHandle.S b/libc/nt/user32/GetWindowProcessHandle.S deleted file mode 100644 index b6cbeed1d..000000000 --- a/libc/nt/user32/GetWindowProcessHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowProcessHandle,GetWindowProcessHandle,1996 diff --git a/libc/nt/user32/GetWindowRect.S b/libc/nt/user32/GetWindowRect.S index 2208a8218..1f17fc9a4 100644 --- a/libc/nt/user32/GetWindowRect.S +++ b/libc/nt/user32/GetWindowRect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowRect,GetWindowRect,1997 +.imp user32,__imp_GetWindowRect,GetWindowRect .text.windows .ftrace1 diff --git a/libc/nt/user32/GetWindowRgn.S b/libc/nt/user32/GetWindowRgn.S deleted file mode 100644 index 85f3daaca..000000000 --- a/libc/nt/user32/GetWindowRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowRgn,GetWindowRgn,1998 diff --git a/libc/nt/user32/GetWindowRgnBox.S b/libc/nt/user32/GetWindowRgnBox.S deleted file mode 100644 index 5173ea102..000000000 --- a/libc/nt/user32/GetWindowRgnBox.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowRgnBox,GetWindowRgnBox,1999 diff --git a/libc/nt/user32/GetWindowRgnEx.S b/libc/nt/user32/GetWindowRgnEx.S deleted file mode 100644 index aa26aea3a..000000000 --- a/libc/nt/user32/GetWindowRgnEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowRgnEx,GetWindowRgnEx,2000 diff --git a/libc/nt/user32/GetWindowTextLengthW.S b/libc/nt/user32/GetWindowTextLengthW.S deleted file mode 100644 index 4e072dd0b..000000000 --- a/libc/nt/user32/GetWindowTextLengthW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowTextLengthW,GetWindowTextLengthW,2006 diff --git a/libc/nt/user32/GetWindowTextW.S b/libc/nt/user32/GetWindowTextW.S index d5c394dfd..3f3b2a94f 100644 --- a/libc/nt/user32/GetWindowTextW.S +++ b/libc/nt/user32/GetWindowTextW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowTextW,GetWindowTextW,2007 +.imp user32,__imp_GetWindowTextW,GetWindowTextW .text.windows .ftrace1 diff --git a/libc/nt/user32/GetWindowThreadProcessId.S b/libc/nt/user32/GetWindowThreadProcessId.S deleted file mode 100644 index f50af71ca..000000000 --- a/libc/nt/user32/GetWindowThreadProcessId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowThreadProcessId,GetWindowThreadProcessId,2008 diff --git a/libc/nt/user32/GetWindowWord.S b/libc/nt/user32/GetWindowWord.S deleted file mode 100644 index 5314ae8e8..000000000 --- a/libc/nt/user32/GetWindowWord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GetWindowWord,GetWindowWord,2009 diff --git a/libc/nt/user32/GhostWindowFromHungWindow.S b/libc/nt/user32/GhostWindowFromHungWindow.S deleted file mode 100644 index 35b8aa40f..000000000 --- a/libc/nt/user32/GhostWindowFromHungWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GhostWindowFromHungWindow,GhostWindowFromHungWindow,2011 diff --git a/libc/nt/user32/GrayStringW.S b/libc/nt/user32/GrayStringW.S deleted file mode 100644 index eaad97c23..000000000 --- a/libc/nt/user32/GrayStringW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_GrayStringW,GrayStringW,2013 diff --git a/libc/nt/user32/HandleDelegatedInput.S b/libc/nt/user32/HandleDelegatedInput.S deleted file mode 100644 index fa3e2c6aa..000000000 --- a/libc/nt/user32/HandleDelegatedInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_HandleDelegatedInput,HandleDelegatedInput,2505 diff --git a/libc/nt/user32/HideCaret.S b/libc/nt/user32/HideCaret.S deleted file mode 100644 index f61b586d1..000000000 --- a/libc/nt/user32/HideCaret.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_HideCaret,HideCaret,2014 diff --git a/libc/nt/user32/HiliteMenuItem.S b/libc/nt/user32/HiliteMenuItem.S deleted file mode 100644 index 09f9d3c9f..000000000 --- a/libc/nt/user32/HiliteMenuItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_HiliteMenuItem,HiliteMenuItem,2015 diff --git a/libc/nt/user32/HungWindowFromGhostWindow.S b/libc/nt/user32/HungWindowFromGhostWindow.S deleted file mode 100644 index 8730c6038..000000000 --- a/libc/nt/user32/HungWindowFromGhostWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_HungWindowFromGhostWindow,HungWindowFromGhostWindow,2016 diff --git a/libc/nt/user32/IMPGetIMEW.S b/libc/nt/user32/IMPGetIMEW.S deleted file mode 100644 index 8bddcb9c3..000000000 --- a/libc/nt/user32/IMPGetIMEW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IMPGetIMEW,IMPGetIMEW,2018 diff --git a/libc/nt/user32/IMPQueryIMEW.S b/libc/nt/user32/IMPQueryIMEW.S deleted file mode 100644 index 9b83b0b9c..000000000 --- a/libc/nt/user32/IMPQueryIMEW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IMPQueryIMEW,IMPQueryIMEW,2020 diff --git a/libc/nt/user32/IMPSetIMEW.S b/libc/nt/user32/IMPSetIMEW.S deleted file mode 100644 index 856c0c4cd..000000000 --- a/libc/nt/user32/IMPSetIMEW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IMPSetIMEW,IMPSetIMEW,2022 diff --git a/libc/nt/user32/ImpersonateDdeClientWindow.S b/libc/nt/user32/ImpersonateDdeClientWindow.S deleted file mode 100644 index 15aac10fe..000000000 --- a/libc/nt/user32/ImpersonateDdeClientWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ImpersonateDdeClientWindow,ImpersonateDdeClientWindow,2023 diff --git a/libc/nt/user32/InSendMessage.S b/libc/nt/user32/InSendMessage.S deleted file mode 100644 index 306f73d45..000000000 --- a/libc/nt/user32/InSendMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InSendMessage,InSendMessage,2024 diff --git a/libc/nt/user32/InSendMessageEx.S b/libc/nt/user32/InSendMessageEx.S deleted file mode 100644 index c62365295..000000000 --- a/libc/nt/user32/InSendMessageEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InSendMessageEx,InSendMessageEx,2025 diff --git a/libc/nt/user32/InflateRect.S b/libc/nt/user32/InflateRect.S deleted file mode 100644 index 0c0948c61..000000000 --- a/libc/nt/user32/InflateRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InflateRect,InflateRect,2026 diff --git a/libc/nt/user32/InheritWindowMonitor.S b/libc/nt/user32/InheritWindowMonitor.S deleted file mode 100644 index 36415f1a2..000000000 --- a/libc/nt/user32/InheritWindowMonitor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InheritWindowMonitor,InheritWindowMonitor,2027 diff --git a/libc/nt/user32/InitDManipHook.S b/libc/nt/user32/InitDManipHook.S deleted file mode 100644 index 312eb1545..000000000 --- a/libc/nt/user32/InitDManipHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InitDManipHook,InitDManipHook,2028 diff --git a/libc/nt/user32/InitializeGenericHidInjection.S b/libc/nt/user32/InitializeGenericHidInjection.S deleted file mode 100644 index 5766f288c..000000000 --- a/libc/nt/user32/InitializeGenericHidInjection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InitializeGenericHidInjection,InitializeGenericHidInjection,2029 diff --git a/libc/nt/user32/InitializeInputDeviceInjection.S b/libc/nt/user32/InitializeInputDeviceInjection.S deleted file mode 100644 index 37dd98783..000000000 --- a/libc/nt/user32/InitializeInputDeviceInjection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InitializeInputDeviceInjection,InitializeInputDeviceInjection,2030 diff --git a/libc/nt/user32/InitializeLpkHooks.S b/libc/nt/user32/InitializeLpkHooks.S deleted file mode 100644 index 78bafed72..000000000 --- a/libc/nt/user32/InitializeLpkHooks.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InitializeLpkHooks,InitializeLpkHooks,2031 diff --git a/libc/nt/user32/InitializePointerDeviceInjection.S b/libc/nt/user32/InitializePointerDeviceInjection.S deleted file mode 100644 index d3edcc23c..000000000 --- a/libc/nt/user32/InitializePointerDeviceInjection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InitializePointerDeviceInjection,InitializePointerDeviceInjection,2032 diff --git a/libc/nt/user32/InitializePointerDeviceInjectionEx.S b/libc/nt/user32/InitializePointerDeviceInjectionEx.S deleted file mode 100644 index 5c4664577..000000000 --- a/libc/nt/user32/InitializePointerDeviceInjectionEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InitializePointerDeviceInjectionEx,InitializePointerDeviceInjectionEx,2033 diff --git a/libc/nt/user32/InitializeTouchInjection.S b/libc/nt/user32/InitializeTouchInjection.S deleted file mode 100644 index c548f289f..000000000 --- a/libc/nt/user32/InitializeTouchInjection.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InitializeTouchInjection,InitializeTouchInjection,2034 diff --git a/libc/nt/user32/InjectDeviceInput.S b/libc/nt/user32/InjectDeviceInput.S deleted file mode 100644 index 8ac14c213..000000000 --- a/libc/nt/user32/InjectDeviceInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InjectDeviceInput,InjectDeviceInput,2035 diff --git a/libc/nt/user32/InjectGenericHidInput.S b/libc/nt/user32/InjectGenericHidInput.S deleted file mode 100644 index 092f90818..000000000 --- a/libc/nt/user32/InjectGenericHidInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InjectGenericHidInput,InjectGenericHidInput,2036 diff --git a/libc/nt/user32/InjectKeyboardInput.S b/libc/nt/user32/InjectKeyboardInput.S deleted file mode 100644 index 7c21ade92..000000000 --- a/libc/nt/user32/InjectKeyboardInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InjectKeyboardInput,InjectKeyboardInput,2037 diff --git a/libc/nt/user32/InjectMouseInput.S b/libc/nt/user32/InjectMouseInput.S deleted file mode 100644 index 07125b828..000000000 --- a/libc/nt/user32/InjectMouseInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InjectMouseInput,InjectMouseInput,2038 diff --git a/libc/nt/user32/InjectPointerInput.S b/libc/nt/user32/InjectPointerInput.S deleted file mode 100644 index 37dbf34ff..000000000 --- a/libc/nt/user32/InjectPointerInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InjectPointerInput,InjectPointerInput,2039 diff --git a/libc/nt/user32/InjectTouchInput.S b/libc/nt/user32/InjectTouchInput.S deleted file mode 100644 index 146aacbc4..000000000 --- a/libc/nt/user32/InjectTouchInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InjectTouchInput,InjectTouchInput,2040 diff --git a/libc/nt/user32/InsertMenuItemW.S b/libc/nt/user32/InsertMenuItemW.S deleted file mode 100644 index d40c5bc95..000000000 --- a/libc/nt/user32/InsertMenuItemW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InsertMenuItemW,InsertMenuItemW,2043 diff --git a/libc/nt/user32/InsertMenuW.S b/libc/nt/user32/InsertMenuW.S index ecf0cad0e..29f7d0966 100644 --- a/libc/nt/user32/InsertMenuW.S +++ b/libc/nt/user32/InsertMenuW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_InsertMenuW,InsertMenuW,2044 +.imp user32,__imp_InsertMenuW,InsertMenuW .text.windows .ftrace1 diff --git a/libc/nt/user32/InternalGetWindowIcon.S b/libc/nt/user32/InternalGetWindowIcon.S deleted file mode 100644 index cfaf44298..000000000 --- a/libc/nt/user32/InternalGetWindowIcon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InternalGetWindowIcon,InternalGetWindowIcon,2045 diff --git a/libc/nt/user32/InternalGetWindowText.S b/libc/nt/user32/InternalGetWindowText.S deleted file mode 100644 index 229dc6361..000000000 --- a/libc/nt/user32/InternalGetWindowText.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InternalGetWindowText,InternalGetWindowText,2046 diff --git a/libc/nt/user32/IntersectRect.S b/libc/nt/user32/IntersectRect.S deleted file mode 100644 index f0c3b20a2..000000000 --- a/libc/nt/user32/IntersectRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IntersectRect,IntersectRect,2047 diff --git a/libc/nt/user32/InvalidateRect.S b/libc/nt/user32/InvalidateRect.S index 2e23672ce..122cb3af8 100644 --- a/libc/nt/user32/InvalidateRect.S +++ b/libc/nt/user32/InvalidateRect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_InvalidateRect,InvalidateRect,2048 +.imp user32,__imp_InvalidateRect,InvalidateRect .text.windows .ftrace1 diff --git a/libc/nt/user32/InvalidateRgn.S b/libc/nt/user32/InvalidateRgn.S deleted file mode 100644 index dea2e8bbc..000000000 --- a/libc/nt/user32/InvalidateRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InvalidateRgn,InvalidateRgn,2049 diff --git a/libc/nt/user32/InvertRect.S b/libc/nt/user32/InvertRect.S deleted file mode 100644 index bb759c2b5..000000000 --- a/libc/nt/user32/InvertRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_InvertRect,InvertRect,2050 diff --git a/libc/nt/user32/IsChild.S b/libc/nt/user32/IsChild.S index fd5d5f4fd..9b977c821 100644 --- a/libc/nt/user32/IsChild.S +++ b/libc/nt/user32/IsChild.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_IsChild,IsChild,2059 +.imp user32,__imp_IsChild,IsChild .text.windows .ftrace1 diff --git a/libc/nt/user32/IsClipboardFormatAvailable.S b/libc/nt/user32/IsClipboardFormatAvailable.S deleted file mode 100644 index 2e13ec92c..000000000 --- a/libc/nt/user32/IsClipboardFormatAvailable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsClipboardFormatAvailable,IsClipboardFormatAvailable,2060 diff --git a/libc/nt/user32/IsDialogMessageW.S b/libc/nt/user32/IsDialogMessageW.S deleted file mode 100644 index db9608e28..000000000 --- a/libc/nt/user32/IsDialogMessageW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsDialogMessageW,IsDialogMessageW,2063 diff --git a/libc/nt/user32/IsDlgButtonChecked.S b/libc/nt/user32/IsDlgButtonChecked.S deleted file mode 100644 index 3396fc7c4..000000000 --- a/libc/nt/user32/IsDlgButtonChecked.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsDlgButtonChecked,IsDlgButtonChecked,2064 diff --git a/libc/nt/user32/IsGUIThread.S b/libc/nt/user32/IsGUIThread.S deleted file mode 100644 index 120ff979f..000000000 --- a/libc/nt/user32/IsGUIThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsGUIThread,IsGUIThread,2065 diff --git a/libc/nt/user32/IsHungAppWindow.S b/libc/nt/user32/IsHungAppWindow.S deleted file mode 100644 index 584b04970..000000000 --- a/libc/nt/user32/IsHungAppWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsHungAppWindow,IsHungAppWindow,2066 diff --git a/libc/nt/user32/IsIconic.S b/libc/nt/user32/IsIconic.S index c0e20bd0e..50b87ad83 100644 --- a/libc/nt/user32/IsIconic.S +++ b/libc/nt/user32/IsIconic.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_IsIconic,IsIconic,2067 +.imp user32,__imp_IsIconic,IsIconic .text.windows .ftrace1 diff --git a/libc/nt/user32/IsImmersiveProcess.S b/libc/nt/user32/IsImmersiveProcess.S deleted file mode 100644 index 33b55c611..000000000 --- a/libc/nt/user32/IsImmersiveProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsImmersiveProcess,IsImmersiveProcess,2068 diff --git a/libc/nt/user32/IsInDesktopWindowBand.S b/libc/nt/user32/IsInDesktopWindowBand.S deleted file mode 100644 index 8ba1f9ba8..000000000 --- a/libc/nt/user32/IsInDesktopWindowBand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsInDesktopWindowBand,IsInDesktopWindowBand,2069 diff --git a/libc/nt/user32/IsMenu.S b/libc/nt/user32/IsMenu.S index 893cd3b88..e03c523e3 100644 --- a/libc/nt/user32/IsMenu.S +++ b/libc/nt/user32/IsMenu.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_IsMenu,IsMenu,2070 +.imp user32,__imp_IsMenu,IsMenu .text.windows .ftrace1 diff --git a/libc/nt/user32/IsMouseInPointerEnabled.S b/libc/nt/user32/IsMouseInPointerEnabled.S deleted file mode 100644 index 2a59f4c4e..000000000 --- a/libc/nt/user32/IsMouseInPointerEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsMouseInPointerEnabled,IsMouseInPointerEnabled,2071 diff --git a/libc/nt/user32/IsOneCoreTransformMode.S b/libc/nt/user32/IsOneCoreTransformMode.S deleted file mode 100644 index 5a11cfcd2..000000000 --- a/libc/nt/user32/IsOneCoreTransformMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsOneCoreTransformMode,IsOneCoreTransformMode,2072 diff --git a/libc/nt/user32/IsProcessDPIAware.S b/libc/nt/user32/IsProcessDPIAware.S deleted file mode 100644 index c49bd84ca..000000000 --- a/libc/nt/user32/IsProcessDPIAware.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsProcessDPIAware,IsProcessDPIAware,2073 diff --git a/libc/nt/user32/IsQueueAttached.S b/libc/nt/user32/IsQueueAttached.S deleted file mode 100644 index 7bccb1c84..000000000 --- a/libc/nt/user32/IsQueueAttached.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsQueueAttached,IsQueueAttached,2074 diff --git a/libc/nt/user32/IsRectEmpty.S b/libc/nt/user32/IsRectEmpty.S deleted file mode 100644 index cfc709d21..000000000 --- a/libc/nt/user32/IsRectEmpty.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsRectEmpty,IsRectEmpty,2075 diff --git a/libc/nt/user32/IsSETEnabled.S b/libc/nt/user32/IsSETEnabled.S deleted file mode 100644 index abf6d789e..000000000 --- a/libc/nt/user32/IsSETEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsSETEnabled,IsSETEnabled,2076 diff --git a/libc/nt/user32/IsServerSideWindow.S b/libc/nt/user32/IsServerSideWindow.S deleted file mode 100644 index 61691ff82..000000000 --- a/libc/nt/user32/IsServerSideWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsServerSideWindow,IsServerSideWindow,2077 diff --git a/libc/nt/user32/IsThreadDesktopComposited.S b/libc/nt/user32/IsThreadDesktopComposited.S deleted file mode 100644 index 8f81f143b..000000000 --- a/libc/nt/user32/IsThreadDesktopComposited.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsThreadDesktopComposited,IsThreadDesktopComposited,2078 diff --git a/libc/nt/user32/IsThreadMessageQueueAttached.S b/libc/nt/user32/IsThreadMessageQueueAttached.S deleted file mode 100644 index aec9825f8..000000000 --- a/libc/nt/user32/IsThreadMessageQueueAttached.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsThreadMessageQueueAttached,IsThreadMessageQueueAttached,2528 diff --git a/libc/nt/user32/IsThreadTSFEventAware.S b/libc/nt/user32/IsThreadTSFEventAware.S deleted file mode 100644 index b0f188521..000000000 --- a/libc/nt/user32/IsThreadTSFEventAware.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsThreadTSFEventAware,IsThreadTSFEventAware,2079 diff --git a/libc/nt/user32/IsTopLevelWindow.S b/libc/nt/user32/IsTopLevelWindow.S deleted file mode 100644 index a445ca1c5..000000000 --- a/libc/nt/user32/IsTopLevelWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsTopLevelWindow,IsTopLevelWindow,2080 diff --git a/libc/nt/user32/IsTouchWindow.S b/libc/nt/user32/IsTouchWindow.S deleted file mode 100644 index d5e139dd5..000000000 --- a/libc/nt/user32/IsTouchWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsTouchWindow,IsTouchWindow,2081 diff --git a/libc/nt/user32/IsValidDpiAwarenessContext.S b/libc/nt/user32/IsValidDpiAwarenessContext.S deleted file mode 100644 index 25184dd08..000000000 --- a/libc/nt/user32/IsValidDpiAwarenessContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsValidDpiAwarenessContext,IsValidDpiAwarenessContext,2082 diff --git a/libc/nt/user32/IsWinEventHookInstalled.S b/libc/nt/user32/IsWinEventHookInstalled.S deleted file mode 100644 index 4db3972b0..000000000 --- a/libc/nt/user32/IsWinEventHookInstalled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsWinEventHookInstalled,IsWinEventHookInstalled,2083 diff --git a/libc/nt/user32/IsWindow.S b/libc/nt/user32/IsWindow.S index cd89d36db..4b56b4526 100644 --- a/libc/nt/user32/IsWindow.S +++ b/libc/nt/user32/IsWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_IsWindow,IsWindow,2084 +.imp user32,__imp_IsWindow,IsWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/IsWindowArranged.S b/libc/nt/user32/IsWindowArranged.S deleted file mode 100644 index 4e9423244..000000000 --- a/libc/nt/user32/IsWindowArranged.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsWindowArranged,IsWindowArranged,2085 diff --git a/libc/nt/user32/IsWindowEnabled.S b/libc/nt/user32/IsWindowEnabled.S deleted file mode 100644 index b751eb491..000000000 --- a/libc/nt/user32/IsWindowEnabled.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsWindowEnabled,IsWindowEnabled,2086 diff --git a/libc/nt/user32/IsWindowInDestroy.S b/libc/nt/user32/IsWindowInDestroy.S deleted file mode 100644 index 53255883a..000000000 --- a/libc/nt/user32/IsWindowInDestroy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsWindowInDestroy,IsWindowInDestroy,2087 diff --git a/libc/nt/user32/IsWindowRedirectedForPrint.S b/libc/nt/user32/IsWindowRedirectedForPrint.S deleted file mode 100644 index 07aa2ac94..000000000 --- a/libc/nt/user32/IsWindowRedirectedForPrint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsWindowRedirectedForPrint,IsWindowRedirectedForPrint,2088 diff --git a/libc/nt/user32/IsWindowUnicode.S b/libc/nt/user32/IsWindowUnicode.S deleted file mode 100644 index a6bb36368..000000000 --- a/libc/nt/user32/IsWindowUnicode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_IsWindowUnicode,IsWindowUnicode,2089 diff --git a/libc/nt/user32/IsWindowVisible.S b/libc/nt/user32/IsWindowVisible.S index 4531878b2..58767213f 100644 --- a/libc/nt/user32/IsWindowVisible.S +++ b/libc/nt/user32/IsWindowVisible.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_IsWindowVisible,IsWindowVisible,2090 +.imp user32,__imp_IsWindowVisible,IsWindowVisible .text.windows .ftrace1 diff --git a/libc/nt/user32/IsZoomed.S b/libc/nt/user32/IsZoomed.S index 61425c299..2b7c222ca 100644 --- a/libc/nt/user32/IsZoomed.S +++ b/libc/nt/user32/IsZoomed.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_IsZoomed,IsZoomed,2092 +.imp user32,__imp_IsZoomed,IsZoomed .text.windows .ftrace1 diff --git a/libc/nt/user32/KillTimer.S b/libc/nt/user32/KillTimer.S index 5e0b51445..a8b729367 100644 --- a/libc/nt/user32/KillTimer.S +++ b/libc/nt/user32/KillTimer.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_KillTimer,KillTimer,2093 +.imp user32,__imp_KillTimer,KillTimer .text.windows .ftrace1 diff --git a/libc/nt/user32/LoadAcceleratorsW.S b/libc/nt/user32/LoadAcceleratorsW.S deleted file mode 100644 index 7a568be4b..000000000 --- a/libc/nt/user32/LoadAcceleratorsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadAcceleratorsW,LoadAcceleratorsW,2095 diff --git a/libc/nt/user32/LoadBitmapW.S b/libc/nt/user32/LoadBitmapW.S deleted file mode 100644 index cf8a84706..000000000 --- a/libc/nt/user32/LoadBitmapW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadBitmapW,LoadBitmapW,2097 diff --git a/libc/nt/user32/LoadCursorFromFileW.S b/libc/nt/user32/LoadCursorFromFileW.S deleted file mode 100644 index fe87eb459..000000000 --- a/libc/nt/user32/LoadCursorFromFileW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadCursorFromFileW,LoadCursorFromFileW,2100 diff --git a/libc/nt/user32/LoadCursorW.S b/libc/nt/user32/LoadCursorW.S index ff068b250..87657a5c9 100644 --- a/libc/nt/user32/LoadCursorW.S +++ b/libc/nt/user32/LoadCursorW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_LoadCursorW,LoadCursorW,2101 +.imp user32,__imp_LoadCursorW,LoadCursorW .text.windows .ftrace1 diff --git a/libc/nt/user32/LoadIconW.S b/libc/nt/user32/LoadIconW.S index 847cd4336..a4f8ccb7d 100644 --- a/libc/nt/user32/LoadIconW.S +++ b/libc/nt/user32/LoadIconW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_LoadIconW,LoadIconW,2103 +.imp user32,__imp_LoadIconW,LoadIconW .text.windows .ftrace1 diff --git a/libc/nt/user32/LoadImageW.S b/libc/nt/user32/LoadImageW.S index 39428b7e6..bb1614167 100644 --- a/libc/nt/user32/LoadImageW.S +++ b/libc/nt/user32/LoadImageW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_LoadImageW,LoadImageW,2105 +.imp user32,__imp_LoadImageW,LoadImageW .text.windows .ftrace1 diff --git a/libc/nt/user32/LoadKeyboardLayoutEx.S b/libc/nt/user32/LoadKeyboardLayoutEx.S deleted file mode 100644 index a3d79df60..000000000 --- a/libc/nt/user32/LoadKeyboardLayoutEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadKeyboardLayoutEx,LoadKeyboardLayoutEx,2107 diff --git a/libc/nt/user32/LoadKeyboardLayoutW.S b/libc/nt/user32/LoadKeyboardLayoutW.S deleted file mode 100644 index bf0fdf699..000000000 --- a/libc/nt/user32/LoadKeyboardLayoutW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadKeyboardLayoutW,LoadKeyboardLayoutW,2108 diff --git a/libc/nt/user32/LoadLocalFonts.S b/libc/nt/user32/LoadLocalFonts.S deleted file mode 100644 index cdfddd69c..000000000 --- a/libc/nt/user32/LoadLocalFonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadLocalFonts,LoadLocalFonts,2109 diff --git a/libc/nt/user32/LoadMenuIndirectW.S b/libc/nt/user32/LoadMenuIndirectW.S deleted file mode 100644 index ce02d0229..000000000 --- a/libc/nt/user32/LoadMenuIndirectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadMenuIndirectW,LoadMenuIndirectW,2112 diff --git a/libc/nt/user32/LoadMenuW.S b/libc/nt/user32/LoadMenuW.S deleted file mode 100644 index b75b1b9ec..000000000 --- a/libc/nt/user32/LoadMenuW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadMenuW,LoadMenuW,2113 diff --git a/libc/nt/user32/LoadRemoteFonts.S b/libc/nt/user32/LoadRemoteFonts.S deleted file mode 100644 index 95c76596a..000000000 --- a/libc/nt/user32/LoadRemoteFonts.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LoadRemoteFonts,LoadRemoteFonts,2114 diff --git a/libc/nt/user32/LockSetForegroundWindow.S b/libc/nt/user32/LockSetForegroundWindow.S deleted file mode 100644 index 06bb64e3f..000000000 --- a/libc/nt/user32/LockSetForegroundWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LockSetForegroundWindow,LockSetForegroundWindow,2117 diff --git a/libc/nt/user32/LockWindowStation.S b/libc/nt/user32/LockWindowStation.S deleted file mode 100644 index 492412bc7..000000000 --- a/libc/nt/user32/LockWindowStation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LockWindowStation,LockWindowStation,2118 diff --git a/libc/nt/user32/LockWindowUpdate.S b/libc/nt/user32/LockWindowUpdate.S deleted file mode 100644 index 8eb8c6045..000000000 --- a/libc/nt/user32/LockWindowUpdate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LockWindowUpdate,LockWindowUpdate,2119 diff --git a/libc/nt/user32/LockWorkStation.S b/libc/nt/user32/LockWorkStation.S deleted file mode 100644 index 52ad241b5..000000000 --- a/libc/nt/user32/LockWorkStation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LockWorkStation,LockWorkStation,2120 diff --git a/libc/nt/user32/LogicalToPhysicalPoint.S b/libc/nt/user32/LogicalToPhysicalPoint.S deleted file mode 100644 index 1e87a270a..000000000 --- a/libc/nt/user32/LogicalToPhysicalPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LogicalToPhysicalPoint,LogicalToPhysicalPoint,2121 diff --git a/libc/nt/user32/LogicalToPhysicalPointForPerMonitorDPI.S b/libc/nt/user32/LogicalToPhysicalPointForPerMonitorDPI.S deleted file mode 100644 index fdbedb258..000000000 --- a/libc/nt/user32/LogicalToPhysicalPointForPerMonitorDPI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LogicalToPhysicalPointForPerMonitorDPI,LogicalToPhysicalPointForPerMonitorDPI,2122 diff --git a/libc/nt/user32/LookupIconIdFromDirectory.S b/libc/nt/user32/LookupIconIdFromDirectory.S deleted file mode 100644 index 18a982fec..000000000 --- a/libc/nt/user32/LookupIconIdFromDirectory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LookupIconIdFromDirectory,LookupIconIdFromDirectory,2123 diff --git a/libc/nt/user32/LookupIconIdFromDirectoryEx.S b/libc/nt/user32/LookupIconIdFromDirectoryEx.S deleted file mode 100644 index daff466c2..000000000 --- a/libc/nt/user32/LookupIconIdFromDirectoryEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_LookupIconIdFromDirectoryEx,LookupIconIdFromDirectoryEx,2124 diff --git a/libc/nt/user32/MBToWCSEx.S b/libc/nt/user32/MBToWCSEx.S deleted file mode 100644 index f4fd0d5cc..000000000 --- a/libc/nt/user32/MBToWCSEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MBToWCSEx,MBToWCSEx,2125 diff --git a/libc/nt/user32/MBToWCSExt.S b/libc/nt/user32/MBToWCSExt.S deleted file mode 100644 index 026473dc7..000000000 --- a/libc/nt/user32/MBToWCSExt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MBToWCSExt,MBToWCSExt,2126 diff --git a/libc/nt/user32/MB_GetString.S b/libc/nt/user32/MB_GetString.S deleted file mode 100644 index 6cd1ab5e1..000000000 --- a/libc/nt/user32/MB_GetString.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MB_GetString,MB_GetString,2127 diff --git a/libc/nt/user32/MITActivateInputProcessing.S b/libc/nt/user32/MITActivateInputProcessing.S deleted file mode 100644 index 30388bce7..000000000 --- a/libc/nt/user32/MITActivateInputProcessing.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITActivateInputProcessing,MITActivateInputProcessing,2128 diff --git a/libc/nt/user32/MITBindInputTypeToMonitors.S b/libc/nt/user32/MITBindInputTypeToMonitors.S deleted file mode 100644 index 6a7912876..000000000 --- a/libc/nt/user32/MITBindInputTypeToMonitors.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITBindInputTypeToMonitors,MITBindInputTypeToMonitors,2129 diff --git a/libc/nt/user32/MITCoreMsgKGetConnectionHandle.S b/libc/nt/user32/MITCoreMsgKGetConnectionHandle.S deleted file mode 100644 index c35615669..000000000 --- a/libc/nt/user32/MITCoreMsgKGetConnectionHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITCoreMsgKGetConnectionHandle,MITCoreMsgKGetConnectionHandle,2130 diff --git a/libc/nt/user32/MITCoreMsgKOpenConnectionTo.S b/libc/nt/user32/MITCoreMsgKOpenConnectionTo.S deleted file mode 100644 index b09e0b1ba..000000000 --- a/libc/nt/user32/MITCoreMsgKOpenConnectionTo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITCoreMsgKOpenConnectionTo,MITCoreMsgKOpenConnectionTo,2131 diff --git a/libc/nt/user32/MITCoreMsgKSend.S b/libc/nt/user32/MITCoreMsgKSend.S deleted file mode 100644 index 9c9794eb0..000000000 --- a/libc/nt/user32/MITCoreMsgKSend.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITCoreMsgKSend,MITCoreMsgKSend,2132 diff --git a/libc/nt/user32/MITDeactivateInputProcessing.S b/libc/nt/user32/MITDeactivateInputProcessing.S deleted file mode 100644 index 6001968fc..000000000 --- a/libc/nt/user32/MITDeactivateInputProcessing.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITDeactivateInputProcessing,MITDeactivateInputProcessing,2133 diff --git a/libc/nt/user32/MITDisableMouseIntercept.S b/libc/nt/user32/MITDisableMouseIntercept.S deleted file mode 100644 index 1a878d5b3..000000000 --- a/libc/nt/user32/MITDisableMouseIntercept.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITDisableMouseIntercept,MITDisableMouseIntercept,2134 diff --git a/libc/nt/user32/MITDispatchCompletion.S b/libc/nt/user32/MITDispatchCompletion.S deleted file mode 100644 index add3167e7..000000000 --- a/libc/nt/user32/MITDispatchCompletion.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITDispatchCompletion,MITDispatchCompletion,2135 diff --git a/libc/nt/user32/MITEnableMouseIntercept.S b/libc/nt/user32/MITEnableMouseIntercept.S deleted file mode 100644 index 21e28d36f..000000000 --- a/libc/nt/user32/MITEnableMouseIntercept.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITEnableMouseIntercept,MITEnableMouseIntercept,2136 diff --git a/libc/nt/user32/MITGetCursorUpdateHandle.S b/libc/nt/user32/MITGetCursorUpdateHandle.S deleted file mode 100644 index b7571ac08..000000000 --- a/libc/nt/user32/MITGetCursorUpdateHandle.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITGetCursorUpdateHandle,MITGetCursorUpdateHandle,2137 diff --git a/libc/nt/user32/MITInjectLegacyISMTouchFrame.S b/libc/nt/user32/MITInjectLegacyISMTouchFrame.S deleted file mode 100644 index 342ceb553..000000000 --- a/libc/nt/user32/MITInjectLegacyISMTouchFrame.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITInjectLegacyISMTouchFrame,MITInjectLegacyISMTouchFrame,2138 diff --git a/libc/nt/user32/MITRegisterManipulationThread.S b/libc/nt/user32/MITRegisterManipulationThread.S deleted file mode 100644 index 24e84b358..000000000 --- a/libc/nt/user32/MITRegisterManipulationThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITRegisterManipulationThread,MITRegisterManipulationThread,2139 diff --git a/libc/nt/user32/MITSetForegroundRoutingInfo.S b/libc/nt/user32/MITSetForegroundRoutingInfo.S deleted file mode 100644 index 9f01fe901..000000000 --- a/libc/nt/user32/MITSetForegroundRoutingInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITSetForegroundRoutingInfo,MITSetForegroundRoutingInfo,2140 diff --git a/libc/nt/user32/MITSetInputCallbacks.S b/libc/nt/user32/MITSetInputCallbacks.S deleted file mode 100644 index 0a832629d..000000000 --- a/libc/nt/user32/MITSetInputCallbacks.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITSetInputCallbacks,MITSetInputCallbacks,2141 diff --git a/libc/nt/user32/MITSetInputDelegationMode.S b/libc/nt/user32/MITSetInputDelegationMode.S deleted file mode 100644 index 414bb0a4e..000000000 --- a/libc/nt/user32/MITSetInputDelegationMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITSetInputDelegationMode,MITSetInputDelegationMode,2142 diff --git a/libc/nt/user32/MITSetLastInputRecipient.S b/libc/nt/user32/MITSetLastInputRecipient.S deleted file mode 100644 index f7ee8939c..000000000 --- a/libc/nt/user32/MITSetLastInputRecipient.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITSetLastInputRecipient,MITSetLastInputRecipient,2143 diff --git a/libc/nt/user32/MITSetManipulationInputTarget.S b/libc/nt/user32/MITSetManipulationInputTarget.S deleted file mode 100644 index 4f99088aa..000000000 --- a/libc/nt/user32/MITSetManipulationInputTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITSetManipulationInputTarget,MITSetManipulationInputTarget,2144 diff --git a/libc/nt/user32/MITStopAndEndInertia.S b/libc/nt/user32/MITStopAndEndInertia.S deleted file mode 100644 index 51d1385af..000000000 --- a/libc/nt/user32/MITStopAndEndInertia.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITStopAndEndInertia,MITStopAndEndInertia,2145 diff --git a/libc/nt/user32/MITSynthesizeMouseInput.S b/libc/nt/user32/MITSynthesizeMouseInput.S deleted file mode 100644 index 31d3d44cf..000000000 --- a/libc/nt/user32/MITSynthesizeMouseInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITSynthesizeMouseInput,MITSynthesizeMouseInput,2146 diff --git a/libc/nt/user32/MITSynthesizeMouseWheel.S b/libc/nt/user32/MITSynthesizeMouseWheel.S deleted file mode 100644 index 59f69c629..000000000 --- a/libc/nt/user32/MITSynthesizeMouseWheel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITSynthesizeMouseWheel,MITSynthesizeMouseWheel,2147 diff --git a/libc/nt/user32/MITSynthesizeTouchInput.S b/libc/nt/user32/MITSynthesizeTouchInput.S deleted file mode 100644 index bd4f6952e..000000000 --- a/libc/nt/user32/MITSynthesizeTouchInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITSynthesizeTouchInput,MITSynthesizeTouchInput,2148 diff --git a/libc/nt/user32/MITUpdateInputGlobals.S b/libc/nt/user32/MITUpdateInputGlobals.S deleted file mode 100644 index 3dc75baf0..000000000 --- a/libc/nt/user32/MITUpdateInputGlobals.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITUpdateInputGlobals,MITUpdateInputGlobals,2149 diff --git a/libc/nt/user32/MITWaitForMultipleObjectsEx.S b/libc/nt/user32/MITWaitForMultipleObjectsEx.S deleted file mode 100644 index 9a596c00d..000000000 --- a/libc/nt/user32/MITWaitForMultipleObjectsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MITWaitForMultipleObjectsEx,MITWaitForMultipleObjectsEx,2150 diff --git a/libc/nt/user32/MakeThreadTSFEventAware.S b/libc/nt/user32/MakeThreadTSFEventAware.S deleted file mode 100644 index 6d5758be1..000000000 --- a/libc/nt/user32/MakeThreadTSFEventAware.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MakeThreadTSFEventAware,MakeThreadTSFEventAware,2151 diff --git a/libc/nt/user32/MapDialogRect.S b/libc/nt/user32/MapDialogRect.S deleted file mode 100644 index ca1620fb7..000000000 --- a/libc/nt/user32/MapDialogRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MapDialogRect,MapDialogRect,2152 diff --git a/libc/nt/user32/MapVirtualKeyExW.S b/libc/nt/user32/MapVirtualKeyExW.S index b316f9dd0..97fc81085 100644 --- a/libc/nt/user32/MapVirtualKeyExW.S +++ b/libc/nt/user32/MapVirtualKeyExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_MapVirtualKeyExW,MapVirtualKeyExW,2155 +.imp user32,__imp_MapVirtualKeyExW,MapVirtualKeyExW .text.windows .ftrace1 diff --git a/libc/nt/user32/MapVirtualKeyW.S b/libc/nt/user32/MapVirtualKeyW.S deleted file mode 100644 index 6a38755d4..000000000 --- a/libc/nt/user32/MapVirtualKeyW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MapVirtualKeyW,MapVirtualKeyW,2156 diff --git a/libc/nt/user32/MapVisualRelativePoints.S b/libc/nt/user32/MapVisualRelativePoints.S deleted file mode 100644 index 87e1cf880..000000000 --- a/libc/nt/user32/MapVisualRelativePoints.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MapVisualRelativePoints,MapVisualRelativePoints,2157 diff --git a/libc/nt/user32/MapWindowPoints.S b/libc/nt/user32/MapWindowPoints.S deleted file mode 100644 index 6f0fe44b5..000000000 --- a/libc/nt/user32/MapWindowPoints.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MapWindowPoints,MapWindowPoints,2158 diff --git a/libc/nt/user32/MenuItemFromPoint.S b/libc/nt/user32/MenuItemFromPoint.S deleted file mode 100644 index 3effffc7a..000000000 --- a/libc/nt/user32/MenuItemFromPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MenuItemFromPoint,MenuItemFromPoint,2159 diff --git a/libc/nt/user32/MenuWindowProcW.S b/libc/nt/user32/MenuWindowProcW.S deleted file mode 100644 index 425488ec7..000000000 --- a/libc/nt/user32/MenuWindowProcW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MenuWindowProcW,MenuWindowProcW,2161 diff --git a/libc/nt/user32/MessageBeep.S b/libc/nt/user32/MessageBeep.S deleted file mode 100644 index 42821eda9..000000000 --- a/libc/nt/user32/MessageBeep.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MessageBeep,MessageBeep,2162 diff --git a/libc/nt/user32/MessageBoxExW.S b/libc/nt/user32/MessageBoxExW.S index 6e2cc411e..c2092f7d9 100644 --- a/libc/nt/user32/MessageBoxExW.S +++ b/libc/nt/user32/MessageBoxExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_MessageBoxExW,MessageBoxExW,2165 +.imp user32,__imp_MessageBoxExW,MessageBoxExW .text.windows .ftrace1 diff --git a/libc/nt/user32/MessageBoxIndirectW.S b/libc/nt/user32/MessageBoxIndirectW.S deleted file mode 100644 index 7a5b9f1fd..000000000 --- a/libc/nt/user32/MessageBoxIndirectW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MessageBoxIndirectW,MessageBoxIndirectW,2167 diff --git a/libc/nt/user32/MessageBoxTimeoutW.S b/libc/nt/user32/MessageBoxTimeoutW.S deleted file mode 100644 index 9b64e3eb6..000000000 --- a/libc/nt/user32/MessageBoxTimeoutW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MessageBoxTimeoutW,MessageBoxTimeoutW,2169 diff --git a/libc/nt/user32/MessageBoxW.S b/libc/nt/user32/MessageBoxW.S index 8755002ea..85345a4b9 100644 --- a/libc/nt/user32/MessageBoxW.S +++ b/libc/nt/user32/MessageBoxW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_MessageBoxW,MessageBoxW,2170 +.imp user32,__imp_MessageBoxW,MessageBoxW .text.windows .ftrace1 diff --git a/libc/nt/user32/ModifyMenuW.S b/libc/nt/user32/ModifyMenuW.S deleted file mode 100644 index 389bb4a54..000000000 --- a/libc/nt/user32/ModifyMenuW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ModifyMenuW,ModifyMenuW,2172 diff --git a/libc/nt/user32/MonitorFromPoint.S b/libc/nt/user32/MonitorFromPoint.S deleted file mode 100644 index 9afe4a22e..000000000 --- a/libc/nt/user32/MonitorFromPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MonitorFromPoint,MonitorFromPoint,2173 diff --git a/libc/nt/user32/MonitorFromRect.S b/libc/nt/user32/MonitorFromRect.S deleted file mode 100644 index 491d031bd..000000000 --- a/libc/nt/user32/MonitorFromRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MonitorFromRect,MonitorFromRect,2174 diff --git a/libc/nt/user32/MonitorFromWindow.S b/libc/nt/user32/MonitorFromWindow.S deleted file mode 100644 index 5254e0286..000000000 --- a/libc/nt/user32/MonitorFromWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MonitorFromWindow,MonitorFromWindow,2175 diff --git a/libc/nt/user32/MoveWindow.S b/libc/nt/user32/MoveWindow.S index 9fb3b8de6..54ad218d6 100644 --- a/libc/nt/user32/MoveWindow.S +++ b/libc/nt/user32/MoveWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_MoveWindow,MoveWindow,2176 +.imp user32,__imp_MoveWindow,MoveWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/MsgWaitForMultipleObjects.S b/libc/nt/user32/MsgWaitForMultipleObjects.S deleted file mode 100644 index 10d5e8731..000000000 --- a/libc/nt/user32/MsgWaitForMultipleObjects.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MsgWaitForMultipleObjects,MsgWaitForMultipleObjects,2177 diff --git a/libc/nt/user32/MsgWaitForMultipleObjectsEx.S b/libc/nt/user32/MsgWaitForMultipleObjectsEx.S deleted file mode 100644 index 9f358b33d..000000000 --- a/libc/nt/user32/MsgWaitForMultipleObjectsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_MsgWaitForMultipleObjectsEx,MsgWaitForMultipleObjectsEx,2178 diff --git a/libc/nt/user32/NotifyOverlayWindow.S b/libc/nt/user32/NotifyOverlayWindow.S deleted file mode 100644 index a46053289..000000000 --- a/libc/nt/user32/NotifyOverlayWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_NotifyOverlayWindow,NotifyOverlayWindow,2179 diff --git a/libc/nt/user32/NotifyWinEvent.S b/libc/nt/user32/NotifyWinEvent.S deleted file mode 100644 index 9e07d925d..000000000 --- a/libc/nt/user32/NotifyWinEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_NotifyWinEvent,NotifyWinEvent,2180 diff --git a/libc/nt/user32/OemKeyScan.S b/libc/nt/user32/OemKeyScan.S deleted file mode 100644 index 867316fc0..000000000 --- a/libc/nt/user32/OemKeyScan.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OemKeyScan,OemKeyScan,2181 diff --git a/libc/nt/user32/OemToCharBuffW.S b/libc/nt/user32/OemToCharBuffW.S deleted file mode 100644 index 9a8a4f3a9..000000000 --- a/libc/nt/user32/OemToCharBuffW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OemToCharBuffW,OemToCharBuffW,2184 diff --git a/libc/nt/user32/OemToCharW.S b/libc/nt/user32/OemToCharW.S deleted file mode 100644 index 97203b374..000000000 --- a/libc/nt/user32/OemToCharW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OemToCharW,OemToCharW,2185 diff --git a/libc/nt/user32/OffsetRect.S b/libc/nt/user32/OffsetRect.S deleted file mode 100644 index d9138b8ea..000000000 --- a/libc/nt/user32/OffsetRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OffsetRect,OffsetRect,2186 diff --git a/libc/nt/user32/OpenClipboard.S b/libc/nt/user32/OpenClipboard.S deleted file mode 100644 index 26a2a545c..000000000 --- a/libc/nt/user32/OpenClipboard.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OpenClipboard,OpenClipboard,2187 diff --git a/libc/nt/user32/OpenDesktopW.S b/libc/nt/user32/OpenDesktopW.S deleted file mode 100644 index 3ab2c08b8..000000000 --- a/libc/nt/user32/OpenDesktopW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OpenDesktopW,OpenDesktopW,2189 diff --git a/libc/nt/user32/OpenIcon.S b/libc/nt/user32/OpenIcon.S deleted file mode 100644 index 63763e515..000000000 --- a/libc/nt/user32/OpenIcon.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OpenIcon,OpenIcon,2190 diff --git a/libc/nt/user32/OpenInputDesktop.S b/libc/nt/user32/OpenInputDesktop.S deleted file mode 100644 index 741622884..000000000 --- a/libc/nt/user32/OpenInputDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OpenInputDesktop,OpenInputDesktop,2191 diff --git a/libc/nt/user32/OpenThreadDesktop.S b/libc/nt/user32/OpenThreadDesktop.S deleted file mode 100644 index f4e463908..000000000 --- a/libc/nt/user32/OpenThreadDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OpenThreadDesktop,OpenThreadDesktop,2192 diff --git a/libc/nt/user32/OpenWindowStationW.S b/libc/nt/user32/OpenWindowStationW.S deleted file mode 100644 index 8cfb9f5d6..000000000 --- a/libc/nt/user32/OpenWindowStationW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_OpenWindowStationW,OpenWindowStationW,2194 diff --git a/libc/nt/user32/PackDDElParam.S b/libc/nt/user32/PackDDElParam.S deleted file mode 100644 index c158c9b94..000000000 --- a/libc/nt/user32/PackDDElParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PackDDElParam,PackDDElParam,2195 diff --git a/libc/nt/user32/PackTouchHitTestingProximityEvaluation.S b/libc/nt/user32/PackTouchHitTestingProximityEvaluation.S deleted file mode 100644 index 2d4f3a30d..000000000 --- a/libc/nt/user32/PackTouchHitTestingProximityEvaluation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PackTouchHitTestingProximityEvaluation,PackTouchHitTestingProximityEvaluation,2196 diff --git a/libc/nt/user32/PaintDesktop.S b/libc/nt/user32/PaintDesktop.S deleted file mode 100644 index 963975552..000000000 --- a/libc/nt/user32/PaintDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PaintDesktop,PaintDesktop,2197 diff --git a/libc/nt/user32/PaintMenuBar.S b/libc/nt/user32/PaintMenuBar.S deleted file mode 100644 index 3686ced56..000000000 --- a/libc/nt/user32/PaintMenuBar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PaintMenuBar,PaintMenuBar,2198 diff --git a/libc/nt/user32/PaintMonitor.S b/libc/nt/user32/PaintMonitor.S deleted file mode 100644 index 87e01b8a7..000000000 --- a/libc/nt/user32/PaintMonitor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PaintMonitor,PaintMonitor,2199 diff --git a/libc/nt/user32/PeekMessageW.S b/libc/nt/user32/PeekMessageW.S index 34e99907f..f2d9d8d1b 100644 --- a/libc/nt/user32/PeekMessageW.S +++ b/libc/nt/user32/PeekMessageW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_PeekMessageW,PeekMessageW,2201 +.imp user32,__imp_PeekMessageW,PeekMessageW .text.windows .ftrace1 diff --git a/libc/nt/user32/PhysicalToLogicalPoint.S b/libc/nt/user32/PhysicalToLogicalPoint.S deleted file mode 100644 index 942be2c92..000000000 --- a/libc/nt/user32/PhysicalToLogicalPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PhysicalToLogicalPoint,PhysicalToLogicalPoint,2202 diff --git a/libc/nt/user32/PhysicalToLogicalPointForPerMonitorDPI.S b/libc/nt/user32/PhysicalToLogicalPointForPerMonitorDPI.S deleted file mode 100644 index 38ca0af33..000000000 --- a/libc/nt/user32/PhysicalToLogicalPointForPerMonitorDPI.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PhysicalToLogicalPointForPerMonitorDPI,PhysicalToLogicalPointForPerMonitorDPI,2203 diff --git a/libc/nt/user32/PostMessageW.S b/libc/nt/user32/PostMessageW.S deleted file mode 100644 index 44a3ae784..000000000 --- a/libc/nt/user32/PostMessageW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PostMessageW,PostMessageW,2205 diff --git a/libc/nt/user32/PostQuitMessage.S b/libc/nt/user32/PostQuitMessage.S index ecc4c2207..79c5de3fa 100644 --- a/libc/nt/user32/PostQuitMessage.S +++ b/libc/nt/user32/PostQuitMessage.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_PostQuitMessage,PostQuitMessage,2206 +.imp user32,__imp_PostQuitMessage,PostQuitMessage .text.windows .ftrace1 diff --git a/libc/nt/user32/PostThreadMessageW.S b/libc/nt/user32/PostThreadMessageW.S deleted file mode 100644 index 8a8e10979..000000000 --- a/libc/nt/user32/PostThreadMessageW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PostThreadMessageW,PostThreadMessageW,2208 diff --git a/libc/nt/user32/PrintWindow.S b/libc/nt/user32/PrintWindow.S deleted file mode 100644 index 3320675bd..000000000 --- a/libc/nt/user32/PrintWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PrintWindow,PrintWindow,2209 diff --git a/libc/nt/user32/PrivateExtractIconExW.S b/libc/nt/user32/PrivateExtractIconExW.S deleted file mode 100644 index 30b4703d0..000000000 --- a/libc/nt/user32/PrivateExtractIconExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PrivateExtractIconExW,PrivateExtractIconExW,2211 diff --git a/libc/nt/user32/PrivateExtractIconsW.S b/libc/nt/user32/PrivateExtractIconsW.S deleted file mode 100644 index 56c289270..000000000 --- a/libc/nt/user32/PrivateExtractIconsW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PrivateExtractIconsW,PrivateExtractIconsW,2213 diff --git a/libc/nt/user32/PrivateRegisterICSProc.S b/libc/nt/user32/PrivateRegisterICSProc.S deleted file mode 100644 index ff6001eca..000000000 --- a/libc/nt/user32/PrivateRegisterICSProc.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PrivateRegisterICSProc,PrivateRegisterICSProc,2214 diff --git a/libc/nt/user32/PtInRect.S b/libc/nt/user32/PtInRect.S deleted file mode 100644 index 1a9803e08..000000000 --- a/libc/nt/user32/PtInRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_PtInRect,PtInRect,2215 diff --git a/libc/nt/user32/QueryBSDRWindow.S b/libc/nt/user32/QueryBSDRWindow.S deleted file mode 100644 index ca8f06ab1..000000000 --- a/libc/nt/user32/QueryBSDRWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_QueryBSDRWindow,QueryBSDRWindow,2216 diff --git a/libc/nt/user32/QueryDisplayConfig.S b/libc/nt/user32/QueryDisplayConfig.S deleted file mode 100644 index 9944fea07..000000000 --- a/libc/nt/user32/QueryDisplayConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_QueryDisplayConfig,QueryDisplayConfig,2217 diff --git a/libc/nt/user32/QuerySendMessage.S b/libc/nt/user32/QuerySendMessage.S deleted file mode 100644 index 905554974..000000000 --- a/libc/nt/user32/QuerySendMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_QuerySendMessage,QuerySendMessage,2218 diff --git a/libc/nt/user32/RIMAddInputObserver.S b/libc/nt/user32/RIMAddInputObserver.S deleted file mode 100644 index b554126ec..000000000 --- a/libc/nt/user32/RIMAddInputObserver.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMAddInputObserver,RIMAddInputObserver,2219 diff --git a/libc/nt/user32/RIMAreSiblingDevices.S b/libc/nt/user32/RIMAreSiblingDevices.S deleted file mode 100644 index de9b4ad4d..000000000 --- a/libc/nt/user32/RIMAreSiblingDevices.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMAreSiblingDevices,RIMAreSiblingDevices,2220 diff --git a/libc/nt/user32/RIMDeviceIoControl.S b/libc/nt/user32/RIMDeviceIoControl.S deleted file mode 100644 index a7de36241..000000000 --- a/libc/nt/user32/RIMDeviceIoControl.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMDeviceIoControl,RIMDeviceIoControl,2221 diff --git a/libc/nt/user32/RIMEnableMonitorMappingForDevice.S b/libc/nt/user32/RIMEnableMonitorMappingForDevice.S deleted file mode 100644 index 9d7ffcd93..000000000 --- a/libc/nt/user32/RIMEnableMonitorMappingForDevice.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMEnableMonitorMappingForDevice,RIMEnableMonitorMappingForDevice,2222 diff --git a/libc/nt/user32/RIMFreeInputBuffer.S b/libc/nt/user32/RIMFreeInputBuffer.S deleted file mode 100644 index a1c72c511..000000000 --- a/libc/nt/user32/RIMFreeInputBuffer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMFreeInputBuffer,RIMFreeInputBuffer,2223 diff --git a/libc/nt/user32/RIMGetDevicePreparsedData.S b/libc/nt/user32/RIMGetDevicePreparsedData.S deleted file mode 100644 index deb3a84aa..000000000 --- a/libc/nt/user32/RIMGetDevicePreparsedData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMGetDevicePreparsedData,RIMGetDevicePreparsedData,2224 diff --git a/libc/nt/user32/RIMGetDevicePreparsedDataLockfree.S b/libc/nt/user32/RIMGetDevicePreparsedDataLockfree.S deleted file mode 100644 index 4441ff35f..000000000 --- a/libc/nt/user32/RIMGetDevicePreparsedDataLockfree.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMGetDevicePreparsedDataLockfree,RIMGetDevicePreparsedDataLockfree,2225 diff --git a/libc/nt/user32/RIMGetDeviceProperties.S b/libc/nt/user32/RIMGetDeviceProperties.S deleted file mode 100644 index 0a025881c..000000000 --- a/libc/nt/user32/RIMGetDeviceProperties.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMGetDeviceProperties,RIMGetDeviceProperties,2226 diff --git a/libc/nt/user32/RIMGetDevicePropertiesLockfree.S b/libc/nt/user32/RIMGetDevicePropertiesLockfree.S deleted file mode 100644 index 4d594903d..000000000 --- a/libc/nt/user32/RIMGetDevicePropertiesLockfree.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMGetDevicePropertiesLockfree,RIMGetDevicePropertiesLockfree,2227 diff --git a/libc/nt/user32/RIMGetPhysicalDeviceRect.S b/libc/nt/user32/RIMGetPhysicalDeviceRect.S deleted file mode 100644 index 3cf3ab56b..000000000 --- a/libc/nt/user32/RIMGetPhysicalDeviceRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMGetPhysicalDeviceRect,RIMGetPhysicalDeviceRect,2228 diff --git a/libc/nt/user32/RIMGetSourceProcessId.S b/libc/nt/user32/RIMGetSourceProcessId.S deleted file mode 100644 index 1d7438843..000000000 --- a/libc/nt/user32/RIMGetSourceProcessId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMGetSourceProcessId,RIMGetSourceProcessId,2229 diff --git a/libc/nt/user32/RIMObserveNextInput.S b/libc/nt/user32/RIMObserveNextInput.S deleted file mode 100644 index 38001ed81..000000000 --- a/libc/nt/user32/RIMObserveNextInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMObserveNextInput,RIMObserveNextInput,2230 diff --git a/libc/nt/user32/RIMOnPnpNotification.S b/libc/nt/user32/RIMOnPnpNotification.S deleted file mode 100644 index 500af41c2..000000000 --- a/libc/nt/user32/RIMOnPnpNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMOnPnpNotification,RIMOnPnpNotification,2231 diff --git a/libc/nt/user32/RIMOnTimerNotification.S b/libc/nt/user32/RIMOnTimerNotification.S deleted file mode 100644 index a60f63e5a..000000000 --- a/libc/nt/user32/RIMOnTimerNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMOnTimerNotification,RIMOnTimerNotification,2232 diff --git a/libc/nt/user32/RIMReadInput.S b/libc/nt/user32/RIMReadInput.S deleted file mode 100644 index 8e89128de..000000000 --- a/libc/nt/user32/RIMReadInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMReadInput,RIMReadInput,2233 diff --git a/libc/nt/user32/RIMRegisterForInput.S b/libc/nt/user32/RIMRegisterForInput.S deleted file mode 100644 index 3b8e79cb6..000000000 --- a/libc/nt/user32/RIMRegisterForInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMRegisterForInput,RIMRegisterForInput,2234 diff --git a/libc/nt/user32/RIMRemoveInputObserver.S b/libc/nt/user32/RIMRemoveInputObserver.S deleted file mode 100644 index 541eed5da..000000000 --- a/libc/nt/user32/RIMRemoveInputObserver.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMRemoveInputObserver,RIMRemoveInputObserver,2235 diff --git a/libc/nt/user32/RIMSetTestModeStatus.S b/libc/nt/user32/RIMSetTestModeStatus.S deleted file mode 100644 index c66706a5a..000000000 --- a/libc/nt/user32/RIMSetTestModeStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMSetTestModeStatus,RIMSetTestModeStatus,2236 diff --git a/libc/nt/user32/RIMUnregisterForInput.S b/libc/nt/user32/RIMUnregisterForInput.S deleted file mode 100644 index e32ee000f..000000000 --- a/libc/nt/user32/RIMUnregisterForInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMUnregisterForInput,RIMUnregisterForInput,2237 diff --git a/libc/nt/user32/RIMUpdateInputObserverRegistration.S b/libc/nt/user32/RIMUpdateInputObserverRegistration.S deleted file mode 100644 index edcf36ba2..000000000 --- a/libc/nt/user32/RIMUpdateInputObserverRegistration.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RIMUpdateInputObserverRegistration,RIMUpdateInputObserverRegistration,2238 diff --git a/libc/nt/user32/RealChildWindowFromPoint.S b/libc/nt/user32/RealChildWindowFromPoint.S deleted file mode 100644 index aa11b2c32..000000000 --- a/libc/nt/user32/RealChildWindowFromPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RealChildWindowFromPoint,RealChildWindowFromPoint,2239 diff --git a/libc/nt/user32/RealGetWindowClassW.S b/libc/nt/user32/RealGetWindowClassW.S deleted file mode 100644 index 928cfb799..000000000 --- a/libc/nt/user32/RealGetWindowClassW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RealGetWindowClassW,RealGetWindowClassW,2242 diff --git a/libc/nt/user32/ReasonCodeNeedsBugID.S b/libc/nt/user32/ReasonCodeNeedsBugID.S deleted file mode 100644 index beb1faef3..000000000 --- a/libc/nt/user32/ReasonCodeNeedsBugID.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ReasonCodeNeedsBugID,ReasonCodeNeedsBugID,2243 diff --git a/libc/nt/user32/ReasonCodeNeedsComment.S b/libc/nt/user32/ReasonCodeNeedsComment.S deleted file mode 100644 index 09bf45b29..000000000 --- a/libc/nt/user32/ReasonCodeNeedsComment.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ReasonCodeNeedsComment,ReasonCodeNeedsComment,2244 diff --git a/libc/nt/user32/RecordShutdownReason.S b/libc/nt/user32/RecordShutdownReason.S deleted file mode 100644 index 2c4698670..000000000 --- a/libc/nt/user32/RecordShutdownReason.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RecordShutdownReason,RecordShutdownReason,2245 diff --git a/libc/nt/user32/RedrawWindow.S b/libc/nt/user32/RedrawWindow.S index 596dcfdb7..312605512 100644 --- a/libc/nt/user32/RedrawWindow.S +++ b/libc/nt/user32/RedrawWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_RedrawWindow,RedrawWindow,2246 +.imp user32,__imp_RedrawWindow,RedrawWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/RegisterBSDRWindow.S b/libc/nt/user32/RegisterBSDRWindow.S deleted file mode 100644 index a849004f3..000000000 --- a/libc/nt/user32/RegisterBSDRWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterBSDRWindow,RegisterBSDRWindow,2247 diff --git a/libc/nt/user32/RegisterClassExW.S b/libc/nt/user32/RegisterClassExW.S index 06540807a..48bf6c0ea 100644 --- a/libc/nt/user32/RegisterClassExW.S +++ b/libc/nt/user32/RegisterClassExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_RegisterClassExW,RegisterClassExW,2250 +.imp user32,__imp_RegisterClassExW,RegisterClassExW .text.windows .ftrace1 diff --git a/libc/nt/user32/RegisterClassW.S b/libc/nt/user32/RegisterClassW.S index 8ec964c09..40937b59a 100644 --- a/libc/nt/user32/RegisterClassW.S +++ b/libc/nt/user32/RegisterClassW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_RegisterClassW,RegisterClassW,2251 +.imp user32,__imp_RegisterClassW,RegisterClassW .text.windows .ftrace1 diff --git a/libc/nt/user32/RegisterClipboardFormatW.S b/libc/nt/user32/RegisterClipboardFormatW.S deleted file mode 100644 index 362492b63..000000000 --- a/libc/nt/user32/RegisterClipboardFormatW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterClipboardFormatW,RegisterClipboardFormatW,2253 diff --git a/libc/nt/user32/RegisterDManipHook.S b/libc/nt/user32/RegisterDManipHook.S deleted file mode 100644 index aa08ba38c..000000000 --- a/libc/nt/user32/RegisterDManipHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterDManipHook,RegisterDManipHook,2254 diff --git a/libc/nt/user32/RegisterDeviceNotificationW.S b/libc/nt/user32/RegisterDeviceNotificationW.S deleted file mode 100644 index 24e2e6f59..000000000 --- a/libc/nt/user32/RegisterDeviceNotificationW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterDeviceNotificationW,RegisterDeviceNotificationW,2256 diff --git a/libc/nt/user32/RegisterErrorReportingDialog.S b/libc/nt/user32/RegisterErrorReportingDialog.S deleted file mode 100644 index 95032fd2c..000000000 --- a/libc/nt/user32/RegisterErrorReportingDialog.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterErrorReportingDialog,RegisterErrorReportingDialog,2257 diff --git a/libc/nt/user32/RegisterFrostWindow.S b/libc/nt/user32/RegisterFrostWindow.S deleted file mode 100644 index f41dfdf5c..000000000 --- a/libc/nt/user32/RegisterFrostWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterFrostWindow,RegisterFrostWindow,2258 diff --git a/libc/nt/user32/RegisterGhostWindow.S b/libc/nt/user32/RegisterGhostWindow.S deleted file mode 100644 index 09de075a1..000000000 --- a/libc/nt/user32/RegisterGhostWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterGhostWindow,RegisterGhostWindow,2259 diff --git a/libc/nt/user32/RegisterHotKey.S b/libc/nt/user32/RegisterHotKey.S deleted file mode 100644 index 0651e274b..000000000 --- a/libc/nt/user32/RegisterHotKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterHotKey,RegisterHotKey,2260 diff --git a/libc/nt/user32/RegisterLogonProcess.S b/libc/nt/user32/RegisterLogonProcess.S deleted file mode 100644 index 86b1fc973..000000000 --- a/libc/nt/user32/RegisterLogonProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterLogonProcess,RegisterLogonProcess,2261 diff --git a/libc/nt/user32/RegisterMessagePumpHook.S b/libc/nt/user32/RegisterMessagePumpHook.S deleted file mode 100644 index 7021593ca..000000000 --- a/libc/nt/user32/RegisterMessagePumpHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterMessagePumpHook,RegisterMessagePumpHook,2262 diff --git a/libc/nt/user32/RegisterPointerDeviceNotifications.S b/libc/nt/user32/RegisterPointerDeviceNotifications.S deleted file mode 100644 index ae3cd945f..000000000 --- a/libc/nt/user32/RegisterPointerDeviceNotifications.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterPointerDeviceNotifications,RegisterPointerDeviceNotifications,2263 diff --git a/libc/nt/user32/RegisterPointerInputTarget.S b/libc/nt/user32/RegisterPointerInputTarget.S deleted file mode 100644 index 05b9c8117..000000000 --- a/libc/nt/user32/RegisterPointerInputTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterPointerInputTarget,RegisterPointerInputTarget,2264 diff --git a/libc/nt/user32/RegisterPointerInputTargetEx.S b/libc/nt/user32/RegisterPointerInputTargetEx.S deleted file mode 100644 index 811e1226d..000000000 --- a/libc/nt/user32/RegisterPointerInputTargetEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterPointerInputTargetEx,RegisterPointerInputTargetEx,2265 diff --git a/libc/nt/user32/RegisterPowerSettingNotification.S b/libc/nt/user32/RegisterPowerSettingNotification.S deleted file mode 100644 index 30048474c..000000000 --- a/libc/nt/user32/RegisterPowerSettingNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterPowerSettingNotification,RegisterPowerSettingNotification,2266 diff --git a/libc/nt/user32/RegisterRawInputDevices.S b/libc/nt/user32/RegisterRawInputDevices.S deleted file mode 100644 index 272c0ef8c..000000000 --- a/libc/nt/user32/RegisterRawInputDevices.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterRawInputDevices,RegisterRawInputDevices,2267 diff --git a/libc/nt/user32/RegisterServicesProcess.S b/libc/nt/user32/RegisterServicesProcess.S deleted file mode 100644 index 0a333d0bf..000000000 --- a/libc/nt/user32/RegisterServicesProcess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterServicesProcess,RegisterServicesProcess,2268 diff --git a/libc/nt/user32/RegisterSessionPort.S b/libc/nt/user32/RegisterSessionPort.S deleted file mode 100644 index a345c2911..000000000 --- a/libc/nt/user32/RegisterSessionPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterSessionPort,RegisterSessionPort,2269 diff --git a/libc/nt/user32/RegisterShellHookWindow.S b/libc/nt/user32/RegisterShellHookWindow.S deleted file mode 100644 index 5e58ed2b3..000000000 --- a/libc/nt/user32/RegisterShellHookWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterShellHookWindow,RegisterShellHookWindow,2270 diff --git a/libc/nt/user32/RegisterSuspendResumeNotification.S b/libc/nt/user32/RegisterSuspendResumeNotification.S deleted file mode 100644 index 12d26b238..000000000 --- a/libc/nt/user32/RegisterSuspendResumeNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterSuspendResumeNotification,RegisterSuspendResumeNotification,2271 diff --git a/libc/nt/user32/RegisterSystemThread.S b/libc/nt/user32/RegisterSystemThread.S deleted file mode 100644 index f510611c0..000000000 --- a/libc/nt/user32/RegisterSystemThread.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterSystemThread,RegisterSystemThread,2272 diff --git a/libc/nt/user32/RegisterTasklist.S b/libc/nt/user32/RegisterTasklist.S deleted file mode 100644 index a0f569fee..000000000 --- a/libc/nt/user32/RegisterTasklist.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterTasklist,RegisterTasklist,2273 diff --git a/libc/nt/user32/RegisterTouchHitTestingWindow.S b/libc/nt/user32/RegisterTouchHitTestingWindow.S deleted file mode 100644 index 1273cfb40..000000000 --- a/libc/nt/user32/RegisterTouchHitTestingWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterTouchHitTestingWindow,RegisterTouchHitTestingWindow,2274 diff --git a/libc/nt/user32/RegisterTouchWindow.S b/libc/nt/user32/RegisterTouchWindow.S deleted file mode 100644 index 4cf1b3e25..000000000 --- a/libc/nt/user32/RegisterTouchWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterTouchWindow,RegisterTouchWindow,2275 diff --git a/libc/nt/user32/RegisterUserApiHook.S b/libc/nt/user32/RegisterUserApiHook.S deleted file mode 100644 index 28bbfdbd0..000000000 --- a/libc/nt/user32/RegisterUserApiHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterUserApiHook,RegisterUserApiHook,2276 diff --git a/libc/nt/user32/RegisterWindowMessageW.S b/libc/nt/user32/RegisterWindowMessageW.S deleted file mode 100644 index 01df6c3ff..000000000 --- a/libc/nt/user32/RegisterWindowMessageW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RegisterWindowMessageW,RegisterWindowMessageW,2278 diff --git a/libc/nt/user32/ReleaseCapture.S b/libc/nt/user32/ReleaseCapture.S index 5084dfbfd..0916a7ffd 100644 --- a/libc/nt/user32/ReleaseCapture.S +++ b/libc/nt/user32/ReleaseCapture.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_ReleaseCapture,ReleaseCapture,2279 +.imp user32,__imp_ReleaseCapture,ReleaseCapture .text.windows .ftrace1 diff --git a/libc/nt/user32/ReleaseDC.S b/libc/nt/user32/ReleaseDC.S index 4e5b8c595..21264c7e4 100644 --- a/libc/nt/user32/ReleaseDC.S +++ b/libc/nt/user32/ReleaseDC.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_ReleaseDC,ReleaseDC,2280 +.imp user32,__imp_ReleaseDC,ReleaseDC .text.windows .ftrace1 diff --git a/libc/nt/user32/ReleaseDwmHitTestWaiters.S b/libc/nt/user32/ReleaseDwmHitTestWaiters.S deleted file mode 100644 index 48aeba426..000000000 --- a/libc/nt/user32/ReleaseDwmHitTestWaiters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ReleaseDwmHitTestWaiters,ReleaseDwmHitTestWaiters,2281 diff --git a/libc/nt/user32/RemoveClipboardFormatListener.S b/libc/nt/user32/RemoveClipboardFormatListener.S deleted file mode 100644 index f77c8f315..000000000 --- a/libc/nt/user32/RemoveClipboardFormatListener.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RemoveClipboardFormatListener,RemoveClipboardFormatListener,2282 diff --git a/libc/nt/user32/RemoveInjectionDevice.S b/libc/nt/user32/RemoveInjectionDevice.S deleted file mode 100644 index f6eea7c65..000000000 --- a/libc/nt/user32/RemoveInjectionDevice.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RemoveInjectionDevice,RemoveInjectionDevice,2283 diff --git a/libc/nt/user32/RemoveMenu.S b/libc/nt/user32/RemoveMenu.S deleted file mode 100644 index d338e0eb1..000000000 --- a/libc/nt/user32/RemoveMenu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RemoveMenu,RemoveMenu,2284 diff --git a/libc/nt/user32/RemovePropW.S b/libc/nt/user32/RemovePropW.S deleted file mode 100644 index fd55ed773..000000000 --- a/libc/nt/user32/RemovePropW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RemovePropW,RemovePropW,2286 diff --git a/libc/nt/user32/RemoveThreadTSFEventAwareness.S b/libc/nt/user32/RemoveThreadTSFEventAwareness.S deleted file mode 100644 index 4b0a90115..000000000 --- a/libc/nt/user32/RemoveThreadTSFEventAwareness.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_RemoveThreadTSFEventAwareness,RemoveThreadTSFEventAwareness,2287 diff --git a/libc/nt/user32/ReplyMessage.S b/libc/nt/user32/ReplyMessage.S deleted file mode 100644 index db880bec7..000000000 --- a/libc/nt/user32/ReplyMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ReplyMessage,ReplyMessage,2288 diff --git a/libc/nt/user32/ReportInertia.S b/libc/nt/user32/ReportInertia.S deleted file mode 100644 index 9d7d5eb5f..000000000 --- a/libc/nt/user32/ReportInertia.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ReportInertia,ReportInertia,2551 diff --git a/libc/nt/user32/ResolveDesktopForWOW.S b/libc/nt/user32/ResolveDesktopForWOW.S deleted file mode 100644 index 85b5bfb37..000000000 --- a/libc/nt/user32/ResolveDesktopForWOW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ResolveDesktopForWOW,ResolveDesktopForWOW,2289 diff --git a/libc/nt/user32/ReuseDDElParam.S b/libc/nt/user32/ReuseDDElParam.S deleted file mode 100644 index 46724a849..000000000 --- a/libc/nt/user32/ReuseDDElParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ReuseDDElParam,ReuseDDElParam,2290 diff --git a/libc/nt/user32/ScreenToClient.S b/libc/nt/user32/ScreenToClient.S deleted file mode 100644 index fb67a69c9..000000000 --- a/libc/nt/user32/ScreenToClient.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ScreenToClient,ScreenToClient,2291 diff --git a/libc/nt/user32/ScrollChildren.S b/libc/nt/user32/ScrollChildren.S deleted file mode 100644 index 5baea7827..000000000 --- a/libc/nt/user32/ScrollChildren.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ScrollChildren,ScrollChildren,2292 diff --git a/libc/nt/user32/ScrollDC.S b/libc/nt/user32/ScrollDC.S deleted file mode 100644 index 8e48cfb1a..000000000 --- a/libc/nt/user32/ScrollDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ScrollDC,ScrollDC,2293 diff --git a/libc/nt/user32/ScrollWindow.S b/libc/nt/user32/ScrollWindow.S deleted file mode 100644 index ab3f102c8..000000000 --- a/libc/nt/user32/ScrollWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ScrollWindow,ScrollWindow,2294 diff --git a/libc/nt/user32/ScrollWindowEx.S b/libc/nt/user32/ScrollWindowEx.S deleted file mode 100644 index bf97fd191..000000000 --- a/libc/nt/user32/ScrollWindowEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ScrollWindowEx,ScrollWindowEx,2295 diff --git a/libc/nt/user32/SendDlgItemMessageW.S b/libc/nt/user32/SendDlgItemMessageW.S deleted file mode 100644 index 26c3775ae..000000000 --- a/libc/nt/user32/SendDlgItemMessageW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SendDlgItemMessageW,SendDlgItemMessageW,2297 diff --git a/libc/nt/user32/SendIMEMessageExW.S b/libc/nt/user32/SendIMEMessageExW.S deleted file mode 100644 index 05c312081..000000000 --- a/libc/nt/user32/SendIMEMessageExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SendIMEMessageExW,SendIMEMessageExW,2299 diff --git a/libc/nt/user32/SendInput.S b/libc/nt/user32/SendInput.S deleted file mode 100644 index d3e908a3a..000000000 --- a/libc/nt/user32/SendInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SendInput,SendInput,2300 diff --git a/libc/nt/user32/SendMessageCallbackW.S b/libc/nt/user32/SendMessageCallbackW.S deleted file mode 100644 index 85ee0e609..000000000 --- a/libc/nt/user32/SendMessageCallbackW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SendMessageCallbackW,SendMessageCallbackW,2303 diff --git a/libc/nt/user32/SendMessageTimeoutW.S b/libc/nt/user32/SendMessageTimeoutW.S deleted file mode 100644 index 79083b1e7..000000000 --- a/libc/nt/user32/SendMessageTimeoutW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SendMessageTimeoutW,SendMessageTimeoutW,2305 diff --git a/libc/nt/user32/SendMessageW.S b/libc/nt/user32/SendMessageW.S index f2d9148a4..d81327891 100644 --- a/libc/nt/user32/SendMessageW.S +++ b/libc/nt/user32/SendMessageW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SendMessageW,SendMessageW,2306 +.imp user32,__imp_SendMessageW,SendMessageW .text.windows .ftrace1 diff --git a/libc/nt/user32/SendNotifyMessageW.S b/libc/nt/user32/SendNotifyMessageW.S deleted file mode 100644 index ced23678b..000000000 --- a/libc/nt/user32/SendNotifyMessageW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SendNotifyMessageW,SendNotifyMessageW,2308 diff --git a/libc/nt/user32/SetActiveWindow.S b/libc/nt/user32/SetActiveWindow.S deleted file mode 100644 index 52c49b8e7..000000000 --- a/libc/nt/user32/SetActiveWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetActiveWindow,SetActiveWindow,2309 diff --git a/libc/nt/user32/SetCapture.S b/libc/nt/user32/SetCapture.S index 3a3d09613..20055412b 100644 --- a/libc/nt/user32/SetCapture.S +++ b/libc/nt/user32/SetCapture.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetCapture,SetCapture,2310 +.imp user32,__imp_SetCapture,SetCapture .text.windows .ftrace1 diff --git a/libc/nt/user32/SetCaretBlinkTime.S b/libc/nt/user32/SetCaretBlinkTime.S deleted file mode 100644 index 906f8251c..000000000 --- a/libc/nt/user32/SetCaretBlinkTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetCaretBlinkTime,SetCaretBlinkTime,2311 diff --git a/libc/nt/user32/SetCaretPos.S b/libc/nt/user32/SetCaretPos.S deleted file mode 100644 index 86d289cb2..000000000 --- a/libc/nt/user32/SetCaretPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetCaretPos,SetCaretPos,2312 diff --git a/libc/nt/user32/SetClassLongPtrW.S b/libc/nt/user32/SetClassLongPtrW.S deleted file mode 100644 index 95535fcc2..000000000 --- a/libc/nt/user32/SetClassLongPtrW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetClassLongPtrW,SetClassLongPtrW,2315 diff --git a/libc/nt/user32/SetClassLongW.S b/libc/nt/user32/SetClassLongW.S index 7c566cc24..d5f18bebd 100644 --- a/libc/nt/user32/SetClassLongW.S +++ b/libc/nt/user32/SetClassLongW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetClassLongW,SetClassLongW,2316 +.imp user32,__imp_SetClassLongW,SetClassLongW .text.windows .ftrace1 diff --git a/libc/nt/user32/SetClassWord.S b/libc/nt/user32/SetClassWord.S deleted file mode 100644 index 2821b9217..000000000 --- a/libc/nt/user32/SetClassWord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetClassWord,SetClassWord,2317 diff --git a/libc/nt/user32/SetClipboardData.S b/libc/nt/user32/SetClipboardData.S deleted file mode 100644 index 402a5f21d..000000000 --- a/libc/nt/user32/SetClipboardData.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetClipboardData,SetClipboardData,2318 diff --git a/libc/nt/user32/SetClipboardViewer.S b/libc/nt/user32/SetClipboardViewer.S deleted file mode 100644 index 554204568..000000000 --- a/libc/nt/user32/SetClipboardViewer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetClipboardViewer,SetClipboardViewer,2319 diff --git a/libc/nt/user32/SetCoalescableTimer.S b/libc/nt/user32/SetCoalescableTimer.S deleted file mode 100644 index 7c4b07b17..000000000 --- a/libc/nt/user32/SetCoalescableTimer.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetCoalescableTimer,SetCoalescableTimer,2320 diff --git a/libc/nt/user32/SetCoreWindow.S b/libc/nt/user32/SetCoreWindow.S deleted file mode 100644 index 58ab64811..000000000 --- a/libc/nt/user32/SetCoreWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetCoreWindow,SetCoreWindow,2571 diff --git a/libc/nt/user32/SetCursor.S b/libc/nt/user32/SetCursor.S index b6556e4c0..c5486f5dc 100644 --- a/libc/nt/user32/SetCursor.S +++ b/libc/nt/user32/SetCursor.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetCursor,SetCursor,2321 +.imp user32,__imp_SetCursor,SetCursor .text.windows .ftrace1 diff --git a/libc/nt/user32/SetCursorContents.S b/libc/nt/user32/SetCursorContents.S deleted file mode 100644 index 1ce673a37..000000000 --- a/libc/nt/user32/SetCursorContents.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetCursorContents,SetCursorContents,2322 diff --git a/libc/nt/user32/SetCursorPos.S b/libc/nt/user32/SetCursorPos.S deleted file mode 100644 index 7532d1abe..000000000 --- a/libc/nt/user32/SetCursorPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetCursorPos,SetCursorPos,2323 diff --git a/libc/nt/user32/SetDebugErrorLevel.S b/libc/nt/user32/SetDebugErrorLevel.S deleted file mode 100644 index 0fae470a1..000000000 --- a/libc/nt/user32/SetDebugErrorLevel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDebugErrorLevel,SetDebugErrorLevel,2324 diff --git a/libc/nt/user32/SetDeskWallpaper.S b/libc/nt/user32/SetDeskWallpaper.S deleted file mode 100644 index a4c548939..000000000 --- a/libc/nt/user32/SetDeskWallpaper.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDeskWallpaper,SetDeskWallpaper,2325 diff --git a/libc/nt/user32/SetDesktopColorTransform.S b/libc/nt/user32/SetDesktopColorTransform.S deleted file mode 100644 index 45448f502..000000000 --- a/libc/nt/user32/SetDesktopColorTransform.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDesktopColorTransform,SetDesktopColorTransform,2326 diff --git a/libc/nt/user32/SetDialogControlDpiChangeBehavior.S b/libc/nt/user32/SetDialogControlDpiChangeBehavior.S deleted file mode 100644 index d39658cad..000000000 --- a/libc/nt/user32/SetDialogControlDpiChangeBehavior.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDialogControlDpiChangeBehavior,SetDialogControlDpiChangeBehavior,2327 diff --git a/libc/nt/user32/SetDialogDpiChangeBehavior.S b/libc/nt/user32/SetDialogDpiChangeBehavior.S deleted file mode 100644 index 05c4ce48d..000000000 --- a/libc/nt/user32/SetDialogDpiChangeBehavior.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDialogDpiChangeBehavior,SetDialogDpiChangeBehavior,2328 diff --git a/libc/nt/user32/SetDisplayAutoRotationPreferences.S b/libc/nt/user32/SetDisplayAutoRotationPreferences.S deleted file mode 100644 index 482a46ed3..000000000 --- a/libc/nt/user32/SetDisplayAutoRotationPreferences.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDisplayAutoRotationPreferences,SetDisplayAutoRotationPreferences,2329 diff --git a/libc/nt/user32/SetDisplayConfig.S b/libc/nt/user32/SetDisplayConfig.S deleted file mode 100644 index 738ce2be4..000000000 --- a/libc/nt/user32/SetDisplayConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDisplayConfig,SetDisplayConfig,2330 diff --git a/libc/nt/user32/SetDlgItemInt.S b/libc/nt/user32/SetDlgItemInt.S deleted file mode 100644 index ded4a9f15..000000000 --- a/libc/nt/user32/SetDlgItemInt.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDlgItemInt,SetDlgItemInt,2331 diff --git a/libc/nt/user32/SetDlgItemTextW.S b/libc/nt/user32/SetDlgItemTextW.S deleted file mode 100644 index da08aca02..000000000 --- a/libc/nt/user32/SetDlgItemTextW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDlgItemTextW,SetDlgItemTextW,2333 diff --git a/libc/nt/user32/SetDoubleClickTime.S b/libc/nt/user32/SetDoubleClickTime.S deleted file mode 100644 index 6e3960596..000000000 --- a/libc/nt/user32/SetDoubleClickTime.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetDoubleClickTime,SetDoubleClickTime,2334 diff --git a/libc/nt/user32/SetFeatureReportResponse.S b/libc/nt/user32/SetFeatureReportResponse.S deleted file mode 100644 index f3d83736d..000000000 --- a/libc/nt/user32/SetFeatureReportResponse.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetFeatureReportResponse,SetFeatureReportResponse,2335 diff --git a/libc/nt/user32/SetFocus.S b/libc/nt/user32/SetFocus.S deleted file mode 100644 index 1ad0080df..000000000 --- a/libc/nt/user32/SetFocus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetFocus,SetFocus,2336 diff --git a/libc/nt/user32/SetForegroundWindow.S b/libc/nt/user32/SetForegroundWindow.S deleted file mode 100644 index 6f7e0cf9b..000000000 --- a/libc/nt/user32/SetForegroundWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetForegroundWindow,SetForegroundWindow,2337 diff --git a/libc/nt/user32/SetGestureConfig.S b/libc/nt/user32/SetGestureConfig.S deleted file mode 100644 index b58c76332..000000000 --- a/libc/nt/user32/SetGestureConfig.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetGestureConfig,SetGestureConfig,2338 diff --git a/libc/nt/user32/SetInternalWindowPos.S b/libc/nt/user32/SetInternalWindowPos.S deleted file mode 100644 index ed18bfe29..000000000 --- a/libc/nt/user32/SetInternalWindowPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetInternalWindowPos,SetInternalWindowPos,2339 diff --git a/libc/nt/user32/SetKeyboardState.S b/libc/nt/user32/SetKeyboardState.S deleted file mode 100644 index b7aa535f3..000000000 --- a/libc/nt/user32/SetKeyboardState.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetKeyboardState,SetKeyboardState,2340 diff --git a/libc/nt/user32/SetLastErrorEx.S b/libc/nt/user32/SetLastErrorEx.S deleted file mode 100644 index 40bfa2970..000000000 --- a/libc/nt/user32/SetLastErrorEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetLastErrorEx,SetLastErrorEx,2341 diff --git a/libc/nt/user32/SetLayeredWindowAttributes.S b/libc/nt/user32/SetLayeredWindowAttributes.S deleted file mode 100644 index 9d184c988..000000000 --- a/libc/nt/user32/SetLayeredWindowAttributes.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetLayeredWindowAttributes,SetLayeredWindowAttributes,2342 diff --git a/libc/nt/user32/SetMagnificationDesktopColorEffect.S b/libc/nt/user32/SetMagnificationDesktopColorEffect.S deleted file mode 100644 index fa61842fb..000000000 --- a/libc/nt/user32/SetMagnificationDesktopColorEffect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMagnificationDesktopColorEffect,SetMagnificationDesktopColorEffect,2343 diff --git a/libc/nt/user32/SetMagnificationDesktopMagnification.S b/libc/nt/user32/SetMagnificationDesktopMagnification.S deleted file mode 100644 index ecf197a6e..000000000 --- a/libc/nt/user32/SetMagnificationDesktopMagnification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMagnificationDesktopMagnification,SetMagnificationDesktopMagnification,2344 diff --git a/libc/nt/user32/SetMagnificationDesktopSamplingMode.S b/libc/nt/user32/SetMagnificationDesktopSamplingMode.S deleted file mode 100644 index 606f34609..000000000 --- a/libc/nt/user32/SetMagnificationDesktopSamplingMode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMagnificationDesktopSamplingMode,SetMagnificationDesktopSamplingMode,2345 diff --git a/libc/nt/user32/SetMagnificationLensCtxInformation.S b/libc/nt/user32/SetMagnificationLensCtxInformation.S deleted file mode 100644 index 00d7e33e5..000000000 --- a/libc/nt/user32/SetMagnificationLensCtxInformation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMagnificationLensCtxInformation,SetMagnificationLensCtxInformation,2346 diff --git a/libc/nt/user32/SetMenu.S b/libc/nt/user32/SetMenu.S deleted file mode 100644 index 828ca24d2..000000000 --- a/libc/nt/user32/SetMenu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMenu,SetMenu,2347 diff --git a/libc/nt/user32/SetMenuContextHelpId.S b/libc/nt/user32/SetMenuContextHelpId.S deleted file mode 100644 index d16090bcb..000000000 --- a/libc/nt/user32/SetMenuContextHelpId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMenuContextHelpId,SetMenuContextHelpId,2348 diff --git a/libc/nt/user32/SetMenuDefaultItem.S b/libc/nt/user32/SetMenuDefaultItem.S deleted file mode 100644 index 5b88f669b..000000000 --- a/libc/nt/user32/SetMenuDefaultItem.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMenuDefaultItem,SetMenuDefaultItem,2349 diff --git a/libc/nt/user32/SetMenuInfo.S b/libc/nt/user32/SetMenuInfo.S deleted file mode 100644 index b4eb772d3..000000000 --- a/libc/nt/user32/SetMenuInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMenuInfo,SetMenuInfo,2350 diff --git a/libc/nt/user32/SetMenuItemBitmaps.S b/libc/nt/user32/SetMenuItemBitmaps.S deleted file mode 100644 index 2407dcb58..000000000 --- a/libc/nt/user32/SetMenuItemBitmaps.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMenuItemBitmaps,SetMenuItemBitmaps,2351 diff --git a/libc/nt/user32/SetMenuItemInfoW.S b/libc/nt/user32/SetMenuItemInfoW.S deleted file mode 100644 index 54158cc2b..000000000 --- a/libc/nt/user32/SetMenuItemInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMenuItemInfoW,SetMenuItemInfoW,2353 diff --git a/libc/nt/user32/SetMessageExtraInfo.S b/libc/nt/user32/SetMessageExtraInfo.S deleted file mode 100644 index b4e0f0234..000000000 --- a/libc/nt/user32/SetMessageExtraInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMessageExtraInfo,SetMessageExtraInfo,2354 diff --git a/libc/nt/user32/SetMessageQueue.S b/libc/nt/user32/SetMessageQueue.S deleted file mode 100644 index a6681755a..000000000 --- a/libc/nt/user32/SetMessageQueue.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMessageQueue,SetMessageQueue,2355 diff --git a/libc/nt/user32/SetMirrorRendering.S b/libc/nt/user32/SetMirrorRendering.S deleted file mode 100644 index 275b29b57..000000000 --- a/libc/nt/user32/SetMirrorRendering.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetMirrorRendering,SetMirrorRendering,2356 diff --git a/libc/nt/user32/SetParent.S b/libc/nt/user32/SetParent.S index ab1d29aaa..e3c8e3dfa 100644 --- a/libc/nt/user32/SetParent.S +++ b/libc/nt/user32/SetParent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetParent,SetParent,2357 +.imp user32,__imp_SetParent,SetParent .text.windows .ftrace1 diff --git a/libc/nt/user32/SetPhysicalCursorPos.S b/libc/nt/user32/SetPhysicalCursorPos.S deleted file mode 100644 index 93e672b09..000000000 --- a/libc/nt/user32/SetPhysicalCursorPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetPhysicalCursorPos,SetPhysicalCursorPos,2358 diff --git a/libc/nt/user32/SetProcessDPIAware.S b/libc/nt/user32/SetProcessDPIAware.S deleted file mode 100644 index e5063df37..000000000 --- a/libc/nt/user32/SetProcessDPIAware.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetProcessDPIAware,SetProcessDPIAware,2359 diff --git a/libc/nt/user32/SetProcessDefaultLayout.S b/libc/nt/user32/SetProcessDefaultLayout.S deleted file mode 100644 index 7f27212e7..000000000 --- a/libc/nt/user32/SetProcessDefaultLayout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetProcessDefaultLayout,SetProcessDefaultLayout,2360 diff --git a/libc/nt/user32/SetProcessDpiAwarenessContext.S b/libc/nt/user32/SetProcessDpiAwarenessContext.S deleted file mode 100644 index 1324a1e10..000000000 --- a/libc/nt/user32/SetProcessDpiAwarenessContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetProcessDpiAwarenessContext,SetProcessDpiAwarenessContext,2361 diff --git a/libc/nt/user32/SetProcessDpiAwarenessInternal.S b/libc/nt/user32/SetProcessDpiAwarenessInternal.S deleted file mode 100644 index 5d6714b08..000000000 --- a/libc/nt/user32/SetProcessDpiAwarenessInternal.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetProcessDpiAwarenessInternal,SetProcessDpiAwarenessInternal,2362 diff --git a/libc/nt/user32/SetProcessRestrictionExemption.S b/libc/nt/user32/SetProcessRestrictionExemption.S deleted file mode 100644 index 9186aba96..000000000 --- a/libc/nt/user32/SetProcessRestrictionExemption.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetProcessRestrictionExemption,SetProcessRestrictionExemption,2363 diff --git a/libc/nt/user32/SetProcessWindowStation.S b/libc/nt/user32/SetProcessWindowStation.S deleted file mode 100644 index c055c6a9c..000000000 --- a/libc/nt/user32/SetProcessWindowStation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetProcessWindowStation,SetProcessWindowStation,2364 diff --git a/libc/nt/user32/SetProgmanWindow.S b/libc/nt/user32/SetProgmanWindow.S deleted file mode 100644 index e75526d5d..000000000 --- a/libc/nt/user32/SetProgmanWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetProgmanWindow,SetProgmanWindow,2365 diff --git a/libc/nt/user32/SetPropW.S b/libc/nt/user32/SetPropW.S deleted file mode 100644 index 6eaefa4f6..000000000 --- a/libc/nt/user32/SetPropW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetPropW,SetPropW,2367 diff --git a/libc/nt/user32/SetRect.S b/libc/nt/user32/SetRect.S deleted file mode 100644 index a6c1b8c9e..000000000 --- a/libc/nt/user32/SetRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetRect,SetRect,2368 diff --git a/libc/nt/user32/SetRectEmpty.S b/libc/nt/user32/SetRectEmpty.S deleted file mode 100644 index 70f02cdf9..000000000 --- a/libc/nt/user32/SetRectEmpty.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetRectEmpty,SetRectEmpty,2369 diff --git a/libc/nt/user32/SetScrollInfo.S b/libc/nt/user32/SetScrollInfo.S deleted file mode 100644 index f0340d131..000000000 --- a/libc/nt/user32/SetScrollInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetScrollInfo,SetScrollInfo,2370 diff --git a/libc/nt/user32/SetScrollPos.S b/libc/nt/user32/SetScrollPos.S deleted file mode 100644 index 7bc599d09..000000000 --- a/libc/nt/user32/SetScrollPos.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetScrollPos,SetScrollPos,2371 diff --git a/libc/nt/user32/SetScrollRange.S b/libc/nt/user32/SetScrollRange.S deleted file mode 100644 index 4904cfa28..000000000 --- a/libc/nt/user32/SetScrollRange.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetScrollRange,SetScrollRange,2372 diff --git a/libc/nt/user32/SetShellWindow.S b/libc/nt/user32/SetShellWindow.S deleted file mode 100644 index 5d160b5a0..000000000 --- a/libc/nt/user32/SetShellWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetShellWindow,SetShellWindow,2373 diff --git a/libc/nt/user32/SetShellWindowEx.S b/libc/nt/user32/SetShellWindowEx.S deleted file mode 100644 index 3c3261f63..000000000 --- a/libc/nt/user32/SetShellWindowEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetShellWindowEx,SetShellWindowEx,2374 diff --git a/libc/nt/user32/SetSysColors.S b/libc/nt/user32/SetSysColors.S deleted file mode 100644 index 0ce8fd64a..000000000 --- a/libc/nt/user32/SetSysColors.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetSysColors,SetSysColors,2375 diff --git a/libc/nt/user32/SetSysColorsTemp.S b/libc/nt/user32/SetSysColorsTemp.S deleted file mode 100644 index e99ccbc6c..000000000 --- a/libc/nt/user32/SetSysColorsTemp.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetSysColorsTemp,SetSysColorsTemp,2376 diff --git a/libc/nt/user32/SetSystemCursor.S b/libc/nt/user32/SetSystemCursor.S deleted file mode 100644 index 57f8c51fa..000000000 --- a/libc/nt/user32/SetSystemCursor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetSystemCursor,SetSystemCursor,2377 diff --git a/libc/nt/user32/SetSystemMenu.S b/libc/nt/user32/SetSystemMenu.S deleted file mode 100644 index 51e7b11dd..000000000 --- a/libc/nt/user32/SetSystemMenu.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetSystemMenu,SetSystemMenu,2378 diff --git a/libc/nt/user32/SetTaskmanWindow.S b/libc/nt/user32/SetTaskmanWindow.S deleted file mode 100644 index e2f881a58..000000000 --- a/libc/nt/user32/SetTaskmanWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetTaskmanWindow,SetTaskmanWindow,2379 diff --git a/libc/nt/user32/SetThreadDesktop.S b/libc/nt/user32/SetThreadDesktop.S deleted file mode 100644 index 052031f21..000000000 --- a/libc/nt/user32/SetThreadDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetThreadDesktop,SetThreadDesktop,2380 diff --git a/libc/nt/user32/SetThreadDpiAwarenessContext.S b/libc/nt/user32/SetThreadDpiAwarenessContext.S deleted file mode 100644 index bc192bcd3..000000000 --- a/libc/nt/user32/SetThreadDpiAwarenessContext.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetThreadDpiAwarenessContext,SetThreadDpiAwarenessContext,2381 diff --git a/libc/nt/user32/SetThreadDpiHostingBehavior.S b/libc/nt/user32/SetThreadDpiHostingBehavior.S deleted file mode 100644 index 6bc924205..000000000 --- a/libc/nt/user32/SetThreadDpiHostingBehavior.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetThreadDpiHostingBehavior,SetThreadDpiHostingBehavior,2382 diff --git a/libc/nt/user32/SetThreadInputBlocked.S b/libc/nt/user32/SetThreadInputBlocked.S deleted file mode 100644 index b7ff0c902..000000000 --- a/libc/nt/user32/SetThreadInputBlocked.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetThreadInputBlocked,SetThreadInputBlocked,2383 diff --git a/libc/nt/user32/SetTimer.S b/libc/nt/user32/SetTimer.S index d117e5078..8d9961554 100644 --- a/libc/nt/user32/SetTimer.S +++ b/libc/nt/user32/SetTimer.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetTimer,SetTimer,2384 +.imp user32,__imp_SetTimer,SetTimer .text.windows .ftrace1 diff --git a/libc/nt/user32/SetUserObjectInformationW.S b/libc/nt/user32/SetUserObjectInformationW.S deleted file mode 100644 index 298650f76..000000000 --- a/libc/nt/user32/SetUserObjectInformationW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetUserObjectInformationW,SetUserObjectInformationW,2386 diff --git a/libc/nt/user32/SetUserObjectSecurity.S b/libc/nt/user32/SetUserObjectSecurity.S deleted file mode 100644 index 5442ed978..000000000 --- a/libc/nt/user32/SetUserObjectSecurity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetUserObjectSecurity,SetUserObjectSecurity,2387 diff --git a/libc/nt/user32/SetWinEventHook.S b/libc/nt/user32/SetWinEventHook.S deleted file mode 100644 index 92ee45c52..000000000 --- a/libc/nt/user32/SetWinEventHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWinEventHook,SetWinEventHook,2388 diff --git a/libc/nt/user32/SetWindowBand.S b/libc/nt/user32/SetWindowBand.S deleted file mode 100644 index d5e7e5428..000000000 --- a/libc/nt/user32/SetWindowBand.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowBand,SetWindowBand,2389 diff --git a/libc/nt/user32/SetWindowCompositionAttribute.S b/libc/nt/user32/SetWindowCompositionAttribute.S deleted file mode 100644 index 82e4c9a52..000000000 --- a/libc/nt/user32/SetWindowCompositionAttribute.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowCompositionAttribute,SetWindowCompositionAttribute,2390 diff --git a/libc/nt/user32/SetWindowCompositionTransition.S b/libc/nt/user32/SetWindowCompositionTransition.S deleted file mode 100644 index 7369aab69..000000000 --- a/libc/nt/user32/SetWindowCompositionTransition.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowCompositionTransition,SetWindowCompositionTransition,2391 diff --git a/libc/nt/user32/SetWindowContextHelpId.S b/libc/nt/user32/SetWindowContextHelpId.S deleted file mode 100644 index 487d22d7e..000000000 --- a/libc/nt/user32/SetWindowContextHelpId.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowContextHelpId,SetWindowContextHelpId,2392 diff --git a/libc/nt/user32/SetWindowDisplayAffinity.S b/libc/nt/user32/SetWindowDisplayAffinity.S deleted file mode 100644 index befd16b2f..000000000 --- a/libc/nt/user32/SetWindowDisplayAffinity.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowDisplayAffinity,SetWindowDisplayAffinity,2393 diff --git a/libc/nt/user32/SetWindowFeedbackSetting.S b/libc/nt/user32/SetWindowFeedbackSetting.S deleted file mode 100644 index 66d176c67..000000000 --- a/libc/nt/user32/SetWindowFeedbackSetting.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowFeedbackSetting,SetWindowFeedbackSetting,2394 diff --git a/libc/nt/user32/SetWindowLongPtrW.S b/libc/nt/user32/SetWindowLongPtrW.S deleted file mode 100644 index 3026df948..000000000 --- a/libc/nt/user32/SetWindowLongPtrW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowLongPtrW,SetWindowLongPtrW,2397 diff --git a/libc/nt/user32/SetWindowLongW.S b/libc/nt/user32/SetWindowLongW.S index c4d3db95f..be98651e9 100644 --- a/libc/nt/user32/SetWindowLongW.S +++ b/libc/nt/user32/SetWindowLongW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowLongW,SetWindowLongW,2398 +.imp user32,__imp_SetWindowLongW,SetWindowLongW .text.windows .ftrace1 diff --git a/libc/nt/user32/SetWindowPlacement.S b/libc/nt/user32/SetWindowPlacement.S index 5fc9d87ee..0038ecbfb 100644 --- a/libc/nt/user32/SetWindowPlacement.S +++ b/libc/nt/user32/SetWindowPlacement.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowPlacement,SetWindowPlacement,2399 +.imp user32,__imp_SetWindowPlacement,SetWindowPlacement .text.windows .ftrace1 diff --git a/libc/nt/user32/SetWindowPos.S b/libc/nt/user32/SetWindowPos.S index d3af77906..cf0960512 100644 --- a/libc/nt/user32/SetWindowPos.S +++ b/libc/nt/user32/SetWindowPos.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowPos,SetWindowPos,2400 +.imp user32,__imp_SetWindowPos,SetWindowPos .text.windows .ftrace1 diff --git a/libc/nt/user32/SetWindowRgn.S b/libc/nt/user32/SetWindowRgn.S deleted file mode 100644 index c96bc171f..000000000 --- a/libc/nt/user32/SetWindowRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowRgn,SetWindowRgn,2401 diff --git a/libc/nt/user32/SetWindowRgnEx.S b/libc/nt/user32/SetWindowRgnEx.S deleted file mode 100644 index 1a1b64fc3..000000000 --- a/libc/nt/user32/SetWindowRgnEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowRgnEx,SetWindowRgnEx,2402 diff --git a/libc/nt/user32/SetWindowStationUser.S b/libc/nt/user32/SetWindowStationUser.S deleted file mode 100644 index 9e29f746a..000000000 --- a/libc/nt/user32/SetWindowStationUser.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowStationUser,SetWindowStationUser,2403 diff --git a/libc/nt/user32/SetWindowTextW.S b/libc/nt/user32/SetWindowTextW.S index 64a7c61d6..eea86c3f2 100644 --- a/libc/nt/user32/SetWindowTextW.S +++ b/libc/nt/user32/SetWindowTextW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowTextW,SetWindowTextW,2405 +.imp user32,__imp_SetWindowTextW,SetWindowTextW .text.windows .ftrace1 diff --git a/libc/nt/user32/SetWindowWord.S b/libc/nt/user32/SetWindowWord.S deleted file mode 100644 index cf96fb3d5..000000000 --- a/libc/nt/user32/SetWindowWord.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowWord,SetWindowWord,2406 diff --git a/libc/nt/user32/SetWindowsHookExW.S b/libc/nt/user32/SetWindowsHookExW.S index 68d272104..65f219c72 100644 --- a/libc/nt/user32/SetWindowsHookExW.S +++ b/libc/nt/user32/SetWindowsHookExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowsHookExW,SetWindowsHookExW,2409 +.imp user32,__imp_SetWindowsHookExW,SetWindowsHookExW .text.windows .ftrace1 diff --git a/libc/nt/user32/SetWindowsHookW.S b/libc/nt/user32/SetWindowsHookW.S index 660b016fe..909067516 100644 --- a/libc/nt/user32/SetWindowsHookW.S +++ b/libc/nt/user32/SetWindowsHookW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_SetWindowsHookW,SetWindowsHookW,2410 +.imp user32,__imp_SetWindowsHookW,SetWindowsHookW .text.windows .ftrace1 diff --git a/libc/nt/user32/ShowCaret.S b/libc/nt/user32/ShowCaret.S index 14b5d2b14..a1be01b76 100644 --- a/libc/nt/user32/ShowCaret.S +++ b/libc/nt/user32/ShowCaret.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_ShowCaret,ShowCaret,2411 +.imp user32,__imp_ShowCaret,ShowCaret .text.windows .ftrace1 diff --git a/libc/nt/user32/ShowCursor.S b/libc/nt/user32/ShowCursor.S index b884e97d8..b48a0ebc6 100644 --- a/libc/nt/user32/ShowCursor.S +++ b/libc/nt/user32/ShowCursor.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_ShowCursor,ShowCursor,2412 +.imp user32,__imp_ShowCursor,ShowCursor .text.windows .ftrace1 diff --git a/libc/nt/user32/ShowOwnedPopups.S b/libc/nt/user32/ShowOwnedPopups.S deleted file mode 100644 index 108d24c88..000000000 --- a/libc/nt/user32/ShowOwnedPopups.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ShowOwnedPopups,ShowOwnedPopups,2413 diff --git a/libc/nt/user32/ShowScrollBar.S b/libc/nt/user32/ShowScrollBar.S deleted file mode 100644 index ad423ef97..000000000 --- a/libc/nt/user32/ShowScrollBar.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ShowScrollBar,ShowScrollBar,2414 diff --git a/libc/nt/user32/ShowStartGlass.S b/libc/nt/user32/ShowStartGlass.S deleted file mode 100644 index 0dbd8fda2..000000000 --- a/libc/nt/user32/ShowStartGlass.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ShowStartGlass,ShowStartGlass,2415 diff --git a/libc/nt/user32/ShowSystemCursor.S b/libc/nt/user32/ShowSystemCursor.S deleted file mode 100644 index 102925632..000000000 --- a/libc/nt/user32/ShowSystemCursor.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ShowSystemCursor,ShowSystemCursor,2416 diff --git a/libc/nt/user32/ShowWindow.S b/libc/nt/user32/ShowWindow.S index 8395affcc..43abe8746 100644 --- a/libc/nt/user32/ShowWindow.S +++ b/libc/nt/user32/ShowWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_ShowWindow,ShowWindow,2417 +.imp user32,__imp_ShowWindow,ShowWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/ShowWindowAsync.S b/libc/nt/user32/ShowWindowAsync.S deleted file mode 100644 index 05dc467c6..000000000 --- a/libc/nt/user32/ShowWindowAsync.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ShowWindowAsync,ShowWindowAsync,2418 diff --git a/libc/nt/user32/ShutdownBlockReasonCreate.S b/libc/nt/user32/ShutdownBlockReasonCreate.S deleted file mode 100644 index bc4901c59..000000000 --- a/libc/nt/user32/ShutdownBlockReasonCreate.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ShutdownBlockReasonCreate,ShutdownBlockReasonCreate,2419 diff --git a/libc/nt/user32/ShutdownBlockReasonDestroy.S b/libc/nt/user32/ShutdownBlockReasonDestroy.S deleted file mode 100644 index a3ffae320..000000000 --- a/libc/nt/user32/ShutdownBlockReasonDestroy.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ShutdownBlockReasonDestroy,ShutdownBlockReasonDestroy,2420 diff --git a/libc/nt/user32/ShutdownBlockReasonQuery.S b/libc/nt/user32/ShutdownBlockReasonQuery.S deleted file mode 100644 index 30e8a4b4e..000000000 --- a/libc/nt/user32/ShutdownBlockReasonQuery.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ShutdownBlockReasonQuery,ShutdownBlockReasonQuery,2421 diff --git a/libc/nt/user32/SignalRedirectionStartComplete.S b/libc/nt/user32/SignalRedirectionStartComplete.S deleted file mode 100644 index 465602b92..000000000 --- a/libc/nt/user32/SignalRedirectionStartComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SignalRedirectionStartComplete,SignalRedirectionStartComplete,2422 diff --git a/libc/nt/user32/SkipPointerFrameMessages.S b/libc/nt/user32/SkipPointerFrameMessages.S deleted file mode 100644 index 12bc42654..000000000 --- a/libc/nt/user32/SkipPointerFrameMessages.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SkipPointerFrameMessages,SkipPointerFrameMessages,2423 diff --git a/libc/nt/user32/SoftModalMessageBox.S b/libc/nt/user32/SoftModalMessageBox.S deleted file mode 100644 index 5b019d31a..000000000 --- a/libc/nt/user32/SoftModalMessageBox.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SoftModalMessageBox,SoftModalMessageBox,2424 diff --git a/libc/nt/user32/SoundSentry.S b/libc/nt/user32/SoundSentry.S deleted file mode 100644 index 1c70e8e5b..000000000 --- a/libc/nt/user32/SoundSentry.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SoundSentry,SoundSentry,2425 diff --git a/libc/nt/user32/SubtractRect.S b/libc/nt/user32/SubtractRect.S deleted file mode 100644 index 43813c4b5..000000000 --- a/libc/nt/user32/SubtractRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SubtractRect,SubtractRect,2426 diff --git a/libc/nt/user32/SwapMouseButton.S b/libc/nt/user32/SwapMouseButton.S deleted file mode 100644 index 17404d259..000000000 --- a/libc/nt/user32/SwapMouseButton.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SwapMouseButton,SwapMouseButton,2427 diff --git a/libc/nt/user32/SwitchDesktop.S b/libc/nt/user32/SwitchDesktop.S deleted file mode 100644 index d98d327e5..000000000 --- a/libc/nt/user32/SwitchDesktop.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SwitchDesktop,SwitchDesktop,2428 diff --git a/libc/nt/user32/SwitchDesktopWithFade.S b/libc/nt/user32/SwitchDesktopWithFade.S deleted file mode 100644 index 0086c85a7..000000000 --- a/libc/nt/user32/SwitchDesktopWithFade.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SwitchDesktopWithFade,SwitchDesktopWithFade,2429 diff --git a/libc/nt/user32/SwitchToThisWindow.S b/libc/nt/user32/SwitchToThisWindow.S deleted file mode 100644 index 331f85b97..000000000 --- a/libc/nt/user32/SwitchToThisWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SwitchToThisWindow,SwitchToThisWindow,2430 diff --git a/libc/nt/user32/SystemParametersInfoForDpi.S b/libc/nt/user32/SystemParametersInfoForDpi.S deleted file mode 100644 index 11168db5d..000000000 --- a/libc/nt/user32/SystemParametersInfoForDpi.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SystemParametersInfoForDpi,SystemParametersInfoForDpi,2432 diff --git a/libc/nt/user32/SystemParametersInfoW.S b/libc/nt/user32/SystemParametersInfoW.S deleted file mode 100644 index 10131fd1b..000000000 --- a/libc/nt/user32/SystemParametersInfoW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_SystemParametersInfoW,SystemParametersInfoW,2433 diff --git a/libc/nt/user32/TabbedTextOutW.S b/libc/nt/user32/TabbedTextOutW.S deleted file mode 100644 index d9bec42ac..000000000 --- a/libc/nt/user32/TabbedTextOutW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_TabbedTextOutW,TabbedTextOutW,2435 diff --git a/libc/nt/user32/TileChildWindows.S b/libc/nt/user32/TileChildWindows.S deleted file mode 100644 index c901e0374..000000000 --- a/libc/nt/user32/TileChildWindows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_TileChildWindows,TileChildWindows,2436 diff --git a/libc/nt/user32/TileWindows.S b/libc/nt/user32/TileWindows.S deleted file mode 100644 index 4fd4de82a..000000000 --- a/libc/nt/user32/TileWindows.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_TileWindows,TileWindows,2437 diff --git a/libc/nt/user32/ToAscii.S b/libc/nt/user32/ToAscii.S deleted file mode 100644 index 61083c09b..000000000 --- a/libc/nt/user32/ToAscii.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ToAscii,ToAscii,2438 diff --git a/libc/nt/user32/ToAsciiEx.S b/libc/nt/user32/ToAsciiEx.S deleted file mode 100644 index 5e88125d4..000000000 --- a/libc/nt/user32/ToAsciiEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ToAsciiEx,ToAsciiEx,2439 diff --git a/libc/nt/user32/ToUnicode.S b/libc/nt/user32/ToUnicode.S deleted file mode 100644 index fd7bc66cc..000000000 --- a/libc/nt/user32/ToUnicode.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ToUnicode,ToUnicode,2440 diff --git a/libc/nt/user32/ToUnicodeEx.S b/libc/nt/user32/ToUnicodeEx.S deleted file mode 100644 index fb858b24d..000000000 --- a/libc/nt/user32/ToUnicodeEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ToUnicodeEx,ToUnicodeEx,2441 diff --git a/libc/nt/user32/TrackMouseEvent.S b/libc/nt/user32/TrackMouseEvent.S deleted file mode 100644 index 534aae496..000000000 --- a/libc/nt/user32/TrackMouseEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_TrackMouseEvent,TrackMouseEvent,2442 diff --git a/libc/nt/user32/TrackPopupMenu.S b/libc/nt/user32/TrackPopupMenu.S index 3a16e4ec6..3e86d1c01 100644 --- a/libc/nt/user32/TrackPopupMenu.S +++ b/libc/nt/user32/TrackPopupMenu.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_TrackPopupMenu,TrackPopupMenu,2443 +.imp user32,__imp_TrackPopupMenu,TrackPopupMenu .text.windows .ftrace1 diff --git a/libc/nt/user32/TrackPopupMenuEx.S b/libc/nt/user32/TrackPopupMenuEx.S deleted file mode 100644 index f6707f6d0..000000000 --- a/libc/nt/user32/TrackPopupMenuEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_TrackPopupMenuEx,TrackPopupMenuEx,2444 diff --git a/libc/nt/user32/TranslateAcceleratorW.S b/libc/nt/user32/TranslateAcceleratorW.S deleted file mode 100644 index e37b7bf9d..000000000 --- a/libc/nt/user32/TranslateAcceleratorW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_TranslateAcceleratorW,TranslateAcceleratorW,2447 diff --git a/libc/nt/user32/TranslateMDISysAccel.S b/libc/nt/user32/TranslateMDISysAccel.S deleted file mode 100644 index a271217a0..000000000 --- a/libc/nt/user32/TranslateMDISysAccel.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_TranslateMDISysAccel,TranslateMDISysAccel,2448 diff --git a/libc/nt/user32/TranslateMessage.S b/libc/nt/user32/TranslateMessage.S index 9eb891ecf..01a37634f 100644 --- a/libc/nt/user32/TranslateMessage.S +++ b/libc/nt/user32/TranslateMessage.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_TranslateMessage,TranslateMessage,2449 +.imp user32,__imp_TranslateMessage,TranslateMessage .text.windows .ftrace1 diff --git a/libc/nt/user32/TranslateMessageEx.S b/libc/nt/user32/TranslateMessageEx.S deleted file mode 100644 index 0787358d5..000000000 --- a/libc/nt/user32/TranslateMessageEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_TranslateMessageEx,TranslateMessageEx,2450 diff --git a/libc/nt/user32/UndelegateInput.S b/libc/nt/user32/UndelegateInput.S deleted file mode 100644 index 374ab3826..000000000 --- a/libc/nt/user32/UndelegateInput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UndelegateInput,UndelegateInput,2504 diff --git a/libc/nt/user32/UnhookWinEvent.S b/libc/nt/user32/UnhookWinEvent.S deleted file mode 100644 index 65ff1c238..000000000 --- a/libc/nt/user32/UnhookWinEvent.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnhookWinEvent,UnhookWinEvent,2451 diff --git a/libc/nt/user32/UnhookWindowsHook.S b/libc/nt/user32/UnhookWindowsHook.S index a2e529f07..b32e5fa06 100644 --- a/libc/nt/user32/UnhookWindowsHook.S +++ b/libc/nt/user32/UnhookWindowsHook.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_UnhookWindowsHook,UnhookWindowsHook,2452 +.imp user32,__imp_UnhookWindowsHook,UnhookWindowsHook .text.windows .ftrace1 diff --git a/libc/nt/user32/UnhookWindowsHookEx.S b/libc/nt/user32/UnhookWindowsHookEx.S index cbc96c680..256e02313 100644 --- a/libc/nt/user32/UnhookWindowsHookEx.S +++ b/libc/nt/user32/UnhookWindowsHookEx.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_UnhookWindowsHookEx,UnhookWindowsHookEx,2453 +.imp user32,__imp_UnhookWindowsHookEx,UnhookWindowsHookEx .text.windows .ftrace1 diff --git a/libc/nt/user32/UnionRect.S b/libc/nt/user32/UnionRect.S deleted file mode 100644 index d6aca6d82..000000000 --- a/libc/nt/user32/UnionRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnionRect,UnionRect,2454 diff --git a/libc/nt/user32/UnloadKeyboardLayout.S b/libc/nt/user32/UnloadKeyboardLayout.S deleted file mode 100644 index 3c28d98e6..000000000 --- a/libc/nt/user32/UnloadKeyboardLayout.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnloadKeyboardLayout,UnloadKeyboardLayout,2455 diff --git a/libc/nt/user32/UnlockWindowStation.S b/libc/nt/user32/UnlockWindowStation.S deleted file mode 100644 index 282aeeadd..000000000 --- a/libc/nt/user32/UnlockWindowStation.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnlockWindowStation,UnlockWindowStation,2456 diff --git a/libc/nt/user32/UnpackDDElParam.S b/libc/nt/user32/UnpackDDElParam.S deleted file mode 100644 index 0f2a06f85..000000000 --- a/libc/nt/user32/UnpackDDElParam.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnpackDDElParam,UnpackDDElParam,2457 diff --git a/libc/nt/user32/UnregisterClassW.S b/libc/nt/user32/UnregisterClassW.S deleted file mode 100644 index 638213172..000000000 --- a/libc/nt/user32/UnregisterClassW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterClassW,UnregisterClassW,2459 diff --git a/libc/nt/user32/UnregisterDeviceNotification.S b/libc/nt/user32/UnregisterDeviceNotification.S deleted file mode 100644 index 7da2b5e41..000000000 --- a/libc/nt/user32/UnregisterDeviceNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterDeviceNotification,UnregisterDeviceNotification,2460 diff --git a/libc/nt/user32/UnregisterHotKey.S b/libc/nt/user32/UnregisterHotKey.S deleted file mode 100644 index 61204e35d..000000000 --- a/libc/nt/user32/UnregisterHotKey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterHotKey,UnregisterHotKey,2461 diff --git a/libc/nt/user32/UnregisterMessagePumpHook.S b/libc/nt/user32/UnregisterMessagePumpHook.S deleted file mode 100644 index de6924263..000000000 --- a/libc/nt/user32/UnregisterMessagePumpHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterMessagePumpHook,UnregisterMessagePumpHook,2462 diff --git a/libc/nt/user32/UnregisterPointerInputTarget.S b/libc/nt/user32/UnregisterPointerInputTarget.S deleted file mode 100644 index b059c6992..000000000 --- a/libc/nt/user32/UnregisterPointerInputTarget.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterPointerInputTarget,UnregisterPointerInputTarget,2463 diff --git a/libc/nt/user32/UnregisterPointerInputTargetEx.S b/libc/nt/user32/UnregisterPointerInputTargetEx.S deleted file mode 100644 index 2e7473120..000000000 --- a/libc/nt/user32/UnregisterPointerInputTargetEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterPointerInputTargetEx,UnregisterPointerInputTargetEx,2464 diff --git a/libc/nt/user32/UnregisterPowerSettingNotification.S b/libc/nt/user32/UnregisterPowerSettingNotification.S deleted file mode 100644 index 9ff3a3da7..000000000 --- a/libc/nt/user32/UnregisterPowerSettingNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterPowerSettingNotification,UnregisterPowerSettingNotification,2465 diff --git a/libc/nt/user32/UnregisterSessionPort.S b/libc/nt/user32/UnregisterSessionPort.S deleted file mode 100644 index 5e56ce5fb..000000000 --- a/libc/nt/user32/UnregisterSessionPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterSessionPort,UnregisterSessionPort,2466 diff --git a/libc/nt/user32/UnregisterSuspendResumeNotification.S b/libc/nt/user32/UnregisterSuspendResumeNotification.S deleted file mode 100644 index 051c0f004..000000000 --- a/libc/nt/user32/UnregisterSuspendResumeNotification.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterSuspendResumeNotification,UnregisterSuspendResumeNotification,2467 diff --git a/libc/nt/user32/UnregisterTouchWindow.S b/libc/nt/user32/UnregisterTouchWindow.S deleted file mode 100644 index 00cd7cc5a..000000000 --- a/libc/nt/user32/UnregisterTouchWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterTouchWindow,UnregisterTouchWindow,2468 diff --git a/libc/nt/user32/UnregisterUserApiHook.S b/libc/nt/user32/UnregisterUserApiHook.S deleted file mode 100644 index ad6c82f93..000000000 --- a/libc/nt/user32/UnregisterUserApiHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UnregisterUserApiHook,UnregisterUserApiHook,2469 diff --git a/libc/nt/user32/UpdateDefaultDesktopThumbnail.S b/libc/nt/user32/UpdateDefaultDesktopThumbnail.S deleted file mode 100644 index 649abe88c..000000000 --- a/libc/nt/user32/UpdateDefaultDesktopThumbnail.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UpdateDefaultDesktopThumbnail,UpdateDefaultDesktopThumbnail,2470 diff --git a/libc/nt/user32/UpdateLayeredWindow.S b/libc/nt/user32/UpdateLayeredWindow.S deleted file mode 100644 index a4860fbdb..000000000 --- a/libc/nt/user32/UpdateLayeredWindow.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UpdateLayeredWindow,UpdateLayeredWindow,2471 diff --git a/libc/nt/user32/UpdateLayeredWindowIndirect.S b/libc/nt/user32/UpdateLayeredWindowIndirect.S deleted file mode 100644 index 201b8a9e1..000000000 --- a/libc/nt/user32/UpdateLayeredWindowIndirect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UpdateLayeredWindowIndirect,UpdateLayeredWindowIndirect,2472 diff --git a/libc/nt/user32/UpdatePerUserSystemParameters.S b/libc/nt/user32/UpdatePerUserSystemParameters.S deleted file mode 100644 index 83c678794..000000000 --- a/libc/nt/user32/UpdatePerUserSystemParameters.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UpdatePerUserSystemParameters,UpdatePerUserSystemParameters,2473 diff --git a/libc/nt/user32/UpdateWindow.S b/libc/nt/user32/UpdateWindow.S index 75462ba37..77dc65aeb 100644 --- a/libc/nt/user32/UpdateWindow.S +++ b/libc/nt/user32/UpdateWindow.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_UpdateWindow,UpdateWindow,2474 +.imp user32,__imp_UpdateWindow,UpdateWindow .text.windows .ftrace1 diff --git a/libc/nt/user32/UpdateWindowInputSinkHints.S b/libc/nt/user32/UpdateWindowInputSinkHints.S deleted file mode 100644 index 459943327..000000000 --- a/libc/nt/user32/UpdateWindowInputSinkHints.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UpdateWindowInputSinkHints,UpdateWindowInputSinkHints,2475 diff --git a/libc/nt/user32/User32InitializeImmEntryTable.S b/libc/nt/user32/User32InitializeImmEntryTable.S deleted file mode 100644 index 88dd086cb..000000000 --- a/libc/nt/user32/User32InitializeImmEntryTable.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_User32InitializeImmEntryTable,User32InitializeImmEntryTable,2476 diff --git a/libc/nt/user32/UserClientDllInitialize.S b/libc/nt/user32/UserClientDllInitialize.S deleted file mode 100644 index e9a25ec8c..000000000 --- a/libc/nt/user32/UserClientDllInitialize.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UserClientDllInitialize,UserClientDllInitialize,2477 diff --git a/libc/nt/user32/UserHandleGrantAccess.S b/libc/nt/user32/UserHandleGrantAccess.S deleted file mode 100644 index d7d82b075..000000000 --- a/libc/nt/user32/UserHandleGrantAccess.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UserHandleGrantAccess,UserHandleGrantAccess,2478 diff --git a/libc/nt/user32/UserLpkPSMTextOut.S b/libc/nt/user32/UserLpkPSMTextOut.S deleted file mode 100644 index 1e903cbb2..000000000 --- a/libc/nt/user32/UserLpkPSMTextOut.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UserLpkPSMTextOut,UserLpkPSMTextOut,2479 diff --git a/libc/nt/user32/UserLpkTabbedTextOut.S b/libc/nt/user32/UserLpkTabbedTextOut.S deleted file mode 100644 index 1c177f1d8..000000000 --- a/libc/nt/user32/UserLpkTabbedTextOut.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UserLpkTabbedTextOut,UserLpkTabbedTextOut,2480 diff --git a/libc/nt/user32/UserRealizePalette.S b/libc/nt/user32/UserRealizePalette.S deleted file mode 100644 index 82998eb0d..000000000 --- a/libc/nt/user32/UserRealizePalette.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UserRealizePalette,UserRealizePalette,2481 diff --git a/libc/nt/user32/UserRegisterWowHandlers.S b/libc/nt/user32/UserRegisterWowHandlers.S deleted file mode 100644 index 855f48c94..000000000 --- a/libc/nt/user32/UserRegisterWowHandlers.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_UserRegisterWowHandlers,UserRegisterWowHandlers,2482 diff --git a/libc/nt/user32/VRipOutput.S b/libc/nt/user32/VRipOutput.S deleted file mode 100644 index 5721b36e2..000000000 --- a/libc/nt/user32/VRipOutput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_VRipOutput,VRipOutput,2483 diff --git a/libc/nt/user32/VTagOutput.S b/libc/nt/user32/VTagOutput.S deleted file mode 100644 index 1885dccaf..000000000 --- a/libc/nt/user32/VTagOutput.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_VTagOutput,VTagOutput,2484 diff --git a/libc/nt/user32/ValidateRect.S b/libc/nt/user32/ValidateRect.S deleted file mode 100644 index ba4f2ffca..000000000 --- a/libc/nt/user32/ValidateRect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ValidateRect,ValidateRect,2485 diff --git a/libc/nt/user32/ValidateRgn.S b/libc/nt/user32/ValidateRgn.S deleted file mode 100644 index 6e00d7e1f..000000000 --- a/libc/nt/user32/ValidateRgn.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_ValidateRgn,ValidateRgn,2486 diff --git a/libc/nt/user32/VkKeyScanExW.S b/libc/nt/user32/VkKeyScanExW.S deleted file mode 100644 index 23c8ecc2e..000000000 --- a/libc/nt/user32/VkKeyScanExW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_VkKeyScanExW,VkKeyScanExW,2489 diff --git a/libc/nt/user32/VkKeyScanW.S b/libc/nt/user32/VkKeyScanW.S deleted file mode 100644 index ef53c6fce..000000000 --- a/libc/nt/user32/VkKeyScanW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_VkKeyScanW,VkKeyScanW,2490 diff --git a/libc/nt/user32/WCSToMBEx.S b/libc/nt/user32/WCSToMBEx.S deleted file mode 100644 index fc2f4ecf1..000000000 --- a/libc/nt/user32/WCSToMBEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WCSToMBEx,WCSToMBEx,2491 diff --git a/libc/nt/user32/WINNLSEnableIME.S b/libc/nt/user32/WINNLSEnableIME.S deleted file mode 100644 index 277ecd801..000000000 --- a/libc/nt/user32/WINNLSEnableIME.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WINNLSEnableIME,WINNLSEnableIME,2492 diff --git a/libc/nt/user32/WINNLSGetEnableStatus.S b/libc/nt/user32/WINNLSGetEnableStatus.S deleted file mode 100644 index 04fdca68e..000000000 --- a/libc/nt/user32/WINNLSGetEnableStatus.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WINNLSGetEnableStatus,WINNLSGetEnableStatus,2493 diff --git a/libc/nt/user32/WINNLSGetIMEHotkey.S b/libc/nt/user32/WINNLSGetIMEHotkey.S deleted file mode 100644 index 57adb5c71..000000000 --- a/libc/nt/user32/WINNLSGetIMEHotkey.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WINNLSGetIMEHotkey,WINNLSGetIMEHotkey,2494 diff --git a/libc/nt/user32/WaitForInputIdle.S b/libc/nt/user32/WaitForInputIdle.S index d8694ceb4..c40ba58c4 100644 --- a/libc/nt/user32/WaitForInputIdle.S +++ b/libc/nt/user32/WaitForInputIdle.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp user32,__imp_WaitForInputIdle,WaitForInputIdle,2495 +.imp user32,__imp_WaitForInputIdle,WaitForInputIdle .text.windows .ftrace1 diff --git a/libc/nt/user32/WaitForRedirectionStartComplete.S b/libc/nt/user32/WaitForRedirectionStartComplete.S deleted file mode 100644 index 2b8edf4be..000000000 --- a/libc/nt/user32/WaitForRedirectionStartComplete.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WaitForRedirectionStartComplete,WaitForRedirectionStartComplete,2496 diff --git a/libc/nt/user32/WaitMessage.S b/libc/nt/user32/WaitMessage.S deleted file mode 100644 index 0aec1dc7a..000000000 --- a/libc/nt/user32/WaitMessage.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WaitMessage,WaitMessage,2497 diff --git a/libc/nt/user32/WinHelpW.S b/libc/nt/user32/WinHelpW.S deleted file mode 100644 index da2e1fdf1..000000000 --- a/libc/nt/user32/WinHelpW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WinHelpW,WinHelpW,2499 diff --git a/libc/nt/user32/WindowFromDC.S b/libc/nt/user32/WindowFromDC.S deleted file mode 100644 index f38fa93da..000000000 --- a/libc/nt/user32/WindowFromDC.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WindowFromDC,WindowFromDC,2500 diff --git a/libc/nt/user32/WindowFromPhysicalPoint.S b/libc/nt/user32/WindowFromPhysicalPoint.S deleted file mode 100644 index d963cc718..000000000 --- a/libc/nt/user32/WindowFromPhysicalPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WindowFromPhysicalPoint,WindowFromPhysicalPoint,2501 diff --git a/libc/nt/user32/WindowFromPoint.S b/libc/nt/user32/WindowFromPoint.S deleted file mode 100644 index 2ffe83879..000000000 --- a/libc/nt/user32/WindowFromPoint.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp user32,__imp_WindowFromPoint,WindowFromPoint,2502 diff --git a/libc/nt/ws2_32/FreeAddrInfoExW.S b/libc/nt/ws2_32/FreeAddrInfoExW.S index 616ac559e..6f8484c9e 100644 --- a/libc/nt/ws2_32/FreeAddrInfoExW.S +++ b/libc/nt/ws2_32/FreeAddrInfoExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_FreeAddrInfoExW,FreeAddrInfoExW,26 +.imp ws2_32,__imp_FreeAddrInfoExW,FreeAddrInfoExW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/FreeAddrInfoW.S b/libc/nt/ws2_32/FreeAddrInfoW.S index acaae47c8..98dee1830 100644 --- a/libc/nt/ws2_32/FreeAddrInfoW.S +++ b/libc/nt/ws2_32/FreeAddrInfoW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_FreeAddrInfoW,FreeAddrInfoW,27 +.imp ws2_32,__imp_FreeAddrInfoW,FreeAddrInfoW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/GetAddrInfoExCancel.S b/libc/nt/ws2_32/GetAddrInfoExCancel.S index d8666707c..2b456f290 100644 --- a/libc/nt/ws2_32/GetAddrInfoExCancel.S +++ b/libc/nt/ws2_32/GetAddrInfoExCancel.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_GetAddrInfoExCancel,GetAddrInfoExCancel,29 +.imp ws2_32,__imp_GetAddrInfoExCancel,GetAddrInfoExCancel .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/GetAddrInfoExOverlappedResult.S b/libc/nt/ws2_32/GetAddrInfoExOverlappedResult.S index 1dac2ac5e..116eaae5f 100644 --- a/libc/nt/ws2_32/GetAddrInfoExOverlappedResult.S +++ b/libc/nt/ws2_32/GetAddrInfoExOverlappedResult.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_GetAddrInfoExOverlappedResult,GetAddrInfoExOverlappedResult,30 +.imp ws2_32,__imp_GetAddrInfoExOverlappedResult,GetAddrInfoExOverlappedResult .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/GetAddrInfoExW.S b/libc/nt/ws2_32/GetAddrInfoExW.S index 498dc8330..5a9288465 100644 --- a/libc/nt/ws2_32/GetAddrInfoExW.S +++ b/libc/nt/ws2_32/GetAddrInfoExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_GetAddrInfoExW,GetAddrInfoExW,31 +.imp ws2_32,__imp_GetAddrInfoExW,GetAddrInfoExW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/GetAddrInfoW.S b/libc/nt/ws2_32/GetAddrInfoW.S index d6c4f96a4..36f98bf26 100644 --- a/libc/nt/ws2_32/GetAddrInfoW.S +++ b/libc/nt/ws2_32/GetAddrInfoW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_GetAddrInfoW,GetAddrInfoW,32 +.imp ws2_32,__imp_GetAddrInfoW,GetAddrInfoW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/GetHostNameW.S b/libc/nt/ws2_32/GetHostNameW.S index f35275c71..94d8e2b21 100644 --- a/libc/nt/ws2_32/GetHostNameW.S +++ b/libc/nt/ws2_32/GetHostNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_GetHostNameW,GetHostNameW,33 +.imp ws2_32,__imp_GetHostNameW,GetHostNameW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/GetNameInfoW.S b/libc/nt/ws2_32/GetNameInfoW.S index d7a74dd77..846a590d1 100644 --- a/libc/nt/ws2_32/GetNameInfoW.S +++ b/libc/nt/ws2_32/GetNameInfoW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_GetNameInfoW,GetNameInfoW,34 +.imp ws2_32,__imp_GetNameInfoW,GetNameInfoW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/SetAddrInfoExW.S b/libc/nt/ws2_32/SetAddrInfoExW.S index 9dc80d02c..df51c42ed 100644 --- a/libc/nt/ws2_32/SetAddrInfoExW.S +++ b/libc/nt/ws2_32/SetAddrInfoExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_SetAddrInfoExW,SetAddrInfoExW,38 +.imp ws2_32,__imp_SetAddrInfoExW,SetAddrInfoExW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAAccept.S b/libc/nt/ws2_32/WSAAccept.S index fbc85d731..ed271f694 100644 --- a/libc/nt/ws2_32/WSAAccept.S +++ b/libc/nt/ws2_32/WSAAccept.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAccept,WSAAccept,41 +.imp ws2_32,__imp_WSAAccept,WSAAccept .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAAddressToStringW.S b/libc/nt/ws2_32/WSAAddressToStringW.S index ca1daa768..87bf5bd59 100644 --- a/libc/nt/ws2_32/WSAAddressToStringW.S +++ b/libc/nt/ws2_32/WSAAddressToStringW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAddressToStringW,WSAAddressToStringW,43 +.imp ws2_32,__imp_WSAAddressToStringW,WSAAddressToStringW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAAsyncGetHostByAddr.S b/libc/nt/ws2_32/WSAAsyncGetHostByAddr.S index 5098ad0c8..953dc2115 100644 --- a/libc/nt/ws2_32/WSAAsyncGetHostByAddr.S +++ b/libc/nt/ws2_32/WSAAsyncGetHostByAddr.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAsyncGetHostByAddr,WSAAsyncGetHostByAddr,102 +.imp ws2_32,__imp_WSAAsyncGetHostByAddr,WSAAsyncGetHostByAddr .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAAsyncGetHostByName.S b/libc/nt/ws2_32/WSAAsyncGetHostByName.S index bf7bef497..4cc2ff532 100644 --- a/libc/nt/ws2_32/WSAAsyncGetHostByName.S +++ b/libc/nt/ws2_32/WSAAsyncGetHostByName.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAsyncGetHostByName,WSAAsyncGetHostByName,103 +.imp ws2_32,__imp_WSAAsyncGetHostByName,WSAAsyncGetHostByName .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAAsyncGetProtoByName.S b/libc/nt/ws2_32/WSAAsyncGetProtoByName.S index fa36401d4..ab421a152 100644 --- a/libc/nt/ws2_32/WSAAsyncGetProtoByName.S +++ b/libc/nt/ws2_32/WSAAsyncGetProtoByName.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAsyncGetProtoByName,WSAAsyncGetProtoByName,105 +.imp ws2_32,__imp_WSAAsyncGetProtoByName,WSAAsyncGetProtoByName .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAAsyncGetProtoByNumber.S b/libc/nt/ws2_32/WSAAsyncGetProtoByNumber.S index 956a82411..ea7c3737d 100644 --- a/libc/nt/ws2_32/WSAAsyncGetProtoByNumber.S +++ b/libc/nt/ws2_32/WSAAsyncGetProtoByNumber.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAsyncGetProtoByNumber,WSAAsyncGetProtoByNumber,104 +.imp ws2_32,__imp_WSAAsyncGetProtoByNumber,WSAAsyncGetProtoByNumber .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAAsyncGetServByName.S b/libc/nt/ws2_32/WSAAsyncGetServByName.S deleted file mode 100644 index 66cca9aaa..000000000 --- a/libc/nt/ws2_32/WSAAsyncGetServByName.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAsyncGetServByName,WSAAsyncGetServByName,107 diff --git a/libc/nt/ws2_32/WSAAsyncGetServByPort.S b/libc/nt/ws2_32/WSAAsyncGetServByPort.S deleted file mode 100644 index b7425c417..000000000 --- a/libc/nt/ws2_32/WSAAsyncGetServByPort.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAsyncGetServByPort,WSAAsyncGetServByPort,106 diff --git a/libc/nt/ws2_32/WSAAsyncSelect.S b/libc/nt/ws2_32/WSAAsyncSelect.S deleted file mode 100644 index 9d2ad1b78..000000000 --- a/libc/nt/ws2_32/WSAAsyncSelect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAAsyncSelect,WSAAsyncSelect,101 diff --git a/libc/nt/ws2_32/WSACancelAsyncRequest.S b/libc/nt/ws2_32/WSACancelAsyncRequest.S deleted file mode 100644 index 69b641476..000000000 --- a/libc/nt/ws2_32/WSACancelAsyncRequest.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSACancelAsyncRequest,WSACancelAsyncRequest,108 diff --git a/libc/nt/ws2_32/WSACancelBlockingCall.S b/libc/nt/ws2_32/WSACancelBlockingCall.S deleted file mode 100644 index 9d4fe62e9..000000000 --- a/libc/nt/ws2_32/WSACancelBlockingCall.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSACancelBlockingCall,WSACancelBlockingCall,113 diff --git a/libc/nt/ws2_32/WSACleanup.S b/libc/nt/ws2_32/WSACleanup.S index 22149d74e..63b9fed73 100644 --- a/libc/nt/ws2_32/WSACleanup.S +++ b/libc/nt/ws2_32/WSACleanup.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSACleanup,WSACleanup,116 +.imp ws2_32,__imp_WSACleanup,WSACleanup .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSACloseEvent.S b/libc/nt/ws2_32/WSACloseEvent.S index 0f7836804..a075aedd0 100644 --- a/libc/nt/ws2_32/WSACloseEvent.S +++ b/libc/nt/ws2_32/WSACloseEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSACloseEvent,WSACloseEvent,45 +.imp ws2_32,__imp_WSACloseEvent,WSACloseEvent .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAConnect.S b/libc/nt/ws2_32/WSAConnect.S index 9713b0132..28dae15ba 100644 --- a/libc/nt/ws2_32/WSAConnect.S +++ b/libc/nt/ws2_32/WSAConnect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAConnect,WSAConnect,46 +.imp ws2_32,__imp_WSAConnect,WSAConnect .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAConnectByList.S b/libc/nt/ws2_32/WSAConnectByList.S index 640e5e460..57f2eeef9 100644 --- a/libc/nt/ws2_32/WSAConnectByList.S +++ b/libc/nt/ws2_32/WSAConnectByList.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAConnectByList,WSAConnectByList,47 +.imp ws2_32,__imp_WSAConnectByList,WSAConnectByList .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAConnectByNameW.S b/libc/nt/ws2_32/WSAConnectByNameW.S index ab68c260c..0994289c1 100644 --- a/libc/nt/ws2_32/WSAConnectByNameW.S +++ b/libc/nt/ws2_32/WSAConnectByNameW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAConnectByNameW,WSAConnectByNameW,49 +.imp ws2_32,__imp_WSAConnectByNameW,WSAConnectByNameW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSACreateEvent.S b/libc/nt/ws2_32/WSACreateEvent.S index 43bd95732..0a02cc9cb 100644 --- a/libc/nt/ws2_32/WSACreateEvent.S +++ b/libc/nt/ws2_32/WSACreateEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSACreateEvent,WSACreateEvent,50 +.imp ws2_32,__imp_WSACreateEvent,WSACreateEvent .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSADuplicateSocketW.S b/libc/nt/ws2_32/WSADuplicateSocketW.S index 1ca8bc5cf..c2ccc3a8d 100644 --- a/libc/nt/ws2_32/WSADuplicateSocketW.S +++ b/libc/nt/ws2_32/WSADuplicateSocketW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSADuplicateSocketW,WSADuplicateSocketW,59 +.imp ws2_32,__imp_WSADuplicateSocketW,WSADuplicateSocketW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAEnumNameSpaceProvidersExW.S b/libc/nt/ws2_32/WSAEnumNameSpaceProvidersExW.S index c3e9daa15..1a86366c4 100644 --- a/libc/nt/ws2_32/WSAEnumNameSpaceProvidersExW.S +++ b/libc/nt/ws2_32/WSAEnumNameSpaceProvidersExW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAEnumNameSpaceProvidersExW,WSAEnumNameSpaceProvidersExW,62 +.imp ws2_32,__imp_WSAEnumNameSpaceProvidersExW,WSAEnumNameSpaceProvidersExW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAEnumNameSpaceProvidersW.S b/libc/nt/ws2_32/WSAEnumNameSpaceProvidersW.S index 2c9bc776a..aac16a9e6 100644 --- a/libc/nt/ws2_32/WSAEnumNameSpaceProvidersW.S +++ b/libc/nt/ws2_32/WSAEnumNameSpaceProvidersW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAEnumNameSpaceProvidersW,WSAEnumNameSpaceProvidersW,63 +.imp ws2_32,__imp_WSAEnumNameSpaceProvidersW,WSAEnumNameSpaceProvidersW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAEnumNetworkEvents.S b/libc/nt/ws2_32/WSAEnumNetworkEvents.S index 6cc169622..cadd9e753 100644 --- a/libc/nt/ws2_32/WSAEnumNetworkEvents.S +++ b/libc/nt/ws2_32/WSAEnumNetworkEvents.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAEnumNetworkEvents,WSAEnumNetworkEvents,64 +.imp ws2_32,__imp_WSAEnumNetworkEvents,WSAEnumNetworkEvents .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAEnumProtocolsW.S b/libc/nt/ws2_32/WSAEnumProtocolsW.S index 2c070d52f..e7d0ba9ca 100644 --- a/libc/nt/ws2_32/WSAEnumProtocolsW.S +++ b/libc/nt/ws2_32/WSAEnumProtocolsW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAEnumProtocolsW,WSAEnumProtocolsW,66 +.imp ws2_32,__imp_WSAEnumProtocolsW,WSAEnumProtocolsW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAEventSelect.S b/libc/nt/ws2_32/WSAEventSelect.S index 6f6b43125..ff84dcf24 100644 --- a/libc/nt/ws2_32/WSAEventSelect.S +++ b/libc/nt/ws2_32/WSAEventSelect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAEventSelect,WSAEventSelect,67 +.imp ws2_32,__imp_WSAEventSelect,WSAEventSelect .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAGetLastError.S b/libc/nt/ws2_32/WSAGetLastError.S index 41cbe3285..102035f76 100644 --- a/libc/nt/ws2_32/WSAGetLastError.S +++ b/libc/nt/ws2_32/WSAGetLastError.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAGetLastError,WSAGetLastError,111 +.imp ws2_32,__imp_WSAGetLastError,WSAGetLastError .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAGetOverlappedResult.S b/libc/nt/ws2_32/WSAGetOverlappedResult.S index 7dbb08962..6c6064a77 100644 --- a/libc/nt/ws2_32/WSAGetOverlappedResult.S +++ b/libc/nt/ws2_32/WSAGetOverlappedResult.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAGetOverlappedResult,WSAGetOverlappedResult,68 +.imp ws2_32,__imp_WSAGetOverlappedResult,WSAGetOverlappedResult .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAGetQOSByName.S b/libc/nt/ws2_32/WSAGetQOSByName.S index f8658ae5d..e118faf91 100644 --- a/libc/nt/ws2_32/WSAGetQOSByName.S +++ b/libc/nt/ws2_32/WSAGetQOSByName.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAGetQOSByName,WSAGetQOSByName,69 +.imp ws2_32,__imp_WSAGetQOSByName,WSAGetQOSByName .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAGetServiceClassInfoW.S b/libc/nt/ws2_32/WSAGetServiceClassInfoW.S index ec0eeebf5..eb0476b94 100644 --- a/libc/nt/ws2_32/WSAGetServiceClassInfoW.S +++ b/libc/nt/ws2_32/WSAGetServiceClassInfoW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAGetServiceClassInfoW,WSAGetServiceClassInfoW,71 +.imp ws2_32,__imp_WSAGetServiceClassInfoW,WSAGetServiceClassInfoW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAGetServiceClassNameByClassIdW.S b/libc/nt/ws2_32/WSAGetServiceClassNameByClassIdW.S index 99c9560bf..3292718a3 100644 --- a/libc/nt/ws2_32/WSAGetServiceClassNameByClassIdW.S +++ b/libc/nt/ws2_32/WSAGetServiceClassNameByClassIdW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAGetServiceClassNameByClassIdW,WSAGetServiceClassNameByClassIdW,73 +.imp ws2_32,__imp_WSAGetServiceClassNameByClassIdW,WSAGetServiceClassNameByClassIdW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAInstallServiceClassW.S b/libc/nt/ws2_32/WSAInstallServiceClassW.S index e0684e25e..7dd19f2e2 100644 --- a/libc/nt/ws2_32/WSAInstallServiceClassW.S +++ b/libc/nt/ws2_32/WSAInstallServiceClassW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAInstallServiceClassW,WSAInstallServiceClassW,77 +.imp ws2_32,__imp_WSAInstallServiceClassW,WSAInstallServiceClassW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAIoctl.S b/libc/nt/ws2_32/WSAIoctl.S index c138d2732..249792565 100644 --- a/libc/nt/ws2_32/WSAIoctl.S +++ b/libc/nt/ws2_32/WSAIoctl.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAIoctl,WSAIoctl,78 +.imp ws2_32,__imp_WSAIoctl,WSAIoctl .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAJoinLeaf.S b/libc/nt/ws2_32/WSAJoinLeaf.S index ee7f68364..2a39bf462 100644 --- a/libc/nt/ws2_32/WSAJoinLeaf.S +++ b/libc/nt/ws2_32/WSAJoinLeaf.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAJoinLeaf,WSAJoinLeaf,79 +.imp ws2_32,__imp_WSAJoinLeaf,WSAJoinLeaf .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSALookupServiceBeginW.S b/libc/nt/ws2_32/WSALookupServiceBeginW.S index 9a0d4af46..f327af282 100644 --- a/libc/nt/ws2_32/WSALookupServiceBeginW.S +++ b/libc/nt/ws2_32/WSALookupServiceBeginW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSALookupServiceBeginW,WSALookupServiceBeginW,81 +.imp ws2_32,__imp_WSALookupServiceBeginW,WSALookupServiceBeginW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSALookupServiceEnd.S b/libc/nt/ws2_32/WSALookupServiceEnd.S index d2257114b..4d1bd5850 100644 --- a/libc/nt/ws2_32/WSALookupServiceEnd.S +++ b/libc/nt/ws2_32/WSALookupServiceEnd.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSALookupServiceEnd,WSALookupServiceEnd,82 +.imp ws2_32,__imp_WSALookupServiceEnd,WSALookupServiceEnd .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSALookupServiceNextW.S b/libc/nt/ws2_32/WSALookupServiceNextW.S index 757bde256..9df3b7eb3 100644 --- a/libc/nt/ws2_32/WSALookupServiceNextW.S +++ b/libc/nt/ws2_32/WSALookupServiceNextW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSALookupServiceNextW,WSALookupServiceNextW,84 +.imp ws2_32,__imp_WSALookupServiceNextW,WSALookupServiceNextW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSANSPIoctl.S b/libc/nt/ws2_32/WSANSPIoctl.S index 545704429..25ac253b6 100644 --- a/libc/nt/ws2_32/WSANSPIoctl.S +++ b/libc/nt/ws2_32/WSANSPIoctl.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSANSPIoctl,WSANSPIoctl,85 +.imp ws2_32,__imp_WSANSPIoctl,WSANSPIoctl .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAPoll.S b/libc/nt/ws2_32/WSAPoll.S index c2d2a8305..b72842f56 100644 --- a/libc/nt/ws2_32/WSAPoll.S +++ b/libc/nt/ws2_32/WSAPoll.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAPoll,WSAPoll,88 +.imp ws2_32,__imp_WSAPoll,WSAPoll .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAProviderCompleteAsyncCall.S b/libc/nt/ws2_32/WSAProviderCompleteAsyncCall.S deleted file mode 100644 index 4a7e8c069..000000000 --- a/libc/nt/ws2_32/WSAProviderCompleteAsyncCall.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAProviderCompleteAsyncCall,WSAProviderCompleteAsyncCall,89 diff --git a/libc/nt/ws2_32/WSAProviderConfigChange.S b/libc/nt/ws2_32/WSAProviderConfigChange.S index 61d2e2f6a..7e225628c 100644 --- a/libc/nt/ws2_32/WSAProviderConfigChange.S +++ b/libc/nt/ws2_32/WSAProviderConfigChange.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAProviderConfigChange,WSAProviderConfigChange,90 +.imp ws2_32,__imp_WSAProviderConfigChange,WSAProviderConfigChange .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSARecv.S b/libc/nt/ws2_32/WSARecv.S index 099f2c3ed..9b3c5af45 100644 --- a/libc/nt/ws2_32/WSARecv.S +++ b/libc/nt/ws2_32/WSARecv.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSARecv,WSARecv,91 +.imp ws2_32,__imp_WSARecv,WSARecv .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSARecvDisconnect.S b/libc/nt/ws2_32/WSARecvDisconnect.S index 2362f2629..2bc279b9e 100644 --- a/libc/nt/ws2_32/WSARecvDisconnect.S +++ b/libc/nt/ws2_32/WSARecvDisconnect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSARecvDisconnect,WSARecvDisconnect,92 +.imp ws2_32,__imp_WSARecvDisconnect,WSARecvDisconnect .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSARecvFrom.S b/libc/nt/ws2_32/WSARecvFrom.S index 561de503f..3e075544e 100644 --- a/libc/nt/ws2_32/WSARecvFrom.S +++ b/libc/nt/ws2_32/WSARecvFrom.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSARecvFrom,WSARecvFrom,93 +.imp ws2_32,__imp_WSARecvFrom,WSARecvFrom .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSARemoveServiceClass.S b/libc/nt/ws2_32/WSARemoveServiceClass.S index d8d204443..f6dbc5387 100644 --- a/libc/nt/ws2_32/WSARemoveServiceClass.S +++ b/libc/nt/ws2_32/WSARemoveServiceClass.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSARemoveServiceClass,WSARemoveServiceClass,94 +.imp ws2_32,__imp_WSARemoveServiceClass,WSARemoveServiceClass .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAResetEvent.S b/libc/nt/ws2_32/WSAResetEvent.S index b2536bb37..790f766c3 100644 --- a/libc/nt/ws2_32/WSAResetEvent.S +++ b/libc/nt/ws2_32/WSAResetEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAResetEvent,WSAResetEvent,95 +.imp ws2_32,__imp_WSAResetEvent,WSAResetEvent .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSASend.S b/libc/nt/ws2_32/WSASend.S index bff0454df..5c6716eb8 100644 --- a/libc/nt/ws2_32/WSASend.S +++ b/libc/nt/ws2_32/WSASend.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASend,WSASend,96 +.imp ws2_32,__imp_WSASend,WSASend .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSASendDisconnect.S b/libc/nt/ws2_32/WSASendDisconnect.S index 32ff3e688..89ea5b35a 100644 --- a/libc/nt/ws2_32/WSASendDisconnect.S +++ b/libc/nt/ws2_32/WSASendDisconnect.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASendDisconnect,WSASendDisconnect,97 +.imp ws2_32,__imp_WSASendDisconnect,WSASendDisconnect .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSASendMsg.S b/libc/nt/ws2_32/WSASendMsg.S index 70beebdf0..97f92b776 100644 --- a/libc/nt/ws2_32/WSASendMsg.S +++ b/libc/nt/ws2_32/WSASendMsg.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASendMsg,WSASendMsg,98 +.imp ws2_32,__imp_WSASendMsg,WSASendMsg .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSASendTo.S b/libc/nt/ws2_32/WSASendTo.S index f616c5efb..bce486bb2 100644 --- a/libc/nt/ws2_32/WSASendTo.S +++ b/libc/nt/ws2_32/WSASendTo.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASendTo,WSASendTo,99 +.imp ws2_32,__imp_WSASendTo,WSASendTo .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSASetBlockingHook.S b/libc/nt/ws2_32/WSASetBlockingHook.S deleted file mode 100644 index b855a8960..000000000 --- a/libc/nt/ws2_32/WSASetBlockingHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASetBlockingHook,WSASetBlockingHook,109 diff --git a/libc/nt/ws2_32/WSASetEvent.S b/libc/nt/ws2_32/WSASetEvent.S index 24120ecb0..b260c2570 100644 --- a/libc/nt/ws2_32/WSASetEvent.S +++ b/libc/nt/ws2_32/WSASetEvent.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASetEvent,WSASetEvent,100 +.imp ws2_32,__imp_WSASetEvent,WSASetEvent .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSASetLastError.S b/libc/nt/ws2_32/WSASetLastError.S index 09c319991..8b195595e 100644 --- a/libc/nt/ws2_32/WSASetLastError.S +++ b/libc/nt/ws2_32/WSASetLastError.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASetLastError,WSASetLastError,112 +.imp ws2_32,__imp_WSASetLastError,WSASetLastError .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSASetServiceW.S b/libc/nt/ws2_32/WSASetServiceW.S index 10f020cb4..44f70565c 100644 --- a/libc/nt/ws2_32/WSASetServiceW.S +++ b/libc/nt/ws2_32/WSASetServiceW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASetServiceW,WSASetServiceW,118 +.imp ws2_32,__imp_WSASetServiceW,WSASetServiceW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSASocketW.S b/libc/nt/ws2_32/WSASocketW.S index bc262dd55..a235b2497 100644 --- a/libc/nt/ws2_32/WSASocketW.S +++ b/libc/nt/ws2_32/WSASocketW.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSASocketW,WSASocketW,120 +.imp ws2_32,__imp_WSASocketW,WSASocketW .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAStartup.S b/libc/nt/ws2_32/WSAStartup.S index 81f30ff8d..5a0558ad7 100644 --- a/libc/nt/ws2_32/WSAStartup.S +++ b/libc/nt/ws2_32/WSAStartup.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAStartup,WSAStartup,115 +.imp ws2_32,__imp_WSAStartup,WSAStartup .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSAStringToAddressW.S b/libc/nt/ws2_32/WSAStringToAddressW.S deleted file mode 100644 index 5371fbcc4..000000000 --- a/libc/nt/ws2_32/WSAStringToAddressW.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAStringToAddressW,WSAStringToAddressW,122 diff --git a/libc/nt/ws2_32/WSAUnadvertiseProvider.S b/libc/nt/ws2_32/WSAUnadvertiseProvider.S deleted file mode 100644 index ee3c3ffb9..000000000 --- a/libc/nt/ws2_32/WSAUnadvertiseProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAUnadvertiseProvider,WSAUnadvertiseProvider,123 diff --git a/libc/nt/ws2_32/WSAUnhookBlockingHook.S b/libc/nt/ws2_32/WSAUnhookBlockingHook.S deleted file mode 100644 index 5bf401639..000000000 --- a/libc/nt/ws2_32/WSAUnhookBlockingHook.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAUnhookBlockingHook,WSAUnhookBlockingHook,110 diff --git a/libc/nt/ws2_32/WSAWaitForMultipleEvents.S b/libc/nt/ws2_32/WSAWaitForMultipleEvents.S index db9c4fc09..ae112f8b4 100644 --- a/libc/nt/ws2_32/WSAWaitForMultipleEvents.S +++ b/libc/nt/ws2_32/WSAWaitForMultipleEvents.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSAWaitForMultipleEvents,WSAWaitForMultipleEvents,124 +.imp ws2_32,__imp_WSAWaitForMultipleEvents,WSAWaitForMultipleEvents .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/WSApSetPostRoutine.S b/libc/nt/ws2_32/WSApSetPostRoutine.S deleted file mode 100644 index d9b277e06..000000000 --- a/libc/nt/ws2_32/WSApSetPostRoutine.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSApSetPostRoutine,WSApSetPostRoutine,24 diff --git a/libc/nt/ws2_32/WSCDeinstallProvider.S b/libc/nt/ws2_32/WSCDeinstallProvider.S deleted file mode 100644 index caaf909b0..000000000 --- a/libc/nt/ws2_32/WSCDeinstallProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCDeinstallProvider,WSCDeinstallProvider,125 diff --git a/libc/nt/ws2_32/WSCDeinstallProvider32.S b/libc/nt/ws2_32/WSCDeinstallProvider32.S deleted file mode 100644 index 1969dfcd9..000000000 --- a/libc/nt/ws2_32/WSCDeinstallProvider32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCDeinstallProvider32,WSCDeinstallProvider32,126 diff --git a/libc/nt/ws2_32/WSCDeinstallProviderEx.S b/libc/nt/ws2_32/WSCDeinstallProviderEx.S deleted file mode 100644 index 6ae710782..000000000 --- a/libc/nt/ws2_32/WSCDeinstallProviderEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCDeinstallProviderEx,WSCDeinstallProviderEx,127 diff --git a/libc/nt/ws2_32/WSCEnableNSProvider.S b/libc/nt/ws2_32/WSCEnableNSProvider.S deleted file mode 100644 index ef7905c20..000000000 --- a/libc/nt/ws2_32/WSCEnableNSProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCEnableNSProvider,WSCEnableNSProvider,128 diff --git a/libc/nt/ws2_32/WSCEnableNSProvider32.S b/libc/nt/ws2_32/WSCEnableNSProvider32.S deleted file mode 100644 index 35335026c..000000000 --- a/libc/nt/ws2_32/WSCEnableNSProvider32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCEnableNSProvider32,WSCEnableNSProvider32,129 diff --git a/libc/nt/ws2_32/WSCEnumNameSpaceProviders32.S b/libc/nt/ws2_32/WSCEnumNameSpaceProviders32.S deleted file mode 100644 index a14e2d9e4..000000000 --- a/libc/nt/ws2_32/WSCEnumNameSpaceProviders32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCEnumNameSpaceProviders32,WSCEnumNameSpaceProviders32,130 diff --git a/libc/nt/ws2_32/WSCEnumNameSpaceProvidersEx32.S b/libc/nt/ws2_32/WSCEnumNameSpaceProvidersEx32.S deleted file mode 100644 index 41f447d13..000000000 --- a/libc/nt/ws2_32/WSCEnumNameSpaceProvidersEx32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCEnumNameSpaceProvidersEx32,WSCEnumNameSpaceProvidersEx32,131 diff --git a/libc/nt/ws2_32/WSCEnumProtocols.S b/libc/nt/ws2_32/WSCEnumProtocols.S deleted file mode 100644 index ccf7b2980..000000000 --- a/libc/nt/ws2_32/WSCEnumProtocols.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCEnumProtocols,WSCEnumProtocols,132 diff --git a/libc/nt/ws2_32/WSCEnumProtocols32.S b/libc/nt/ws2_32/WSCEnumProtocols32.S deleted file mode 100644 index 1d18c3375..000000000 --- a/libc/nt/ws2_32/WSCEnumProtocols32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCEnumProtocols32,WSCEnumProtocols32,133 diff --git a/libc/nt/ws2_32/WSCEnumProtocolsEx.S b/libc/nt/ws2_32/WSCEnumProtocolsEx.S deleted file mode 100644 index e3fdb56b2..000000000 --- a/libc/nt/ws2_32/WSCEnumProtocolsEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCEnumProtocolsEx,WSCEnumProtocolsEx,134 diff --git a/libc/nt/ws2_32/WSCGetApplicationCategory.S b/libc/nt/ws2_32/WSCGetApplicationCategory.S deleted file mode 100644 index 13dd7107e..000000000 --- a/libc/nt/ws2_32/WSCGetApplicationCategory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCGetApplicationCategory,WSCGetApplicationCategory,135 diff --git a/libc/nt/ws2_32/WSCGetApplicationCategoryEx.S b/libc/nt/ws2_32/WSCGetApplicationCategoryEx.S deleted file mode 100644 index 061649041..000000000 --- a/libc/nt/ws2_32/WSCGetApplicationCategoryEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCGetApplicationCategoryEx,WSCGetApplicationCategoryEx,136 diff --git a/libc/nt/ws2_32/WSCGetProviderInfo.S b/libc/nt/ws2_32/WSCGetProviderInfo.S deleted file mode 100644 index be477e271..000000000 --- a/libc/nt/ws2_32/WSCGetProviderInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCGetProviderInfo,WSCGetProviderInfo,137 diff --git a/libc/nt/ws2_32/WSCGetProviderInfo32.S b/libc/nt/ws2_32/WSCGetProviderInfo32.S deleted file mode 100644 index 7b032a05e..000000000 --- a/libc/nt/ws2_32/WSCGetProviderInfo32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCGetProviderInfo32,WSCGetProviderInfo32,138 diff --git a/libc/nt/ws2_32/WSCGetProviderPath.S b/libc/nt/ws2_32/WSCGetProviderPath.S deleted file mode 100644 index 8ea4b84ea..000000000 --- a/libc/nt/ws2_32/WSCGetProviderPath.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCGetProviderPath,WSCGetProviderPath,139 diff --git a/libc/nt/ws2_32/WSCGetProviderPath32.S b/libc/nt/ws2_32/WSCGetProviderPath32.S deleted file mode 100644 index 38e73df26..000000000 --- a/libc/nt/ws2_32/WSCGetProviderPath32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCGetProviderPath32,WSCGetProviderPath32,140 diff --git a/libc/nt/ws2_32/WSCInstallNameSpace.S b/libc/nt/ws2_32/WSCInstallNameSpace.S deleted file mode 100644 index f0026b70e..000000000 --- a/libc/nt/ws2_32/WSCInstallNameSpace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallNameSpace,WSCInstallNameSpace,141 diff --git a/libc/nt/ws2_32/WSCInstallNameSpace32.S b/libc/nt/ws2_32/WSCInstallNameSpace32.S deleted file mode 100644 index 93c7a20b6..000000000 --- a/libc/nt/ws2_32/WSCInstallNameSpace32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallNameSpace32,WSCInstallNameSpace32,142 diff --git a/libc/nt/ws2_32/WSCInstallNameSpaceEx.S b/libc/nt/ws2_32/WSCInstallNameSpaceEx.S deleted file mode 100644 index a2edbd1a1..000000000 --- a/libc/nt/ws2_32/WSCInstallNameSpaceEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallNameSpaceEx,WSCInstallNameSpaceEx,143 diff --git a/libc/nt/ws2_32/WSCInstallNameSpaceEx2.S b/libc/nt/ws2_32/WSCInstallNameSpaceEx2.S deleted file mode 100644 index da4af3c71..000000000 --- a/libc/nt/ws2_32/WSCInstallNameSpaceEx2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallNameSpaceEx2,WSCInstallNameSpaceEx2,144 diff --git a/libc/nt/ws2_32/WSCInstallNameSpaceEx32.S b/libc/nt/ws2_32/WSCInstallNameSpaceEx32.S deleted file mode 100644 index cacd3f51c..000000000 --- a/libc/nt/ws2_32/WSCInstallNameSpaceEx32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallNameSpaceEx32,WSCInstallNameSpaceEx32,145 diff --git a/libc/nt/ws2_32/WSCInstallProvider.S b/libc/nt/ws2_32/WSCInstallProvider.S deleted file mode 100644 index 3ebf0edfc..000000000 --- a/libc/nt/ws2_32/WSCInstallProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallProvider,WSCInstallProvider,146 diff --git a/libc/nt/ws2_32/WSCInstallProvider64_32.S b/libc/nt/ws2_32/WSCInstallProvider64_32.S deleted file mode 100644 index 9f4f11bb8..000000000 --- a/libc/nt/ws2_32/WSCInstallProvider64_32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallProvider64_32,WSCInstallProvider64_32,147 diff --git a/libc/nt/ws2_32/WSCInstallProviderAndChains64_32.S b/libc/nt/ws2_32/WSCInstallProviderAndChains64_32.S deleted file mode 100644 index 3e762e4a6..000000000 --- a/libc/nt/ws2_32/WSCInstallProviderAndChains64_32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallProviderAndChains64_32,WSCInstallProviderAndChains64_32,148 diff --git a/libc/nt/ws2_32/WSCInstallProviderEx.S b/libc/nt/ws2_32/WSCInstallProviderEx.S deleted file mode 100644 index 0d59200d2..000000000 --- a/libc/nt/ws2_32/WSCInstallProviderEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCInstallProviderEx,WSCInstallProviderEx,149 diff --git a/libc/nt/ws2_32/WSCSetApplicationCategory.S b/libc/nt/ws2_32/WSCSetApplicationCategory.S deleted file mode 100644 index 001cd9039..000000000 --- a/libc/nt/ws2_32/WSCSetApplicationCategory.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCSetApplicationCategory,WSCSetApplicationCategory,150 diff --git a/libc/nt/ws2_32/WSCSetApplicationCategoryEx.S b/libc/nt/ws2_32/WSCSetApplicationCategoryEx.S deleted file mode 100644 index 60f15db55..000000000 --- a/libc/nt/ws2_32/WSCSetApplicationCategoryEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCSetApplicationCategoryEx,WSCSetApplicationCategoryEx,152 diff --git a/libc/nt/ws2_32/WSCSetProviderInfo.S b/libc/nt/ws2_32/WSCSetProviderInfo.S deleted file mode 100644 index b01b601b6..000000000 --- a/libc/nt/ws2_32/WSCSetProviderInfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCSetProviderInfo,WSCSetProviderInfo,153 diff --git a/libc/nt/ws2_32/WSCSetProviderInfo32.S b/libc/nt/ws2_32/WSCSetProviderInfo32.S deleted file mode 100644 index dda8b34a5..000000000 --- a/libc/nt/ws2_32/WSCSetProviderInfo32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCSetProviderInfo32,WSCSetProviderInfo32,154 diff --git a/libc/nt/ws2_32/WSCUnInstallNameSpace.S b/libc/nt/ws2_32/WSCUnInstallNameSpace.S deleted file mode 100644 index 0d4b4f25c..000000000 --- a/libc/nt/ws2_32/WSCUnInstallNameSpace.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCUnInstallNameSpace,WSCUnInstallNameSpace,155 diff --git a/libc/nt/ws2_32/WSCUnInstallNameSpace32.S b/libc/nt/ws2_32/WSCUnInstallNameSpace32.S deleted file mode 100644 index 671b8d1ea..000000000 --- a/libc/nt/ws2_32/WSCUnInstallNameSpace32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCUnInstallNameSpace32,WSCUnInstallNameSpace32,156 diff --git a/libc/nt/ws2_32/WSCUnInstallNameSpaceEx2.S b/libc/nt/ws2_32/WSCUnInstallNameSpaceEx2.S deleted file mode 100644 index 779094e98..000000000 --- a/libc/nt/ws2_32/WSCUnInstallNameSpaceEx2.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCUnInstallNameSpaceEx2,WSCUnInstallNameSpaceEx2,157 diff --git a/libc/nt/ws2_32/WSCUpdateProvider.S b/libc/nt/ws2_32/WSCUpdateProvider.S deleted file mode 100644 index 1e6f2d48e..000000000 --- a/libc/nt/ws2_32/WSCUpdateProvider.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCUpdateProvider,WSCUpdateProvider,158 diff --git a/libc/nt/ws2_32/WSCUpdateProvider32.S b/libc/nt/ws2_32/WSCUpdateProvider32.S deleted file mode 100644 index ac4fc6997..000000000 --- a/libc/nt/ws2_32/WSCUpdateProvider32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCUpdateProvider32,WSCUpdateProvider32,159 diff --git a/libc/nt/ws2_32/WSCUpdateProviderEx.S b/libc/nt/ws2_32/WSCUpdateProviderEx.S deleted file mode 100644 index d0c78c93f..000000000 --- a/libc/nt/ws2_32/WSCUpdateProviderEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCUpdateProviderEx,WSCUpdateProviderEx,160 diff --git a/libc/nt/ws2_32/WSCWriteNameSpaceOrder.S b/libc/nt/ws2_32/WSCWriteNameSpaceOrder.S deleted file mode 100644 index 561cce734..000000000 --- a/libc/nt/ws2_32/WSCWriteNameSpaceOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCWriteNameSpaceOrder,WSCWriteNameSpaceOrder,161 diff --git a/libc/nt/ws2_32/WSCWriteNameSpaceOrder32.S b/libc/nt/ws2_32/WSCWriteNameSpaceOrder32.S deleted file mode 100644 index 16820e8b3..000000000 --- a/libc/nt/ws2_32/WSCWriteNameSpaceOrder32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCWriteNameSpaceOrder32,WSCWriteNameSpaceOrder32,162 diff --git a/libc/nt/ws2_32/WSCWriteProviderOrder.S b/libc/nt/ws2_32/WSCWriteProviderOrder.S deleted file mode 100644 index 3874c0497..000000000 --- a/libc/nt/ws2_32/WSCWriteProviderOrder.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCWriteProviderOrder,WSCWriteProviderOrder,163 diff --git a/libc/nt/ws2_32/WSCWriteProviderOrder32.S b/libc/nt/ws2_32/WSCWriteProviderOrder32.S deleted file mode 100644 index 92e2d0559..000000000 --- a/libc/nt/ws2_32/WSCWriteProviderOrder32.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCWriteProviderOrder32,WSCWriteProviderOrder32,164 diff --git a/libc/nt/ws2_32/WSCWriteProviderOrderEx.S b/libc/nt/ws2_32/WSCWriteProviderOrderEx.S deleted file mode 100644 index a6ebeeb6d..000000000 --- a/libc/nt/ws2_32/WSCWriteProviderOrderEx.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_WSCWriteProviderOrderEx,WSCWriteProviderOrderEx,165 diff --git a/libc/nt/ws2_32/accept.S b/libc/nt/ws2_32/accept.S index ba05080d3..b4216166c 100644 --- a/libc/nt/ws2_32/accept.S +++ b/libc/nt/ws2_32/accept.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_accept,accept,1 +.imp ws2_32,__imp_accept,accept .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/bind.S b/libc/nt/ws2_32/bind.S index ac97229ae..88562ccf7 100644 --- a/libc/nt/ws2_32/bind.S +++ b/libc/nt/ws2_32/bind.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_bind,bind,2 +.imp ws2_32,__imp_bind,bind .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/closesocket.S b/libc/nt/ws2_32/closesocket.S index 41171e168..925e3c945 100644 --- a/libc/nt/ws2_32/closesocket.S +++ b/libc/nt/ws2_32/closesocket.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_closesocket,closesocket,3 +.imp ws2_32,__imp_closesocket,closesocket .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/connect.S b/libc/nt/ws2_32/connect.S deleted file mode 100644 index 9cd6be59d..000000000 --- a/libc/nt/ws2_32/connect.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_connect,connect,4 diff --git a/libc/nt/ws2_32/freeaddrinfo.S b/libc/nt/ws2_32/freeaddrinfo.S deleted file mode 100644 index 470ae0df1..000000000 --- a/libc/nt/ws2_32/freeaddrinfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_freeaddrinfo,freeaddrinfo,190 diff --git a/libc/nt/ws2_32/getaddrinfo.S b/libc/nt/ws2_32/getaddrinfo.S deleted file mode 100644 index 194a84a02..000000000 --- a/libc/nt/ws2_32/getaddrinfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_getaddrinfo,getaddrinfo,191 diff --git a/libc/nt/ws2_32/gethostbyaddr.S b/libc/nt/ws2_32/gethostbyaddr.S deleted file mode 100644 index 8cc430aed..000000000 --- a/libc/nt/ws2_32/gethostbyaddr.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_gethostbyaddr,gethostbyaddr,51 diff --git a/libc/nt/ws2_32/gethostbyname.S b/libc/nt/ws2_32/gethostbyname.S deleted file mode 100644 index 455042f3d..000000000 --- a/libc/nt/ws2_32/gethostbyname.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_gethostbyname,gethostbyname,52 diff --git a/libc/nt/ws2_32/gethostname.S b/libc/nt/ws2_32/gethostname.S deleted file mode 100644 index 629942c5b..000000000 --- a/libc/nt/ws2_32/gethostname.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_gethostname,gethostname,57 diff --git a/libc/nt/ws2_32/getnameinfo.S b/libc/nt/ws2_32/getnameinfo.S deleted file mode 100644 index 4648b29ae..000000000 --- a/libc/nt/ws2_32/getnameinfo.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_getnameinfo,getnameinfo,192 diff --git a/libc/nt/ws2_32/getpeername.S b/libc/nt/ws2_32/getpeername.S index 1e5863930..499803572 100644 --- a/libc/nt/ws2_32/getpeername.S +++ b/libc/nt/ws2_32/getpeername.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_getpeername,getpeername,5 +.imp ws2_32,__imp_getpeername,getpeername .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/getprotobyname.S b/libc/nt/ws2_32/getprotobyname.S deleted file mode 100644 index 72ce20450..000000000 --- a/libc/nt/ws2_32/getprotobyname.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_getprotobyname,getprotobyname,53 diff --git a/libc/nt/ws2_32/getprotobynumber.S b/libc/nt/ws2_32/getprotobynumber.S deleted file mode 100644 index 9119d9370..000000000 --- a/libc/nt/ws2_32/getprotobynumber.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_getprotobynumber,getprotobynumber,54 diff --git a/libc/nt/ws2_32/getservbyname.S b/libc/nt/ws2_32/getservbyname.S deleted file mode 100644 index 445b2f0b8..000000000 --- a/libc/nt/ws2_32/getservbyname.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_getservbyname,getservbyname,55 diff --git a/libc/nt/ws2_32/getservbyport.S b/libc/nt/ws2_32/getservbyport.S deleted file mode 100644 index 933eec20e..000000000 --- a/libc/nt/ws2_32/getservbyport.S +++ /dev/null @@ -1,2 +0,0 @@ -#include "libc/nt/codegen.h" -.imp ws2_32,__imp_getservbyport,getservbyport,56 diff --git a/libc/nt/ws2_32/getsockname.S b/libc/nt/ws2_32/getsockname.S index 340c9f0c7..8aad7e4c6 100644 --- a/libc/nt/ws2_32/getsockname.S +++ b/libc/nt/ws2_32/getsockname.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_getsockname,getsockname,6 +.imp ws2_32,__imp_getsockname,getsockname .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/getsockopt.S b/libc/nt/ws2_32/getsockopt.S index 206a332ed..a42b7fd57 100644 --- a/libc/nt/ws2_32/getsockopt.S +++ b/libc/nt/ws2_32/getsockopt.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_getsockopt,getsockopt,7 +.imp ws2_32,__imp_getsockopt,getsockopt .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/ioctlsocket.S b/libc/nt/ws2_32/ioctlsocket.S index b8b543acd..91d6a0dc4 100644 --- a/libc/nt/ws2_32/ioctlsocket.S +++ b/libc/nt/ws2_32/ioctlsocket.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_ioctlsocket,ioctlsocket,10 +.imp ws2_32,__imp_ioctlsocket,ioctlsocket .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/listen.S b/libc/nt/ws2_32/listen.S index f05c58667..e31543738 100644 --- a/libc/nt/ws2_32/listen.S +++ b/libc/nt/ws2_32/listen.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_listen,listen,13 +.imp ws2_32,__imp_listen,listen .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/recv.S b/libc/nt/ws2_32/recv.S index 08dae5573..260d5814b 100644 --- a/libc/nt/ws2_32/recv.S +++ b/libc/nt/ws2_32/recv.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_recv,recv,16 +.imp ws2_32,__imp_recv,recv .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/recvfrom.S b/libc/nt/ws2_32/recvfrom.S index d52dc5382..583f9036e 100644 --- a/libc/nt/ws2_32/recvfrom.S +++ b/libc/nt/ws2_32/recvfrom.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_recvfrom,recvfrom,17 +.imp ws2_32,__imp_recvfrom,recvfrom .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/select.S b/libc/nt/ws2_32/select.S index 34e831801..1096a94e8 100644 --- a/libc/nt/ws2_32/select.S +++ b/libc/nt/ws2_32/select.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_select,select,18 +.imp ws2_32,__imp_select,select .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/send.S b/libc/nt/ws2_32/send.S index 34f5856bb..bec7e9f79 100644 --- a/libc/nt/ws2_32/send.S +++ b/libc/nt/ws2_32/send.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_send,send,19 +.imp ws2_32,__imp_send,send .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/sendto.S b/libc/nt/ws2_32/sendto.S index ffcd1771d..fb626c747 100644 --- a/libc/nt/ws2_32/sendto.S +++ b/libc/nt/ws2_32/sendto.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_sendto,sendto,20 +.imp ws2_32,__imp_sendto,sendto .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/setsockopt.S b/libc/nt/ws2_32/setsockopt.S index 3b6768c9c..d34a4c34d 100644 --- a/libc/nt/ws2_32/setsockopt.S +++ b/libc/nt/ws2_32/setsockopt.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_setsockopt,setsockopt,21 +.imp ws2_32,__imp_setsockopt,setsockopt .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/shutdown.S b/libc/nt/ws2_32/shutdown.S index 5445b2b5b..af00d9c62 100644 --- a/libc/nt/ws2_32/shutdown.S +++ b/libc/nt/ws2_32/shutdown.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_shutdown,shutdown,22 +.imp ws2_32,__imp_shutdown,shutdown .text.windows .ftrace1 diff --git a/libc/nt/ws2_32/socket.S b/libc/nt/ws2_32/socket.S index 390fddc81..c693378ac 100644 --- a/libc/nt/ws2_32/socket.S +++ b/libc/nt/ws2_32/socket.S @@ -1,5 +1,5 @@ #include "libc/nt/codegen.h" -.imp ws2_32,__imp_socket,socket,23 +.imp ws2_32,__imp_socket,socket .text.windows .ftrace1 diff --git a/libc/runtime/cocmd.c b/libc/runtime/cocmd.c index 9664d4c17..6115e6eb7 100644 --- a/libc/runtime/cocmd.c +++ b/libc/runtime/cocmd.c @@ -32,6 +32,7 @@ #include "libc/macros.internal.h" #include "libc/runtime/runtime.h" #include "libc/stdio/stdio.h" +#include "libc/stdio/temp.h" #include "libc/str/str.h" #include "libc/sysv/consts/o.h" #include "libc/sysv/consts/ok.h" @@ -282,6 +283,24 @@ static int Cat(void) { return 0; } +static int Mktemp(void) { + int fd; + char template[PATH_MAX + 1]; + if (n == 2) { + strlcpy(template, args[1], sizeof(template)); + } else { + strlcpy(template, kTmpPath, sizeof(template)); + strlcat(template, "tmp.XXXXXX", sizeof(template)); + } + if ((fd = mkstemp(template)) == -1) { + perror("mkstemp"); + return 1; + } + Write(1, template); + close(fd); + return 0; +} + static int Read(void) { unsigned char c; int i, j, rc = 1; @@ -583,6 +602,7 @@ static int TryBuiltin(void) { if (!strcmp(args[0], "rmdir")) return Rmdir(); if (!strcmp(args[0], "mkdir")) return Mkdir(); if (!strcmp(args[0], "false")) return False(); + if (!strcmp(args[0], "mktemp")) return Mktemp(); if (!strcmp(args[0], "usleep")) return Usleep(); if (!strcmp(args[0], "toupper")) return Toupper(); if (_weaken(_tr) && !strcmp(args[0], "tr")) return Fake(_weaken(_tr)); diff --git a/libc/runtime/mkstemp.c b/libc/runtime/mkstemp.c new file mode 100644 index 000000000..0148e685d --- /dev/null +++ b/libc/runtime/mkstemp.c @@ -0,0 +1,54 @@ +/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ +│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ +╞══════════════════════════════════════════════════════════════════════════════╡ +│ Copyright 2020 Justine Alexandra Roberts Tunney │ +│ │ +│ Permission to use, copy, modify, and/or distribute this software for │ +│ any purpose with or without fee is hereby granted, provided that the │ +│ above copyright notice and this permission notice appear in all copies. │ +│ │ +│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │ +│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │ +│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │ +│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │ +│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │ +│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │ +│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ +│ PERFORMANCE OF THIS SOFTWARE. │ +╚─────────────────────────────────────────────────────────────────────────────*/ +#include "libc/calls/calls.h" +#include "libc/intrin/bits.h" +#include "libc/stdio/rand.h" +#include "libc/stdio/temp.h" +#include "libc/str/str.h" +#include "libc/sysv/consts/o.h" +#include "libc/sysv/errfuns.h" + +/** + * Creates temporary file name and descriptor, e.g. + * + * char path[PATH_MAX+1]; + * strlcat(path, kTmpDir, sizeof(path)); + * strlcat(path, "sauce.XXXXXX", sizeof(path)); + * close(mkstemp(path)); + * puts(path); + * + * @param template is mutated to replace last six X's with rng + * @return open file descriptor r + w exclusive or -1 w/ errno + * @raise EINVAL if `template` didn't end with `XXXXXX` + */ +int mkstemp(char *template) { + int i, n; + uint64_t w; + if ((n = strlen(template)) < 6 || + READ16LE(template + n - 2) != READ16LE("XX") || + READ32LE(template + n - 6) != READ32LE("XXXX")) { + return einval(); + } + w = _rand64(); + for (i = 0; i < 6; ++i) { + template[n - 6 + i] = "0123456789abcdefghijklmnopqrstuvwxyz"[w % 36]; + w /= 36; + } + return open(template, O_RDWR | O_CREAT | O_EXCL, 0600); +} diff --git a/libc/runtime/printargs.c b/libc/runtime/printargs.c index d54fde198..4a0642fdf 100644 --- a/libc/runtime/printargs.c +++ b/libc/runtime/printargs.c @@ -104,7 +104,7 @@ static dontasan void Print(const char *prologue) { * * @param prologue needs to be a .rodata kprintf string */ -textstartup void __printargs(const char *prologue) { +dontasan textstartup void __printargs(const char *prologue) { const struct AuxiliaryValue { const char *fmt; diff --git a/libc/runtime/winmain.greg.c b/libc/runtime/winmain.greg.c index e55ccb736..4247236e3 100644 --- a/libc/runtime/winmain.greg.c +++ b/libc/runtime/winmain.greg.c @@ -20,6 +20,7 @@ #include "libc/calls/syscall_support-nt.internal.h" #include "libc/dce.h" #include "libc/intrin/describeflags.internal.h" +#include "libc/intrin/kprintf.h" #include "libc/intrin/strace.internal.h" #include "libc/intrin/weaken.h" #include "libc/log/libfatal.internal.h" @@ -29,6 +30,7 @@ #include "libc/nt/enum/consolemodeflags.h" #include "libc/nt/enum/filemapflags.h" #include "libc/nt/enum/pageflags.h" +#include "libc/nt/files.h" #include "libc/nt/memory.h" #include "libc/nt/pedef.internal.h" #include "libc/nt/process.h" @@ -123,6 +125,18 @@ __msabi static textwindows int OnEarlyWinCrash(struct NtExceptionPointers *ep) { ExitProcess(200); } +__msabi static textwindows void DeduplicateStdioHandles(void) { + int64_t proc, outhand, errhand, newhand; + outhand = GetStdHandle(kNtStdOutputHandle); + errhand = GetStdHandle(kNtStdErrorHandle); + if (outhand == errhand) { + proc = GetCurrentProcess(); + DuplicateHandle(proc, errhand, proc, &newhand, 0, true, + kNtDuplicateSameAccess); + SetStdHandle(kNtStdErrorHandle, newhand); + } +} + __msabi static textwindows wontreturn void WinMainNew(const char16_t *cmdline) { bool32 rc; int64_t h, hand; @@ -136,6 +150,7 @@ __msabi static textwindows wontreturn void WinMainNew(const char16_t *cmdline) { intptr_t stackaddr, allocaddr; version = NtGetPeb()->OSMajorVersion; __oldstack = (intptr_t)__builtin_frame_address(0); + DeduplicateStdioHandles(); if ((intptr_t)v_ntsubsystem == kNtImageSubsystemWindowsCui && version >= 10) { rc = SetConsoleCP(kNtCpUtf8); NTTRACE("SetConsoleCP(kNtCpUtf8) → %hhhd", rc); diff --git a/libc/stdio/mktemp.c b/libc/stdio/mktemp.c index fb7221680..2c5fe5d4a 100644 --- a/libc/stdio/mktemp.c +++ b/libc/stdio/mktemp.c @@ -16,24 +16,36 @@ │ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ -#include "libc/calls/calls.h" +#include "libc/errno.h" +#include "libc/intrin/bits.h" +#include "libc/stdio/rand.h" #include "libc/stdio/temp.h" -#include "libc/sysv/errfuns.h" +#include "libc/str/str.h" /** - * Generates unique filename. + * Generates temporary filename. * - * This function is usually frowned upon, since it's been known to - * create nasty opportunities for race conditions. Our implementation - * reflects that; consider using mkostemps(). + * char tmp[14] = "/tmp/hiXXXXXX"; + * puts(mkstemp(tmp)); + * + * @param template is mutated to replace last six X's with rng + * @raise EINVAL if `template` didn't end with `XXXXXX` + * @return pointer to mutated `template`, or 0 w/ errno + * @see mkstemp() */ char *mktemp(char *template) { - int fd; - if ((fd = mkostemps(template, 0, 0)) != -1) { - close(fd); - unlink(template); - } else { - template[0] = '\0'; + int i, n; + uint64_t w; + if ((n = strlen(template)) < 6 || + READ16LE(template + n - 2) != READ16LE("XX") || + READ32LE(template + n - 6) != READ32LE("XXXX")) { + errno = EINVAL; + return 0; + } + w = _rand64(); + for (i = 0; i < 6; ++i) { + template[n - 6 + i] = "0123456789abcdefghijklmnopqrstuvwxyz"[w % 36]; + w /= 36; } return template; } diff --git a/libc/sysv/consts/arphrd.h b/libc/sysv/consts/arphrd.h deleted file mode 100644 index a1b429217..000000000 --- a/libc/sysv/consts/arphrd.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_ARPHRD_H_ -#define COSMOPOLITAN_LIBC_SYSV_CONSTS_ARPHRD_H_ - -#define ARPHRD_ETHER ARPHRD_ETHER -#define ARPHRD_FCFABRIC ARPHRD_FCFABRIC -#define ARPHRD_IEEE80211 ARPHRD_IEEE80211 -#define ARPHRD_IEEE80211_PRISM ARPHRD_IEEE80211_PRISM -#define ARPHRD_IEEE80211_RADIOTAP ARPHRD_IEEE80211_RADIOTAP -#define ARPHRD_IEEE802154 ARPHRD_IEEE802154 -#define ARPHRD_IEEE802_TR ARPHRD_IEEE802_TR -#define ARPHRD_LOCALTLK ARPHRD_LOCALTLK - -#if !(__ASSEMBLER__ + __LINKER__ + 0) -COSMOPOLITAN_C_START_ - -extern const uint16_t ARPHRD_ETHER; -extern const uint16_t ARPHRD_FCFABRIC; -extern const uint16_t ARPHRD_IEEE80211; -extern const uint16_t ARPHRD_IEEE80211_PRISM; -extern const uint16_t ARPHRD_IEEE80211_RADIOTAP; -extern const uint16_t ARPHRD_IEEE802154; -extern const uint16_t ARPHRD_IEEE802_TR; -extern const uint16_t ARPHRD_LOCALTLK; - -COSMOPOLITAN_C_END_ -#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ -#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_ARPHRD_H_ */ diff --git a/libc/stdio/mkstemp.c b/test/libc/calls/close_test.c similarity index 86% rename from libc/stdio/mkstemp.c rename to test/libc/calls/close_test.c index 881c3b4c8..1556b7828 100644 --- a/libc/stdio/mkstemp.c +++ b/test/libc/calls/close_test.c @@ -1,7 +1,7 @@ /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ -│ Copyright 2020 Justine Alexandra Roberts Tunney │ +│ Copyright 2023 Justine Alexandra Roberts Tunney │ │ │ │ Permission to use, copy, modify, and/or distribute this software for │ │ any purpose with or without fee is hereby granted, provided that the │ @@ -16,8 +16,13 @@ │ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ -#include "libc/stdio/temp.h" +#include "libc/calls/calls.h" +#include "libc/dce.h" +#include "libc/stdio/stdio.h" +#include "libc/testlib/testlib.h" -int mkstemp(char *template) { - return mkostempsm(template, 0, 0, 0600); +TEST(close, stdout) { + if (!IsWindows()) return; + close(1); + fprintf(stderr, "hi\n"); } diff --git a/test/libc/calls/ioctl_test.c b/test/libc/calls/ioctl_test.c index 380de276f..a504d8ef6 100644 --- a/test/libc/calls/ioctl_test.c +++ b/test/libc/calls/ioctl_test.c @@ -24,6 +24,7 @@ #include "libc/log/log.h" #include "libc/mem/gc.internal.h" #include "libc/mem/mem.h" +#include "libc/runtime/runtime.h" #include "libc/sock/sock.h" #include "libc/sock/struct/ifconf.h" #include "libc/sock/struct/ifreq.h" @@ -32,6 +33,7 @@ #include "libc/sysv/consts/ipproto.h" #include "libc/sysv/consts/sio.h" #include "libc/sysv/consts/sock.h" +#include "libc/testlib/subprocess.h" #include "libc/testlib/testlib.h" TEST(siocgifconf, test) { @@ -70,3 +72,12 @@ TEST(siocgifconf, test) { EXPECT_TRUE(foundloopback); ASSERT_NE(-1, close(socketfd)); } + +TEST(siocgifconf, mkntenvblock_systemroot) { + if (__argc != 1) return; + SPAWN(fork); + execve(GetProgramExecutableName(), + (char *[]){GetProgramExecutableName(), "hi", NULL}, (char *[]){NULL}); + abort(); + EXITS(0); +} diff --git a/test/libc/calls/mkntenvblock_test.c b/test/libc/calls/mkntenvblock_test.c index 6cd545462..7ddd6eccd 100644 --- a/test/libc/calls/mkntenvblock_test.c +++ b/test/libc/calls/mkntenvblock_test.c @@ -18,11 +18,16 @@ ╚─────────────────────────────────────────────────────────────────────────────*/ #include "libc/calls/ntspawn.h" #include "libc/mem/gc.internal.h" +#include "libc/runtime/runtime.h" #include "libc/testlib/testlib.h" char tmp[ARG_MAX]; char16_t envvars[ARG_MAX / 2]; +void SetUpOnce(void) { + environ = 0; // pacify systemroot +} + TEST(mkntenvblock, emptyList_onlyOutputsDoubleNulStringTerminator) { char *envp[] = {NULL}; ASSERT_NE(-1, mkntenvblock(envvars, envp, NULL, tmp)); diff --git a/test/libc/calls/test.mk b/test/libc/calls/test.mk index cf4d6bab3..709ec28c4 100644 --- a/test/libc/calls/test.mk +++ b/test/libc/calls/test.mk @@ -133,7 +133,6 @@ o/$(MODE)/test/libc/calls/fexecve_test.com.dbg: \ o/$(MODE)/test/libc/calls/fexecve_test.o \ o/$(MODE)/test/libc/calls/calls.pkg \ o/$(MODE)/test/libc/mem/prog/life.elf.zip.o \ - o/$(MODE)/tool/build/echo.zip.o \ o/$(MODE)/test/libc/calls/life-nomod.com.zip.o \ o/$(MODE)/test/libc/calls/zipread.com.zip.o \ $(LIBC_TESTMAIN) \ diff --git a/test/libc/stdio/dirstream_test.c b/test/libc/stdio/dirstream_test.c index 8d7d672d2..cf4909779 100644 --- a/test/libc/stdio/dirstream_test.c +++ b/test/libc/stdio/dirstream_test.c @@ -61,7 +61,7 @@ TEST(opendir, enotdir) { TEST(opendir, zipTest_fake) { ASSERT_NE(NULL, (dir = opendir("/zip"))); EXPECT_NE(NULL, (ent = readdir(dir))); - EXPECT_STREQ("echo", ent->d_name); + EXPECT_STREQ("echo.com", ent->d_name); EXPECT_NE(NULL, (ent = readdir(dir))); EXPECT_STREQ("usr", ent->d_name); EXPECT_NE(NULL, (ent = readdir(dir))); @@ -70,7 +70,7 @@ TEST(opendir, zipTest_fake) { EXPECT_EQ(0, closedir(dir)); ASSERT_NE(NULL, (dir = opendir("/zip/"))); EXPECT_NE(NULL, (ent = readdir(dir))); - EXPECT_STREQ("echo", ent->d_name); + EXPECT_STREQ("echo.com", ent->d_name); EXPECT_NE(NULL, (ent = readdir(dir))); EXPECT_STREQ("usr", ent->d_name); EXPECT_NE(NULL, (ent = readdir(dir))); diff --git a/test/libc/stdio/test.mk b/test/libc/stdio/test.mk index 1d9b8c389..b2ad38268 100644 --- a/test/libc/stdio/test.mk +++ b/test/libc/stdio/test.mk @@ -57,7 +57,7 @@ o/$(MODE)/test/libc/stdio/%.com.dbg: \ $(TEST_LIBC_STDIO_DEPS) \ o/$(MODE)/test/libc/stdio/%.o \ o/$(MODE)/test/libc/stdio/stdio.pkg \ - o/$(MODE)/tool/build/echo.zip.o \ + o/$(MODE)/tool/build/echo.com.zip.o \ $(LIBC_TESTMAIN) \ $(CRT) \ $(APE_NO_MODIFY_SELF) diff --git a/third_party/dlmalloc/binmaps.inc b/third_party/dlmalloc/binmaps.inc index d51d0238d..4f2871050 100644 --- a/third_party/dlmalloc/binmaps.inc +++ b/third_party/dlmalloc/binmaps.inc @@ -25,7 +25,7 @@ /* index corresponding to given bit. Use x86 asm if possible */ -#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) +#ifdef __GNUC__ #define compute_bit2idx(X, I)\ {\ unsigned int J;\ diff --git a/tool/build/build.mk b/tool/build/build.mk index dc7c404b5..d193d97d0 100644 --- a/tool/build/build.mk +++ b/tool/build/build.mk @@ -9,16 +9,7 @@ TOOL_BUILD_HDRS = $(filter %.h,$(TOOL_BUILD_FILES)) TOOL_BUILD_BINS = \ $(TOOL_BUILD_COMS) \ - $(TOOL_BUILD_COMS:%=%.dbg) \ - o/$(MODE)/tool/build/mkdir \ - o/$(MODE)/tool/build/chmod \ - o/$(MODE)/tool/build/cp \ - o/$(MODE)/tool/build/mv \ - o/$(MODE)/tool/build/echo \ - o/$(MODE)/tool/build/false \ - o/$(MODE)/tool/build/gzip \ - o/$(MODE)/tool/build/printf \ - o/$(MODE)/tool/build/dd + $(TOOL_BUILD_COMS:%=%.dbg) TOOL_BUILD_OBJS = \ $(TOOL_BUILD_SRCS:%.c=o/$(MODE)/%.o) @@ -85,18 +76,9 @@ o/$(MODE)/tool/build/%.com.dbg: \ @$(APELINK) o/$(MODE)/tool/build/dso/sandbox.so.zip.o \ -o/$(MODE)/tool/build/mkdir.zip.o \ -o/$(MODE)/tool/build/chmod.zip.o \ -o/$(MODE)/tool/build/cp.zip.o \ -o/$(MODE)/tool/build/mv.zip.o \ -o/$(MODE)/tool/build/false.zip.o \ o/$(MODE)/tool/build/false.com.zip.o \ -o/$(MODE)/tool/build/echo.zip.o \ o/$(MODE)/tool/build/echo.com.zip.o \ -o/$(MODE)/tool/build/cocmd.com.zip.o \ -o/$(MODE)/tool/build/gzip.zip.o \ -o/$(MODE)/tool/build/printf.zip.o \ -o/$(MODE)/tool/build/dd.zip.o: private \ +o/$(MODE)/tool/build/cocmd.com.zip.o: private \ ZIPOBJ_FLAGS += \ -B diff --git a/tool/build/compile.c b/tool/build/compile.c index 205ca3e28..3a09cf656 100644 --- a/tool/build/compile.c +++ b/tool/build/compile.c @@ -201,17 +201,18 @@ char buf[PAGESIZE]; char tmpout[PATH_MAX]; const char *const kSafeEnv[] = { - "ADDR2LINE", // needed by GetAddr2linePath - "HOME", // needed by ~/.runit.psk - "HOMEDRIVE", // needed by ~/.runit.psk - "HOMEPATH", // needed by ~/.runit.psk - "MAKEFLAGS", // needed by IsRunningUnderMake - "MODE", // needed by test scripts - "PATH", // needed by clang - "PWD", // just seems plain needed - "STRACE", // useful for troubleshooting - "TERM", // needed to detect colors - "TMPDIR", // needed by compiler + "ADDR2LINE", // needed by GetAddr2linePath + "HOME", // needed by ~/.runit.psk + "HOMEDRIVE", // needed by ~/.runit.psk + "HOMEPATH", // needed by ~/.runit.psk + "MAKEFLAGS", // needed by IsRunningUnderMake + "MODE", // needed by test scripts + "PATH", // needed by clang + "PWD", // just seems plain needed + "STRACE", // useful for troubleshooting + "TERM", // needed to detect colors + "TMPDIR", // needed by compiler + "SYSTEMROOT", // needed by socket() }; const char *const kGccOnlyFlags[] = { @@ -373,7 +374,11 @@ bool IsSafeEnv(const char *s) { r = ARRAYLEN(kSafeEnv) - 1; while (l <= r) { m = (l & r) + ((l ^ r) >> 1); // floor((a+b)/2) - x = strncmp(s, kSafeEnv[m], n); + if (IsWindows()) { + x = strncasecmp(s, kSafeEnv[m], n); + } else { + x = strncmp(s, kSafeEnv[m], n); + } if (x < 0) { r = m - 1; } else if (x > 0) { @@ -643,10 +648,6 @@ int Launch(void) { close(pipefds[1]); for (;;) { - if (gotchld) { - rc = 0; - break; - } if (gotalrm) { PrintRed(); appends(&output, "\n\n`"); diff --git a/tool/build/fixupobj.c b/tool/build/fixupobj.c index ed8fd7af1..c5012a307 100644 --- a/tool/build/fixupobj.c +++ b/tool/build/fixupobj.c @@ -176,13 +176,13 @@ static void RewriteTlsCode(void) { uint32_t *p, *pe; for (i = 0; i < elf->e_shnum; ++i) { if (!(shdr = GetElfSectionHeaderAddress(elf, esize, i))) { - Die("elf header overflow"); + Die("elf header overflow #1"); } if (shdr->sh_type == SHT_PROGBITS && // (shdr->sh_flags & SHF_ALLOC) && // (shdr->sh_flags & SHF_EXECINSTR)) { if (!(p = GetElfSectionAddress(elf, esize, shdr))) { - Die("elf header overflow"); + Die("elf header overflow #2"); } for (pe = p + shdr->sh_size / 4; p <= pe; ++p) { if ((*p & -32) == MRS_TPIDR_EL0) { @@ -213,11 +213,11 @@ static void OptimizePatchableFunctionEntries(void) { if (!syms[i].st_size) continue; if (ELF64_ST_TYPE(syms[i].st_info) != STT_FUNC) continue; if (!(shdr = GetElfSectionHeaderAddress(elf, esize, syms[i].st_shndx))) { - Die("elf header overflow"); + Die("elf header overflow #3"); } if (shdr->sh_type != SHT_PROGBITS) continue; if (!(p = GetElfSectionAddress(elf, esize, shdr))) { - Die("elf header overflow"); + Die("elf header overflow #4"); } if (syms[i].st_value < shdr->sh_addr) { Die("elf symbol beneath section"); diff --git a/tool/build/package.c b/tool/build/package.c index 953c40882..865f8e097 100644 --- a/tool/build/package.c +++ b/tool/build/package.c @@ -651,9 +651,9 @@ int main(int argc, char *argv[]) { if (argc == 2 && !strcmp(argv[1], "-n")) { exit(0); } - if (!IsOptimized()) { - ShowCrashReports(); - } +#ifndef NDEBUG + ShowCrashReports(); +#endif bzero(&pkg, sizeof(pkg)); bzero(&deps, sizeof(deps)); Package(argc, argv, &pkg, &deps); diff --git a/tool/build/zipobj.c b/tool/build/zipobj.c index cb91014e5..29f4a18b6 100644 --- a/tool/build/zipobj.c +++ b/tool/build/zipobj.c @@ -16,6 +16,7 @@ │ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ +#include "libc/assert.h" #include "libc/calls/calls.h" #include "libc/calls/struct/stat.h" #include "libc/elf/def.h" @@ -139,16 +140,27 @@ void ProcessFile(struct ElfWriter *elf, const char *path) { size_t pathlen; struct stat st; const char *name; - CHECK_NE(-1, (fd = open(path, O_RDONLY))); - CHECK_NE(-1, fstat(fd, &st)); + if (stat(path, &st)) { + perror(path); + exit(1); + } if (S_ISDIR(st.st_mode)) { + if ((fd = open(path, O_RDONLY | O_DIRECTORY)) == -1) { + perror(path); + exit(1); + } map = ""; st.st_size = 0; } else if (st.st_size) { - CHECK_NE(MAP_FAILED, - (map = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0))); + if ((fd = open(path, O_RDONLY)) == -1 || + (map = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0)) == + MAP_FAILED) { + perror(path); + exit(1); + } } else { - map = NULL; + fd = -1; + map = 0; } if (name_) { name = name_; @@ -166,7 +178,9 @@ void ProcessFile(struct ElfWriter *elf, const char *path) { } elfwriter_zip(elf, name, name, strlen(name), map, st.st_size, st.st_mode, timestamp, timestamp, timestamp, nocompress_); - if (st.st_size) CHECK_NE(-1, munmap(map, st.st_size)); + if (st.st_size) { + unassert(!munmap(map, st.st_size)); + } close(fd); }