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.
56 lines
677 B
56 lines
677 B
/*++
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
precomp.hxx
|
|
|
|
Abstract:
|
|
|
|
Master include file.
|
|
|
|
Author:
|
|
|
|
Keith Moore (keithmo) 03-Feb-1997
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _PRECOMP_HXX_
|
|
#define _PRECOMP_HXX_
|
|
|
|
|
|
//
|
|
// System include files.
|
|
//
|
|
|
|
extern "C" {
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
#include <windows.h>
|
|
#include <ole2.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
#include <io.h>
|
|
} // extern "C"
|
|
|
|
|
|
//
|
|
// Project include files.
|
|
//
|
|
|
|
#include <iadmw.h>
|
|
#include <iiscnfg.h>
|
|
|
|
#include <mdlib.hxx>
|
|
|
|
|
|
#endif // _PRECOMP_HXX_
|
|
|