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 1995. All rights reserved. *
//***************************************************************************
//* *
//* UPDFILE.H - *
//* *
//***************************************************************************
#ifndef _UPDFILE_H_
#define _UPDFILE_H_
//***************************************************************************
//* INCLUDE FILES *
//***************************************************************************
//***************************************************************************
//* DEFINES *
//***************************************************************************
//***************************************************************************
//* MACRO DEFINITIONS *
//***************************************************************************
#define MsgBox( nMsgID ) \
MsgBox2Param( nMsgID, NULL, NULL ) #define MsgBox1Param( nMsgID, szParam ) \
MsgBox2Param( nMsgID, szParam, NULL )
//***************************************************************************
//* TYPE DEFINITIONS *
//***************************************************************************
//***************************************************************************
//* GLOBAL CONSTANTS *
//***************************************************************************
//***************************************************************************
//* FUNCTION PROTOTYPES *
//***************************************************************************
BOOL FileExists( PCSTR ); VOID MsgBox2Param( UINT, PCSTR, PCSTR ); PSTR LoadSz( UINT, PSTR, UINT );
#endif // _UPDFILE_H_
|