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.
40 lines
557 B
40 lines
557 B
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
precomp.h
|
|
|
|
Abstract:
|
|
|
|
This includes the header files needed by everyone in this directory.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
#define UNICODE 1
|
|
#define _UNICODE 1
|
|
|
|
//
|
|
// Private nt headers.
|
|
//
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
#include <ntddnfs.h>
|
|
|
|
//
|
|
// Public windows headers.
|
|
//
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <windows.h>
|
|
#include <rpc.h>
|
|
#include <ntumrefl.h>
|
|
#include "global.h"
|
|
|
|
// eof. precomp.h
|