Author: arty Date: Tue Nov 17 04:46:31 2009 New Revision: 44212
URL: http://svn.reactos.org/svn/reactos?rev=44212&view=rev Log: Some prototype changes.
Modified: branches/arty-newcc/include/ndk/rtlfuncs.h branches/arty-newcc/ntoskrnl/mm/section/sptab.c
Modified: branches/arty-newcc/include/ndk/rtlfuncs.h URL: http://svn.reactos.org/svn/reactos/branches/arty-newcc/include/ndk/rtlfuncs.... ============================================================================== --- branches/arty-newcc/include/ndk/rtlfuncs.h [iso-8859-1] (original) +++ branches/arty-newcc/include/ndk/rtlfuncs.h [iso-8859-1] Tue Nov 17 04:46:31 2009 @@ -2706,6 +2706,27 @@ NTSYSAPI PVOID NTAPI +RtlEnumerateGenericTable( + IN PRTL_GENERIC_TABLE, + IN BOOLEAN Reset + ); + +NTSYSAPI +PVOID +RtlGetElementGenericTable( + IN PRTL_GENERIC_TABLE, + IN ULONG I + ); + +NTSYSAPI +ULONG +RtlNumberGenericTableElements( + IN PRTL_GENERIC_TABLE Table + ); + +NTSYSAPI +PVOID +NTAPI RtlInsertElementGenericTableFull( IN PRTL_GENERIC_TABLE Table, IN PVOID Buffer,
Modified: branches/arty-newcc/ntoskrnl/mm/section/sptab.c URL: http://svn.reactos.org/svn/reactos/branches/arty-newcc/ntoskrnl/mm/section/s... ============================================================================== --- branches/arty-newcc/ntoskrnl/mm/section/sptab.c [iso-8859-1] (original) +++ branches/arty-newcc/ntoskrnl/mm/section/sptab.c [iso-8859-1] Tue Nov 17 04:46:31 2009 @@ -32,9 +32,6 @@ /* TYPES *********************************************************************/
#define ENTRIES_PER_ELEMENT 244 - -PVOID NTAPI RtlGetElementGenericTable(PRTL_GENERIC_TABLE Table, PVOID Data); -ULONG NTAPI RtlNumberGenericTableElements(PRTL_GENERIC_TABLE Table);
typedef struct _SECTION_PAGE_TABLE {