mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
/*++
|
|
|
|
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_
|