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.
43 lines
628 B
43 lines
628 B
// Copyright (c) 1997-2001 Microsoft Corporation
|
|
//
|
|
// File: pch.h
|
|
//
|
|
// Synopsis: precompiled header for the
|
|
// Configure Your Server Wizard project
|
|
//
|
|
// History: 02/02/2001 JeffJon Created
|
|
|
|
#ifndef __CYS_PCH_H
|
|
#define __CYS_PCH_H
|
|
|
|
|
|
// Stuff from burnslib
|
|
|
|
#include <burnslib.hpp>
|
|
|
|
|
|
#include <iphlpapi.h>
|
|
#include <shlwapi.h>
|
|
#include <dsrolep.h>
|
|
#include <comdef.h>
|
|
|
|
extern "C"
|
|
{
|
|
#include <dhcpapi.h>
|
|
#include <mdhcsapi.h>
|
|
}
|
|
|
|
// WMI
|
|
#include <wbemidl.h>
|
|
|
|
#include <shlobjp.h>
|
|
|
|
// Setup API - SetupPromptReboot
|
|
|
|
#include <setupapi.h>
|
|
|
|
|
|
#include "regkeys.h"
|
|
#include "common.h"
|
|
|
|
#endif // __CYS_PCH_H
|