Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
697 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. kulookup.c
  5. Abstract:
  6. xxxx processor version of PspLookupKernelUserEntryPoints
  7. Author:
  8. Revision History:
  9. --*/
  10. #include "psp.h"
  11. NTSTATUS
  12. PspLookupKernelUserEntryPoints( VOID)
  13. /*++
  14. Routine Description:
  15. The function locates user mode code that the kernel dispatches
  16. to, and stores the addresses of that code in global kernel variables.
  17. Which procedures are of interest is machine dependent.
  18. Arguments:
  19. None.
  20. Return Value:
  21. NTSTATUS
  22. --*/
  23. {
  24. //
  25. // NOTE WELL - This is a dummy stub to make the system build.
  26. // Replace it with proper code
  27. //
  28. return STATUS_SUCCESS;
  29. }