summaryrefslogtreecommitdiffstats
path: root/private/ntos/tdi/st/st.h
blob: 590ccac89c6aa295acd0bf9f395b1ccafb7289f0 (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
/*++

Copyright (c) 1989-1993  Microsoft Corporation

Module Name:

    st.h

Abstract:

    Private include file for the NT Sample transport provider.

Revision History:

--*/

#ifndef _ST_
#define _ST_

#include <ntddk.h>

#include <windef.h>                     // these two are needed by info.c
#include <nb30.h>

#include <tdikrnl.h>                    // Transport Driver Interface.
#include <ndis.h>                       // Network Driver Interface.

#if DEVL
#define STATIC
#else
#define STATIC static
#endif

#include "stconst.h"                   // private constants.
#include "stmac.h"                     // mac-specific definitions
#include "sthdrs.h"                    // private protocol headers.
#include "sttypes.h"                   // private types.
#include "stcnfg.h"                    // configuration information.
#include "stprocs.h"                   // private function prototypes.


#define ACQUIRE_SPIN_LOCK(lock,irql) KeAcquireSpinLock(lock,irql)
#define RELEASE_SPIN_LOCK(lock,irql) KeReleaseSpinLock(lock,irql)


#endif // def _ST_