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.
61 lines
719 B
61 lines
719 B
/*++
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
precomp.hxx
|
|
|
|
Abstract:
|
|
|
|
Master include file.
|
|
|
|
Author:
|
|
|
|
Keith Moore (keithmo) 05-Feb-1997
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _PRECOMP_HXX_
|
|
#define _PRECOMP_HXX_
|
|
|
|
|
|
//
|
|
// System include files.
|
|
//
|
|
|
|
#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>
|
|
|
|
|
|
//
|
|
// Project include files.
|
|
//
|
|
|
|
#include <iadmw.h>
|
|
#include <iiscnfg.h>
|
|
|
|
#include <mdlib.hxx>
|
|
|
|
|
|
//
|
|
// Private definitions.
|
|
//
|
|
|
|
#define MdpAllocMem(cb) (VOID *)LocalAlloc( LPTR, (cb) )
|
|
#define MdpFreeMem(p) (VOID)LocalFree( (HLOCAL)(p) )
|
|
|
|
|
|
#endif // _PRECOMP_HXX_
|
|
|