summaryrefslogtreecommitdiffstats
path: root/private/ntos/ps/kulokup2.c
blob: 3e16ca9a1f0a8c1734084d9ef9bd44c798b6c10f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

/*++

Copyright (c) 1990  Microsoft Corporation

Module Name:

    kulookup.c

Abstract:

    xxxx processor version of PspLookupKernelUserEntryPoints

Author:


Revision History:

--*/

#include    "psp.h"


NTSTATUS
PspLookupKernelUserEntryPoints( VOID)

/*++

Routine Description:

    The function locates user mode code that the kernel dispatches
    to, and stores the addresses of that code in global kernel variables.

    Which procedures are of interest is machine dependent.

Arguments:

    None.

Return Value:

    NTSTATUS

--*/

{
    //
    // NOTE WELL - This is a dummy stub to make the system build.
    //		   Replace it with proper code
    //

    return STATUS_SUCCESS;
}