34 lines
364 B
C++
34 lines
364 B
C++
|
/*++
|
||
|
|
||
|
Copyright (c) 1999 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
precomp.hxx
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Master include file for the IIS over UL driver process
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef _PRECOMP_H_
|
||
|
#define _PRECOMP_H_
|
||
|
|
||
|
#include <iis.h>
|
||
|
#include "dbgutil.h"
|
||
|
#include <objbase.h>
|
||
|
|
||
|
//
|
||
|
// System related headers
|
||
|
//
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#endif // _PRECOMP_H_
|
||
|
|