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.
55 lines
1.2 KiB
55 lines
1.2 KiB
// *********************************************************************************
|
|
//
|
|
// Copyright(c) Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
//
|
|
// pch.h
|
|
//
|
|
// Abstract:
|
|
//
|
|
// This header file is a precompiled header for this project.
|
|
// This module contains the common include files [ system,user defined ]
|
|
// which are not changed frequently.
|
|
//
|
|
// Author:
|
|
//
|
|
// Venu Gopal Choudary 10-July-2001 : Created it
|
|
//
|
|
// Revision History:
|
|
// Wipro Technologies 10-July-10: Modified
|
|
//
|
|
// *********************************************************************************
|
|
|
|
#ifndef __PCH_H
|
|
#define __PCH_H
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000 // include header file only once
|
|
|
|
#if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
|
|
#define SECURITY_WIN32
|
|
#endif
|
|
|
|
#define CMDLINE_VERSION 200
|
|
//
|
|
// public Windows header files
|
|
//
|
|
#include <windows.h>
|
|
#include <security.h>
|
|
|
|
// public C header files
|
|
//
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
#include <shlwapi.h>
|
|
#include <strsafe.h>
|
|
|
|
//
|
|
// private Common header files
|
|
//
|
|
#include "cmdline.h"
|
|
#include "cmdlineres.h"
|
|
|
|
#endif // __PCH_H
|