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.
45 lines
454 B
45 lines
454 B
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
iis.h
|
|
|
|
Abstract:
|
|
|
|
Includes common user-mode header files.
|
|
|
|
Author:
|
|
|
|
Murali Krishnan (MuraliK) 09-Nov-1998
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _IIS_H_
|
|
#define _IIS_H_
|
|
|
|
|
|
|
|
//
|
|
// Include all required system files
|
|
//
|
|
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
#include <windows.h>
|
|
|
|
|
|
//
|
|
// Include standard IIS definitions
|
|
//
|
|
|
|
#include <iisdef.h>
|
|
|
|
|
|
|
|
#endif // _IIS_H_
|
|
|