mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:33:00 +00:00
- NDK fix: don't undef a million status codes, instead, have apps define WIN32_NO_STATUS.
- winnt.h: respect WIN32_NO_STATUS for DBG codes. - rtl: change STDCALL to NTAPI - everything else: add precompiled headers where missing, define WIN32_NO_STATUS. svn path=/trunk/; revision=18598
This commit is contained in:
parent
593300080a
commit
8c002db0c2
139 changed files with 688 additions and 685 deletions
|
@ -18,7 +18,7 @@
|
|||
* @unimplemented
|
||||
*/
|
||||
BOOLEAN
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlDeleteElementGenericTable (
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
PVOID Buffer
|
||||
|
@ -32,7 +32,7 @@ RtlDeleteElementGenericTable (
|
|||
* @unimplemented
|
||||
*/
|
||||
BOOLEAN
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlDeleteElementGenericTableAvl (
|
||||
PRTL_AVL_TABLE Table,
|
||||
PVOID Buffer
|
||||
|
@ -46,7 +46,7 @@ RtlDeleteElementGenericTableAvl (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlEnumerateGenericTable (
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
BOOLEAN Restart
|
||||
|
@ -60,7 +60,7 @@ RtlEnumerateGenericTable (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlEnumerateGenericTableAvl (
|
||||
PRTL_AVL_TABLE Table,
|
||||
BOOLEAN Restart
|
||||
|
@ -74,7 +74,7 @@ RtlEnumerateGenericTableAvl (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlEnumerateGenericTableLikeADirectory (
|
||||
IN PRTL_AVL_TABLE Table,
|
||||
IN PRTL_AVL_MATCH_FUNCTION MatchFunction,
|
||||
|
@ -93,7 +93,7 @@ RtlEnumerateGenericTableLikeADirectory (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlEnumerateGenericTableWithoutSplaying (
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
PVOID *RestartKey
|
||||
|
@ -107,7 +107,7 @@ RtlEnumerateGenericTableWithoutSplaying (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlEnumerateGenericTableWithoutSplayingAvl (
|
||||
PRTL_AVL_TABLE Table,
|
||||
PVOID *RestartKey
|
||||
|
@ -121,7 +121,7 @@ RtlEnumerateGenericTableWithoutSplayingAvl (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlGetElementGenericTable(
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
ULONG I
|
||||
|
@ -135,7 +135,7 @@ RtlGetElementGenericTable(
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlGetElementGenericTableAvl (
|
||||
PRTL_AVL_TABLE Table,
|
||||
ULONG I
|
||||
|
@ -149,7 +149,7 @@ RtlGetElementGenericTableAvl (
|
|||
* @unimplemented
|
||||
*/
|
||||
VOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlInitializeGenericTable (
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
PRTL_GENERIC_COMPARE_ROUTINE CompareRoutine,
|
||||
|
@ -165,7 +165,7 @@ RtlInitializeGenericTable (
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
VOID STDCALL
|
||||
VOID NTAPI
|
||||
RtlInitializeGenericTableAvl(IN OUT PRTL_AVL_TABLE Table,
|
||||
IN PRTL_AVL_COMPARE_ROUTINE CompareRoutine,
|
||||
IN PRTL_AVL_ALLOCATE_ROUTINE AllocateRoutine,
|
||||
|
@ -187,7 +187,7 @@ RtlInitializeGenericTableAvl(IN OUT PRTL_AVL_TABLE Table,
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlInsertElementGenericTable (
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
PVOID Buffer,
|
||||
|
@ -203,7 +203,7 @@ RtlInsertElementGenericTable (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlInsertElementGenericTableAvl (
|
||||
PRTL_AVL_TABLE Table,
|
||||
PVOID Buffer,
|
||||
|
@ -219,7 +219,7 @@ RtlInsertElementGenericTableAvl (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlInsertElementGenericTableFull (
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
PVOID Buffer,
|
||||
|
@ -237,7 +237,7 @@ RtlInsertElementGenericTableFull (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlInsertElementGenericTableFullAvl (
|
||||
PRTL_AVL_TABLE Table,
|
||||
PVOID Buffer,
|
||||
|
@ -256,7 +256,7 @@ RtlInsertElementGenericTableFullAvl (
|
|||
* @unimplemented
|
||||
*/
|
||||
BOOLEAN
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlIsGenericTableEmpty (
|
||||
PRTL_GENERIC_TABLE Table
|
||||
)
|
||||
|
@ -269,7 +269,7 @@ RtlIsGenericTableEmpty (
|
|||
* @unimplemented
|
||||
*/
|
||||
BOOLEAN
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlIsGenericTableEmptyAvl (
|
||||
PRTL_AVL_TABLE Table
|
||||
)
|
||||
|
@ -283,7 +283,7 @@ RtlIsGenericTableEmptyAvl (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlLookupElementGenericTable (
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
PVOID Buffer
|
||||
|
@ -297,7 +297,7 @@ RtlLookupElementGenericTable (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlLookupElementGenericTableAvl (
|
||||
PRTL_AVL_TABLE Table,
|
||||
PVOID Buffer
|
||||
|
@ -311,7 +311,7 @@ RtlLookupElementGenericTableAvl (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlLookupElementGenericTableFull (
|
||||
PRTL_GENERIC_TABLE Table,
|
||||
PVOID Buffer,
|
||||
|
@ -327,7 +327,7 @@ RtlLookupElementGenericTableFull (
|
|||
* @unimplemented
|
||||
*/
|
||||
PVOID
|
||||
STDCALL
|
||||
NTAPI
|
||||
RtlLookupElementGenericTableFullAvl (
|
||||
PRTL_AVL_TABLE Table,
|
||||
PVOID Buffer,
|
||||
|
@ -343,7 +343,7 @@ RtlLookupElementGenericTableFullAvl (
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
ULONG STDCALL
|
||||
ULONG NTAPI
|
||||
RtlNumberGenericTableElements(IN PRTL_GENERIC_TABLE Table)
|
||||
{
|
||||
return Table->NumberGenericTableElements;
|
||||
|
@ -353,7 +353,7 @@ RtlNumberGenericTableElements(IN PRTL_GENERIC_TABLE Table)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
ULONG STDCALL
|
||||
ULONG NTAPI
|
||||
RtlNumberGenericTableElementsAvl(IN PRTL_AVL_TABLE Table)
|
||||
{
|
||||
return Table->NumberGenericTableElements;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue