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.

46 lines
2.3 KiB

  1. //***************************************************************************
  2. //* Copyright (c) Microsoft Corporation 1995. All rights reserved. *
  3. //***************************************************************************
  4. //* *
  5. //* UPDFILE.H - *
  6. //* *
  7. //***************************************************************************
  8. #ifndef _UPDFILE_H_
  9. #define _UPDFILE_H_
  10. //***************************************************************************
  11. //* INCLUDE FILES *
  12. //***************************************************************************
  13. //***************************************************************************
  14. //* DEFINES *
  15. //***************************************************************************
  16. //***************************************************************************
  17. //* MACRO DEFINITIONS *
  18. //***************************************************************************
  19. #define MsgBox( nMsgID ) \
  20. MsgBox2Param( nMsgID, NULL, NULL )
  21. #define MsgBox1Param( nMsgID, szParam ) \
  22. MsgBox2Param( nMsgID, szParam, NULL )
  23. //***************************************************************************
  24. //* TYPE DEFINITIONS *
  25. //***************************************************************************
  26. //***************************************************************************
  27. //* GLOBAL CONSTANTS *
  28. //***************************************************************************
  29. //***************************************************************************
  30. //* FUNCTION PROTOTYPES *
  31. //***************************************************************************
  32. BOOL FileExists( PCSTR );
  33. VOID MsgBox2Param( UINT, PCSTR, PCSTR );
  34. PSTR LoadSz( UINT, PSTR, UINT );
  35. #endif // _UPDFILE_H_