Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) Microsoft Corporation
Module Name: PCH.H
Abstract: Include file for standard system include files, or project specific include files that are used frequently, but are changed infrequently. Author: Vasundhara .G
Revision History: Vasundhara .G 9-oct-2k : Created It. --*/
#ifndef __PCH_H
#define __PCH_H
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define CMDLINE_VERSION 200
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <objbase.h>
#include <initguid.h>
#include <comdef.h>
#include <wbemidl.h>
#include <tchar.h>
#include <wchar.h>
#include <crtdbg.h>
#include <chstring.h>
#include <shlwapi.h>
#include <mstask.h>
#include <strsafe.h>
#include "cmdline.h"
#endif // __PCH_H
|