70 lines
991 B
C++
70 lines
991 B
C++
|
/*++
|
||
|
|
||
|
Copyright (c) 2000 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
precomp.hxx
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Master include file for IIS Plus Server Side Include module
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Ming Lu (MingLu)
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef _PRECOMP_H_
|
||
|
#define _PRECOMP_H_
|
||
|
|
||
|
//
|
||
|
// System related headers
|
||
|
//
|
||
|
#include <iis.h>
|
||
|
|
||
|
#include <malloc.h>
|
||
|
#include <assert.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <time.h>
|
||
|
#include "dbgutil.h"
|
||
|
|
||
|
//
|
||
|
// IIS headers
|
||
|
//
|
||
|
#include <iadmw.h>
|
||
|
#include <mb.hxx>
|
||
|
#include <helpfunc.hxx>
|
||
|
|
||
|
//
|
||
|
// General C runtime libraries
|
||
|
#include <string.h>
|
||
|
#include <wchar.h>
|
||
|
#include <lkrhash.h>
|
||
|
#include <lock.hxx>
|
||
|
|
||
|
//
|
||
|
// Headers for this project
|
||
|
//
|
||
|
#include <objbase.h>
|
||
|
#include "dbgutil.h"
|
||
|
#include <string.hxx>
|
||
|
#include <stringa.hxx>
|
||
|
#include <httpdef.h>
|
||
|
#include <wpcounters.h>
|
||
|
#include "w3cache.hxx"
|
||
|
#include "filecache.hxx"
|
||
|
#include "iisext.h"
|
||
|
#include "iisextp.h"
|
||
|
#include "iiscnfg.h"
|
||
|
#include "ssincmsg.h"
|
||
|
#include "ssinc.hxx"
|
||
|
|
||
|
#endif // _PRECOMP_H_
|
||
|
|