- Uncomment NTDLL exports which we implement, and add stubs for numerous routines

- Add missing prototypes to NDK
- Implement RtlInterlockedCompareExchange64 and RtlGetCurrentProcessorNumber
- Rename RtlpCurrentPeb to RtlGetCurrentPeb and export it from NTDLL

svn path=/trunk/; revision=36166
This commit is contained in:
Stefan Ginsberg 2008-09-12 15:09:17 +00:00
parent 86cb400689
commit 420195308d
18 changed files with 544 additions and 62 deletions

View file

@ -169,4 +169,13 @@ RtlUnhandledExceptionFilter(IN struct _EXCEPTION_POINTERS* ExceptionInfo)
return ERROR_CALL_NOT_IMPLEMENTED;
}
/* EOF */
/*
* @unimplemented
*/
PVOID
NTAPI
RtlSetUnhandledExceptionFilter(IN PVOID TopLevelExceptionFilter)
{
UNIMPLEMENTED;
return NULL;
}