Source code of Windows XP (NT5)
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.
|
|
/**********************************************************************/ /** Microsoft Windows NT **/ /** Copyright(c) Microsoft Corp., 1994 **/ /**********************************************************************/
/*
tcpdll.h
Master include file for the TCP services helper dll
FILE HISTORY: Johnl 06-Oct-1993 Created.
*/
#ifndef _TCPDLL_H_
#define _TCPDLL_H_
# if !defined( dllexp)
#define dllexp __declspec( dllexport )
# endif // dllexp
//
// 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>
#define SECURITY_WIN32
#include <sspi.h> // Security Support Provider APIs
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <tchar.h>
#ifdef __cplusplus
} // extern "C"
#include <buffer.hxx>
#include <string.hxx>
#include <refb.hxx>
#include <mimemap.hxx>
#include <iistypes.hxx>
#include <iisendp.hxx>
#include <rdns.hxx>
#include <tscache.hxx>
#include <parse.hxx>
#include <tsunami.hxx>
#endif // __cplusplus
#include <tcpcons.h>
#ifdef __cplusplus
extern "C" { #endif // __cplusplus
//
// Project include files.
//
#include <tcpproc.h>
#include <atq.h>
#include <inetcom.h>
#include <inetinfo.h>
#include <datetime.hxx>
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif // _TCPDLL_H_
|