mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[RTL][NTDLL] Implement processor related NT6+ functions
Implements RtlGetCurrentProcessorNumberEx, RtlIsProcessorFeaturePresent
This commit is contained in:
@@ -67,7 +67,7 @@ set_module_type(ntdll win32dll ENTRYPOINT 0)
|
||||
set_subsystem(ntdll console)
|
||||
################# END HACK #################
|
||||
|
||||
target_link_libraries(ntdll ntdll_vista_static etwtrace csrlib rtl rtl_um rtl_vista ntdllsys libcntpr setjmp uuid ${PSEH_LIB})
|
||||
target_link_libraries(ntdll ntdll_vista_static etwtrace csrlib rtl rtl_um rtl_vista ntdllsys ntdllsys_nt6 libcntpr setjmp uuid ${PSEH_LIB})
|
||||
if(DLL_EXPORT_VERSION GREATER_EQUAL 0x600)
|
||||
target_link_libraries(ntdll cryptlib ntdllsys_nt6)
|
||||
endif()
|
||||
|
||||
@@ -879,6 +879,7 @@
|
||||
@ stdcall RtlGetCurrentDirectory_U(long ptr)
|
||||
@ stdcall RtlGetCurrentPeb()
|
||||
@ stdcall RtlGetCurrentProcessorNumber() ; 5.2 SP1 and higher
|
||||
@ stdcall -version=0x601+ RtlGetCurrentProcessorNumberEx(ptr)
|
||||
@ stdcall -stub -version=0x600+ RtlGetCurrentTransaction()
|
||||
@ stdcall RtlGetDaclSecurityDescriptor(ptr ptr ptr ptr)
|
||||
@ stdcall RtlGetElementGenericTable(ptr long)
|
||||
@@ -999,6 +1000,7 @@
|
||||
@ stdcall RtlIsGenericTableEmptyAvl(ptr)
|
||||
@ stdcall RtlIsNameLegalDOS8Dot3(ptr ptr ptr)
|
||||
@ stdcall -stub -version=0x600+ RtlIsNormalizedString(long ptr long ptr)
|
||||
@ stdcall -version=0xA00+ RtlIsProcessorFeaturePresent(long)
|
||||
@ stdcall RtlIsTextUnicode(ptr long ptr)
|
||||
@ stdcall RtlIsThreadWithinLoaderCallout()
|
||||
@ stdcall RtlIsValidHandle(ptr ptr)
|
||||
|
||||
@@ -25,8 +25,10 @@
|
||||
@ stdcall RtlLcidToLocaleName(long ptr long long)
|
||||
@ stdcall RtlLocaleNameToLcid(wstr ptr long)
|
||||
@ stdcall RtlCompareUnicodeStrings(wstr long wstr long long)
|
||||
@ stdcall RtlGetCurrentProcessorNumberEx(ptr)
|
||||
@ stdcall -arch=i386 RtlInterlockedPushListSListEx(ptr ptr ptr long)
|
||||
@ stdcall -arch=!i386 RtlInterlockedPushListSListEx(ptr ptr ptr long) ntdll.RtlInterlockedPushListSList
|
||||
@ stdcall RtlIsProcessorFeaturePresent(long)
|
||||
|
||||
@ stdcall RtlUnicodeToUTF8N(ptr long ptr wstr long)
|
||||
@ stdcall RtlUTF8ToUnicodeN(ptr long ptr str long)
|
||||
|
||||
Reference in New Issue
Block a user