summaryrefslogtreecommitdiffstats
path: root/private/ntos/seaudit/msauditt/mstmp.c
blob: e7771438e422e10b6500ceb531b8b7ccda48d300 (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
/*++

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
MsAuditTDummyEntry( VOID )

/*++

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;
}