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.
41 lines
729 B
41 lines
729 B
/**********************************************************************/
|
|
/** Microsoft Windows **/
|
|
/** Copyright(c) Microsoft Corp., 1995 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
data.h
|
|
|
|
This file contains global variable declarations for the WSHTCP VxD.
|
|
|
|
|
|
FILE HISTORY:
|
|
KeithMo 20-Sep-1993 Created.
|
|
|
|
*/
|
|
|
|
|
|
#ifndef _DATA_H_
|
|
#define _DATA_H_
|
|
|
|
//
|
|
// TDI Dispatch Table.
|
|
//
|
|
|
|
extern TDIDispatchTable ** gTdiDispatch;
|
|
|
|
extern WSHTABLE WshTable;
|
|
|
|
#ifdef DEBUG
|
|
|
|
//
|
|
// Debug-dependent globals.
|
|
//
|
|
|
|
extern DWORD gWshtcpDebugFlags;
|
|
extern DWORD gWshtcpTdiVerbosity;
|
|
|
|
#endif // DEBUG
|
|
|
|
|
|
#endif // _DATA_H_
|