- Timestamp:
- Nov 30, 1999, 8:42:35 PM (26 years ago)
- Location:
- trunk/src/NTDLL
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/makefile
r1685 r1895 1 # $Id: makefile,v 1.1 3 1999-11-10 14:14:50sandervl Exp $1 # $Id: makefile,v 1.14 1999-11-30 19:42:09 sandervl Exp $ 2 2 3 3 # … … 10 10 PDWIN32_LIB = ..\..\lib 11 11 PDWIN32_BIN = ..\..\bin 12 PDWIN32_TOOLS = ..\..\tools\bin 12 13 13 14 … … 43 44 44 45 $(TARGET).dll: $(OBJS) $(TARGET).def 45 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) sbsstub.obj $(TARGET).def $(PDWIN32_LIB)\kernel32.lib $(PDWIN32_LIB)\user32.lib $(PDWIN32_LIB)/ odincrt.lib OS2386.LIB $(RTLLIB_O)46 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) sbsstub.obj $(TARGET).def $(PDWIN32_LIB)\kernel32.lib $(PDWIN32_LIB)\user32.lib $(PDWIN32_LIB)/kernel32.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O) 46 47 # PMWINX.LIB LIBULS.LIB LIBCONV.LIB 47 48 $(CP) $@ $(PDWIN32_BIN) 48 49 49 $(TARGET).lib: $(TARGET).def 50 $(IMPLIB) $(IMPLIBFLAGS) $@ $** 51 $(CP) $@ $(PDWIN32_LIB) 50 $(TARGET).lib: $(TARGET)exp.def 51 $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def 52 $(CP) $@ $(PDWIN32_LIB) 53 54 #SvL: Doesn't work. So use fixed one for now..... (TODO) 55 #$(TARGET)exp.def: $(TARGET).def 56 # $(IMPDEF) $** $@ 52 57 53 58 -
trunk/src/NTDLL/ntdll.def
r1685 r1895 1 ; $Id: ntdll.def,v 1.2 3 1999-11-10 14:14:51sandervl Exp $1 ; $Id: ntdll.def,v 1.24 1999-11-30 19:42:09 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 6 6 DATA MULTIPLE NONSHARED 7 7 8 IMPORTS9 fwd_RtlUnwind = KERNEL32.RtlUnwind10 fwd_memmove = KERNEL32.memmove11 fwd_RtlFillMemory = KERNEL32.RtlFillMemory12 fwd_RtlMoveMemory = KERNEL32.RtlMoveMemory13 fwd_RtlZeroMemory = KERNEL32.RtlZeroMemory14 fwd_RtlInitializeCriticalSection = KERNEL32.InitializeCriticalSection15 fwd_RtlLeaveCriticalSection = KERNEL32.LeaveCriticalSection16 fwd_RtlEnterCriticalSection = KERNEL32.EnterCriticalSection17 fwd_RtlDeleteCriticalSection = KERNEL32.DeleteCriticalSection18 19 _lstrncmpW@12 = KERNEL32.lstrncmpW20 _lstrncmpiA@12 = KERNEL32.lstrncmpiA21 _lstrncmpiW@12 = KERNEL32.lstrncmpiW22 HEAP_strdupW = KERNEL32.HEAP_strdupW23 HEAP_strdupWtoA = KERNEL32.HEAP_strdupWtoA24 25 8 EXPORTS 26 9 … … 29 12 ; ------------------- 30 13 31 RtlUnwind = fwd_RtlUnwind 32 RtlFillMemory = fwd_RtlFillMemory 33 RtlMoveMemory = fwd_RtlMoveMemory 34 RtlZeroMemory = fwd_RtlZeroMemory 35 RtlInitializeCriticalSection = fwd_RtlInitializeCriticalSection 36 RtlLeaveCriticalSection = fwd_RtlLeaveCriticalSection 37 RtlEnterCriticalSection = fwd_RtlEnterCriticalSection 38 RtlDeleteCriticalSection = fwd_RtlDeleteCriticalSection 14 RtlFillMemory = _RtlFillMemory@12 @588 15 RtlMoveMemory = _RtlMoveMemory@12 @589 16 RtlUnwind = RtlUnwindAsm @590 17 RtlZeroMemory = _RtlZeroMemory@8 @591 39 18 40 19 ; unknown … … 46 25 ; real functions 47 26 NtAlertThread = _NtAlertThread@8 @57 48 ZwAlertThread = _NtAlertThread@8 27 ZwAlertThread = _NtAlertThread@8 @700 49 28 NtAllocateUuids = _NtAllocateUuids@16 @59 50 ZwAllocateUuids = _NtAllocateUuids@16 29 ZwAllocateUuids = _NtAllocateUuids@16 @701 51 30 NtTestAlert = _NtTestAlert@8 @232 52 ZwTestAlert = _NtTestAlert@8 31 ZwTestAlert = _NtTestAlert@8 @702 53 32 NtWriteRequestData = _NtWriteRequestData@20 @246 54 ZwWriteRequestData = _NtWriteRequestData@20 33 ZwWriteRequestData = _NtWriteRequestData@20 @703 55 34 NtImpersonateClientOfPort = _NtImpersonateClientOfPort@16 @112 56 ZwImpersonateClientOfPort = _NtImpersonateClientOfPort@16 35 ZwImpersonateClientOfPort = _NtImpersonateClientOfPort@16 @704 57 36 NtQuerySystemTime = _NtQuerySystemTime@4 @169 58 ZwQuerySystemTime = _NtQuerySystemTime@4 37 ZwQuerySystemTime = _NtQuerySystemTime@4 @705 59 38 NtReadRequestData = _NtReadRequestData@20 @178 60 ZwReadRequestData = _NtReadRequestData@20 39 ZwReadRequestData = _NtReadRequestData@20 @706 61 40 62 41 NtReplyPort = _NtReplyPort@16 @187 63 ZwReplyPort = _NtReplyPort@16 42 ZwReplyPort = _NtReplyPort@16 @707 64 43 NtReplyWaitReplyPort = _NtReplyWaitReplyPort@16 @189 65 ZwReplyWaitReplyPort = _NtReplyWaitReplyPort@16 44 ZwReplyWaitReplyPort = _NtReplyWaitReplyPort@16 @708 66 45 NtRequestPort = _NtRequestPort@16 @190 67 ZwRequestPort = _NtRequestPort@16 46 ZwRequestPort = _NtRequestPort@16 @709 68 47 69 48 70 49 NtOpenFile = _NtOpenFile@24 @127 71 ZwOpenFile = _NtOpenFile@24 50 ZwOpenFile = _NtOpenFile@24 @710 72 51 NtCreateFile = _NtCreateFile@44 @73 73 ZwCreateFile = _NtCreateFile@44 74 NtReadFile = _NtReadFile@36 75 ZwReadFile = _NtReadFile@36 52 ZwCreateFile = _NtCreateFile@44 @711 53 NtReadFile = _NtReadFile@36 @712 54 ZwReadFile = _NtReadFile@36 @713 76 55 NtDeviceIoControlFile = _NtDeviceIoControlFile@40 @94 77 ZwDeviceIoControlFile = _NtDeviceIoControlFile@40 56 ZwDeviceIoControlFile = _NtDeviceIoControlFile@40 @714 78 57 NtFsControlFile = _NtFsControlFile@40 @108 79 ZwFsControlFile = _NtFsControlFile@40 80 NtSetVolumeInformationFile = _NtSetVolumeInformationFile@16 81 ZwSetVolumeInformationFile = _NtSetVolumeInformationFile@16 82 NtQueryInformationFile = _NtQueryInformationFile@20 83 ZwQueryInformationFile = _NtQueryInformationFile@20 84 NtSetInformationFile = _NtSetInformationFile@20 85 ZwSetInformationFile = _NtSetInformationFile@20 86 NtQueryDirectoryFile = _NtQueryDirectoryFile@44 87 ZwQueryDirectoryFile = _NtQueryDirectoryFile@44 58 ZwFsControlFile = _NtFsControlFile@40 @715 59 NtSetVolumeInformationFile = _NtSetVolumeInformationFile@16 @716 60 ZwSetVolumeInformationFile = _NtSetVolumeInformationFile@16 @717 61 NtQueryInformationFile = _NtQueryInformationFile@20 @718 62 ZwQueryInformationFile = _NtQueryInformationFile@20 @719 63 NtSetInformationFile = _NtSetInformationFile@20 @720 64 ZwSetInformationFile = _NtSetInformationFile@20 @721 65 NtQueryDirectoryFile = _NtQueryDirectoryFile@44 @722 66 ZwQueryDirectoryFile = _NtQueryDirectoryFile@44 @723 88 67 NtClose = _NtClose@4 @65 89 ZwClose = _NtClose@4 68 ZwClose = _NtClose@4 @724 90 69 NtCreateTimer = _NtCreateTimer@16 @87 91 ZwCreateTimer = _NtCreateTimer@16 70 ZwCreateTimer = _NtCreateTimer@16 @725 92 71 NtSetTimer = _NtSetTimer@28 @221 93 ZwSetTimer = _NtSetTimer@28 94 NtQueryTimerResolution = _NtQueryTimerResolution@12 95 ZwQueryTimerResolution = _NtQueryTimerResolution@12 96 NtTerminateProcess = _NtTerminateProcess@8 97 ZwTerminateProcess = _NtTerminateProcess@8 98 NtQueryInformationProcess = _NtQueryInformationProcess@20 99 ZwQueryInformationProcess = _NtQueryInformationProcess@20 72 ZwSetTimer = _NtSetTimer@28 @726 73 NtQueryTimerResolution = _NtQueryTimerResolution@12 @727 74 ZwQueryTimerResolution = _NtQueryTimerResolution@12 @728 75 NtTerminateProcess = _NtTerminateProcess@8 @729 76 ZwTerminateProcess = _NtTerminateProcess@8 @730 77 NtQueryInformationProcess = _NtQueryInformationProcess@20 @731 78 ZwQueryInformationProcess = _NtQueryInformationProcess@20 @732 100 79 NtSetInformationProcess = _NtSetInformationProcess@16 @207 101 ZwSetInformationProcess = _NtSetInformationProcess@16 102 NtResumeThread = _NtResumeThread@8 103 ZwResumeThread = _NtResumeThread@8 104 NtTerminateThread = _NtTerminateThread@8 105 ZwTerminateThread = _NtTerminateThread@8 106 NtQueryInformationThread = _NtQueryInformationThread@20 107 ZwQueryInformationThread = _NtQueryInformationThread@20 108 NtSetInformationThread = _NtSetInformationThread@16 109 ZwSetInformationThread = _NtSetInformationThread@16 110 NtDuplicateToken = _NtDuplicateToken@24 111 ZwDuplicateToken = _NtDuplicateToken@24 112 NtOpenProcessToken = _NtOpenProcessToken@12 113 ZwOpenProcessToken = _NtOpenProcessToken@12 114 NtOpenThreadToken = _NtOpenThreadToken@16 115 ZwOpenThreadToken = _NtOpenThreadToken@16 116 NtAdjustPrivilegesToken = _NtAdjustPrivilegesToken@24 117 ZwAdjustPrivilegesToken = _NtAdjustPrivilegesToken@24 80 ZwSetInformationProcess = _NtSetInformationProcess@16 @733 81 NtResumeThread = _NtResumeThread@8 @734 82 ZwResumeThread = _NtResumeThread@8 @735 83 NtTerminateThread = _NtTerminateThread@8 @736 84 ZwTerminateThread = _NtTerminateThread@8 @737 85 NtQueryInformationThread = _NtQueryInformationThread@20 @738 86 ZwQueryInformationThread = _NtQueryInformationThread@20 @739 87 NtSetInformationThread = _NtSetInformationThread@16 @740 88 ZwSetInformationThread = _NtSetInformationThread@16 @741 89 NtDuplicateToken = _NtDuplicateToken@24 @742 90 ZwDuplicateToken = _NtDuplicateToken@24 @743 91 NtOpenProcessToken = _NtOpenProcessToken@12 @744 92 ZwOpenProcessToken = _NtOpenProcessToken@12 @745 93 NtOpenThreadToken = _NtOpenThreadToken@16 @746 94 ZwOpenThreadToken = _NtOpenThreadToken@16 @747 95 NtAdjustPrivilegesToken = _NtAdjustPrivilegesToken@24 @748 96 ZwAdjustPrivilegesToken = _NtAdjustPrivilegesToken@24 @749 118 97 NtQueryInformationToken = _NtQueryInformationToken@20 @156 119 ZwQueryInformationToken = _NtQueryInformationToken@20 120 NtCreateSection = _NtCreateSection@28 121 ZwCreateSection = _NtCreateSection@28 122 NtOpenSection = _NtOpenSection@12 123 ZwOpenSection = _NtOpenSection@12 124 NtQuerySection = _NtQuerySection@20 125 ZwQuerySection = _NtQuerySection@20 126 NtMapViewOfSection = _NtMapViewOfSection@40 127 ZwMapViewOfSection = _NtMapViewOfSection@40 128 NtCreatePort = _NtCreatePort@20 129 ZwCreatePort = _NtCreatePort@20 130 NtConnectPort = _NtConnectPort@32 131 ZwConnectPort = _NtConnectPort@32 132 NtListenPort = _NtListenPort@8 133 ZwListenPort = _NtListenPort@8 134 NtAcceptConnectPort = _NtAcceptConnectPort@24 135 ZwAcceptConnectPort = _NtAcceptConnectPort@24 136 NtCompleteConnectPort = _NtCompleteConnectPort@4 137 ZwCompleteConnectPort = _NtCompleteConnectPort@4 138 NtRegisterThreadTerminatePort = _NtRegisterThreadTerminatePort@4 139 ZwRegisterThreadTerminatePort = _NtRegisterThreadTerminatePort@4 140 NtRequestWaitReplyPort = _NtRequestWaitReplyPort@12 141 ZwRequestWaitReplyPort = _NtRequestWaitReplyPort@12 142 NtReplyWaitReceivePort = _NtReplyWaitReceivePort@16 143 ZwReplyWaitReceivePort = _NtReplyWaitReceivePort@16 144 NtSetIntervalProfile = _NtSetIntervalProfile@8 145 ZwSetIntervalProfile = _NtSetIntervalProfile@8 146 NtQueryPerformanceCounter = _NtQueryPerformanceCounter@8 147 ZwQueryPerformanceCounter = _NtQueryPerformanceCounter@8 148 NtCreateMailslotFile = _NtCreateMailslotFile@32 149 ZwCreateMailslotFile = _NtCreateMailslotFile@32 98 ZwQueryInformationToken = _NtQueryInformationToken@20 @750 99 NtCreateSection = _NtCreateSection@28 @751 100 ZwCreateSection = _NtCreateSection@28 @752 101 NtOpenSection = _NtOpenSection@12 @753 102 ZwOpenSection = _NtOpenSection@12 @754 103 NtQuerySection = _NtQuerySection@20 @755 104 ZwQuerySection = _NtQuerySection@20 @756 105 NtMapViewOfSection = _NtMapViewOfSection@40 @757 106 ZwMapViewOfSection = _NtMapViewOfSection@40 @758 107 NtCreatePort = _NtCreatePort@20 @759 108 ZwCreatePort = _NtCreatePort@20 @760 109 NtConnectPort = _NtConnectPort@32 @761 110 ZwConnectPort = _NtConnectPort@32 @762 111 NtListenPort = _NtListenPort@8 @763 112 ZwListenPort = _NtListenPort@8 @764 113 NtAcceptConnectPort = _NtAcceptConnectPort@24 @765 114 ZwAcceptConnectPort = _NtAcceptConnectPort@24 @766 115 NtCompleteConnectPort = _NtCompleteConnectPort@4 @767 116 ZwCompleteConnectPort = _NtCompleteConnectPort@4 @768 117 NtRegisterThreadTerminatePort = _NtRegisterThreadTerminatePort@4 @769 118 ZwRegisterThreadTerminatePort = _NtRegisterThreadTerminatePort@4 @770 119 NtRequestWaitReplyPort = _NtRequestWaitReplyPort@12 @771 120 ZwRequestWaitReplyPort = _NtRequestWaitReplyPort@12 @772 121 NtReplyWaitReceivePort = _NtReplyWaitReceivePort@16 @773 122 ZwReplyWaitReceivePort = _NtReplyWaitReceivePort@16 @774 123 NtSetIntervalProfile = _NtSetIntervalProfile@8 @775 124 ZwSetIntervalProfile = _NtSetIntervalProfile@8 @776 125 NtQueryPerformanceCounter = _NtQueryPerformanceCounter@8 @777 126 ZwQueryPerformanceCounter = _NtQueryPerformanceCounter@8 @778 127 NtCreateMailslotFile = _NtCreateMailslotFile@32 @779 128 ZwCreateMailslotFile = _NtCreateMailslotFile@32 @780 150 129 NtQuerySystemInformation = _NtQuerySystemInformation@16 @95 151 ZwQuerySystemInformation = _NtQuerySystemInformation@16 152 NtCreatePagingFile = _NtCreatePagingFile@16 153 ZwCreatePagingFile = _NtCreatePagingFile@16 154 NtDisplayString = _NtDisplayString@4 155 ZwDisplayString = _NtDisplayString@4 156 157 NtCreateSemaphore = _NtCreateSemaphore@20 158 ZwCreateSemaphore = _NtCreateSemaphore@20 159 NtOpenSemaphore = _NtOpenSemaphore@12 160 ZwOpenSemaphore = _NtOpenSemaphore@12 161 NtQuerySemaphore = _NtQuerySemaphore@20 162 ZwQuerySemaphore = _NtQuerySemaphore@20 163 NtReleaseSemaphore = _NtReleaseSemaphore@12 164 ZwReleaseSemaphore = _NtReleaseSemaphore@12 165 NtCreateEvent = _NtCreateEvent@20 166 ZwCreateEvent = _NtCreateEvent@20 167 NtOpenEvent = _NtOpenEvent@12 168 ZwOpenEvent = _NtOpenEvent@12 169 NtSetEvent = _NtSetEvent@8 170 ZwSetEvent = _NtSetEvent@8 130 ZwQuerySystemInformation = _NtQuerySystemInformation@16 @781 131 NtCreatePagingFile = _NtCreatePagingFile@16 @782 132 ZwCreatePagingFile = _NtCreatePagingFile@16 @783 133 NtDisplayString = _NtDisplayString@4 @784 134 ZwDisplayString = _NtDisplayString@4 @785 135 136 NtCreateSemaphore = _NtCreateSemaphore@20 @786 137 ZwCreateSemaphore = _NtCreateSemaphore@20 @787 138 NtOpenSemaphore = _NtOpenSemaphore@12 @788 139 ZwOpenSemaphore = _NtOpenSemaphore@12 @789 140 NtQuerySemaphore = _NtQuerySemaphore@20 @790 141 ZwQuerySemaphore = _NtQuerySemaphore@20 @791 142 NtReleaseSemaphore = _NtReleaseSemaphore@12 @792 143 ZwReleaseSemaphore = _NtReleaseSemaphore@12 @793 144 NtCreateEvent = _NtCreateEvent@20 @794 145 ZwCreateEvent = _NtCreateEvent@20 @795 146 NtOpenEvent = _NtOpenEvent@12 @796 147 ZwOpenEvent = _NtOpenEvent@12 @797 148 NtSetEvent = _NtSetEvent@8 @798 149 ZwSetEvent = _NtSetEvent@8 @799 171 150 NtResetEvent = _NtResetEvent@4 @192 172 ZwResetEvent = _NtResetEvent@4 151 ZwResetEvent = _NtResetEvent@4 @800 173 152 174 153 NtQueryObject = _NtQueryObject@20 @161 175 ZwQueryObject = _NtQueryObject@20 176 NtQuerySecurityObject = _NtQuerySecurityObject@20 177 ZwQuerySecurityObject = _NtQuerySecurityObject@20 178 NtDuplicateObject = _NtDuplicateObject@28 179 ZwDuplicateObject = _NtDuplicateObject@28 180 NtWaitForSingleObject = _NtWaitForSingleObject@12 181 ZwWaitForSingleObject = _NtWaitForSingleObject@12 154 ZwQueryObject = _NtQueryObject@20 @801 155 NtQuerySecurityObject = _NtQuerySecurityObject@20 @802 156 ZwQuerySecurityObject = _NtQuerySecurityObject@20 @803 157 NtDuplicateObject = _NtDuplicateObject@28 @804 158 ZwDuplicateObject = _NtDuplicateObject@28 @805 159 NtWaitForSingleObject = _NtWaitForSingleObject@12 @806 160 ZwWaitForSingleObject = _NtWaitForSingleObject@12 @807 182 161 NtOpenDirectoryObject = _NtOpenDirectoryObject@12 @124 183 ZwOpenDirectoryObject = _NtOpenDirectoryObject@12 184 NtCreateDirectoryObject = _NtCreateDirectoryObject@12 185 ZwCreateDirectoryObject = _NtCreateDirectoryObject@12 162 ZwOpenDirectoryObject = _NtOpenDirectoryObject@12 @808 163 NtCreateDirectoryObject = _NtCreateDirectoryObject@12 @809 164 ZwCreateDirectoryObject = _NtCreateDirectoryObject@12 @810 186 165 NtQueryDirectoryObject = _NtQueryDirectoryObject@28 @149 187 ZwQueryDirectoryObject = _NtQueryDirectoryObject@28 188 NtOpenSymbolicLinkObject = _NtQuerySymbolicLinkObject@12 189 ZwOpenSymbolicLinkObject = _NtQuerySymbolicLinkObject@12 190 NtCreateSymbolicLinkObject = _NtCreateSymbolicLinkObject@16 191 ZwCreateSymbolicLinkObject = _NtCreateSymbolicLinkObject@16 192 NtQuerySymbolicLinkObject = _NtQuerySymbolicLinkObject@12 193 ZwQuerySymbolicLinkObject = _NtQuerySymbolicLinkObject@12 166 ZwQueryDirectoryObject = _NtQueryDirectoryObject@28 @811 167 NtOpenSymbolicLinkObject = _NtQuerySymbolicLinkObject@12 @812 168 ZwOpenSymbolicLinkObject = _NtQuerySymbolicLinkObject@12 @813 169 NtCreateSymbolicLinkObject = _NtCreateSymbolicLinkObject@16 @814 170 ZwCreateSymbolicLinkObject = _NtCreateSymbolicLinkObject@16 @815 171 NtQuerySymbolicLinkObject = _NtQuerySymbolicLinkObject@12 @816 172 ZwQuerySymbolicLinkObject = _NtQuerySymbolicLinkObject@12 @817 194 173 195 174 NtCreateKey = _NtCreateKey@28 … … 241 220 RtlCopySid = _RtlCopySid@12 @302 242 221 RtlCreateSecurityDescriptor = _RtlCreateSecurityDescriptor@8 @313 243 RtlValidSecurityDescriptor = _RtlValidSecurityDescriptor@4 244 RtlLengthSecurityDescriptor = _RtlLengthSecurityDescriptor@4 245 RtlGetDaclSecurityDescriptor = _RtlGetDaclSecurityDescriptor@16 222 RtlValidSecurityDescriptor = _RtlValidSecurityDescriptor@4 @600 223 RtlLengthSecurityDescriptor = _RtlLengthSecurityDescriptor@4 @601 224 RtlGetDaclSecurityDescriptor = _RtlGetDaclSecurityDescriptor@16 @602 246 225 RtlSetDaclSecurityDescriptor = _RtlSetDaclSecurityDescriptor@16 @483 247 RtlGetSaclSecurityDescriptor = _RtlGetSaclSecurityDescriptor@16 248 RtlSetSaclSecurityDescriptor = _RtlSetSaclSecurityDescriptor@16 226 RtlGetSaclSecurityDescriptor = _RtlGetSaclSecurityDescriptor@16 @603 227 RtlSetSaclSecurityDescriptor = _RtlSetSaclSecurityDescriptor@16 @604 249 228 RtlGetOwnerSecurityDescriptor = _RtlGetOwnerSecurityDescriptor@12 @488 250 229 RtlSetOwnerSecurityDescriptor = _RtlSetOwnerSecurityDescriptor@12 @487 251 230 RtlSetGroupSecurityDescriptor = _RtlSetGroupSecurityDescriptor@12 @485 252 RtlGetGroupSecurityDescriptor = _RtlGetGroupSecurityDescriptor@12 231 RtlGetGroupSecurityDescriptor = _RtlGetGroupSecurityDescriptor@12 @605 253 232 RtlCreateAcl = _RtlCreateAcl@12 @306 254 233 RtlFirstFreeAce = _RtlFirstFreeAce@8 @370 255 234 RtlAddAce = _RtlAddAce@20 @260 256 RtlAddAccessAllowedAce = _RtlAddAccessAllowedAce@16 257 RtlGetAce = _RtlGetAce@12 258 RtlAdjustPrivilege = _RtlAdjustPrivilege@16 235 RtlAddAccessAllowedAce = _RtlAddAccessAllowedAce@16 @606 236 RtlGetAce = _RtlGetAce@12 @607 237 RtlAdjustPrivilege = _RtlAdjustPrivilege@16 @608 259 238 260 239 RtlAnsiStringToUnicodeString = _RtlAnsiStringToUnicodeString@12 @269 … … 373 352 ; Note: CDECL does not decorate the function names with parameter bytes! 374 353 375 _CIpow = _NTDLL__CIpow @ 749354 _CIpow = _NTDLL__CIpow @349 376 355 _ftol = _NTDLL__ftol @864 377 356 _ltoa = _NTDLL__ltoa @866 … … 414 393 memcmp = _NTDLL_memcmp @904 415 394 memcpy = _NTDLL_memcpy @905 416 memmove = fwd_memmove @906395 memmove = _OS2memmove @906 417 396 memset = _NTDLL_memset @907 418 397 pow = _NTDLL_pow @908
Note:
See TracChangeset
for help on using the changeset viewer.