mirror of https://github.com/tongzx/nt5src
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.
83 lines
1.6 KiB
83 lines
1.6 KiB
/**********************************************************************/
|
|
/** Microsoft Windows NT **/
|
|
/** Copyright(c) Microsoft Corp., 1994 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
tcpdllp.h
|
|
|
|
Private tcpdll include for precompiled headers
|
|
|
|
|
|
FILE HISTORY:
|
|
Johnl 04-Oct-1995 Created.
|
|
MuraliK 21-Feb-1995 Added dbgutil.h
|
|
Private copy of all the includes defined here to avoid
|
|
problems of compilation from old tcpdebug.h macros!
|
|
|
|
*/
|
|
|
|
|
|
#ifndef _TCPDLLP_H_
|
|
#define _TCPDLLP_H_
|
|
|
|
|
|
#define dllexp __declspec( dllexport )
|
|
|
|
//
|
|
// System include files.
|
|
//
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
|
|
#include <windows.h>
|
|
#include <winsock2.h>
|
|
#include <lm.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <tchar.h>
|
|
|
|
#include "dbgutil.h"
|
|
|
|
//
|
|
// Project include files.
|
|
//
|
|
|
|
#include <iis64.h>
|
|
#include <inetcom.h>
|
|
#include <inetamsg.h>
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif // __cplusplus
|
|
|
|
#include <tcpproc.h>
|
|
|
|
#include <svcloc.h>
|
|
#define SECURITY_WIN32
|
|
#include <sspi.h> // Security Support Provider APIs
|
|
#include <schnlsp.h>
|
|
#include <lonsi.hxx>
|
|
#include "globals.hxx"
|
|
|
|
#include <iiscnfgp.h>
|
|
|
|
#include <wintrust.h>
|
|
typedef
|
|
LONG (WINAPI *PFN_WinVerifyTrust)(IN OPTIONAL HWND hwnd,
|
|
IN GUID *pgActionID,
|
|
IN LPVOID pWintrustData);
|
|
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif // _TCPDLLP_H_
|