summaryrefslogtreecommitdiffstats
path: root/private/lsa/msprivs/mstmp.c
blob: d3c223ac56f2c129a5515b8ca194dc9f5025c6ff (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
54
55
56
57
58
/*++

Copyright (c) 1989  Microsoft Corporation

Module Name:

    tmp.c

Abstract:

    Temporary (unnecessary) DLL entry point routine.


    The entry in this file is a bit of a hack.  The code isn't
    needed, but our linker doesn't know how to build a dll with data only.
    When MikeOl gets this fixed, we can remove this obligatory source
    file.


Author:

    Jim Kelly 24-Mar-1992

Revision History:

--*/


#include <nt.h>

BOOLEAN
MsPrivsDummyEntry(
    IN PVOID DllHandle,
    IN ULONG Reason,
    IN PCONTEXT Context)

/*++

Routine Description:

    This routine gets called when this DLL is loaded by the loader.
    It does nothing and wouldn't be needed if the linker worked
    correctly.

Arguments:

    None.


Return Value:

    None.

--*/
{

    return TRUE;
}