00001 00002 /*++ 00003 00004 Copyright (c) 1990 Microsoft Corporation 00005 00006 Module Name: 00007 00008 kulookup.c 00009 00010 Abstract: 00011 00012 xxxx processor version of PspLookupKernelUserEntryPoints 00013 00014 Author: 00015 00016 00017 Revision History: 00018 00019 --*/ 00020 00021 #include "psp.h" 00022 00023 00024 NTSTATUS 00025 PspLookupKernelUserEntryPoints( VOID) 00026 00027 /*++ 00028 00029 Routine Description: 00030 00031 The function locates user mode code that the kernel dispatches 00032 to, and stores the addresses of that code in global kernel variables. 00033 00034 Which procedures are of interest is machine dependent. 00035 00036 Arguments: 00037 00038 None. 00039 00040 Return Value: 00041 00042 NTSTATUS 00043 00044 --*/ 00045 00046 { 00047 // 00048 // NOTE WELL - This is a dummy stub to make the system build. 00049 // Replace it with proper code 00050 // 00051 00052 return STATUS_SUCCESS; 00053 }
1.3.7