46 lines
454 B
C
46 lines
454 B
C
|
/*++
|
||
|
|
||
|
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_
|
||
|
|