home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / filedlg5 / source / static.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-19  |  3.1 KB  |  64 lines

  1. /****************************************************************************
  2.  * STATIC.H --  Header file containing declarations of static data used     *
  3.  *              by the file open/save dialog box procedures.                *
  4.  *                                                                          *
  5.  * Modifications --                                                         *
  6.  *      08-Sep-1989 : Initial version.                                      *
  7.  *      11-Oct-1989 : Changed to DLL version of ErrMessageBox function.     *
  8.  *      19-Nov-1989 : Added szUnnamed.                                      *
  9.  *                                                                          *
  10.  * (c)Copyright 1989 Rick Yoder                                             *
  11.  ****************************************************************************/
  12.  
  13.  
  14. /****************************************************************************
  15.  *  Constant data common to all functions                                   *
  16.  ****************************************************************************/
  17.     extern CHAR     szSlash[];
  18.     extern CHAR     szStarDotStar[];
  19.     extern CHAR     szDLLName[];
  20. /****************************************************************************/
  21.  
  22.  
  23. /****************************************************************************
  24.  *  Constant data used by FitPathToBox function                             *
  25.  ****************************************************************************/
  26.     extern CHAR     szFitReplace[];
  27. /****************************************************************************/
  28.  
  29.  
  30. /****************************************************************************
  31.  *  Constant data used in the file save dialog box functions                *
  32.  ****************************************************************************/
  33.     extern CHAR     szDefSaveTitle[];
  34.     extern CHAR     szDefSaveIns[];
  35.     extern CHAR     szOverwriteMsg[];
  36.     extern CHAR     szUnnamed[];
  37. /****************************************************************************/
  38.  
  39.  
  40. /****************************************************************************
  41.  *  Constant data used in the file open dialog box functions.               *
  42.  ****************************************************************************/
  43.     extern CHAR     szDefOpenTitle[];
  44.     extern CHAR     szDefOpenIns[];
  45.     extern CHAR     szSearchTitle[];
  46.     extern CHAR     szWildCardChars[];
  47.     extern CHAR     szListBoxFull[];
  48.     extern CHAR     szNoFilesFnd[];
  49. /****************************************************************************/
  50.  
  51.  
  52. /****************************************************************************
  53.  *  Application defined error/information message data                      *
  54.  ****************************************************************************/
  55. #ifdef INCL_WINDIALOGS
  56.     #define OVERWRITE_MSG   0
  57.     #define LISTBOX_FULL    1
  58.     #define NO_FILES_FOUND  2
  59.  
  60.     extern ERRORMSG appMsgList[];
  61.     extern USHORT   appMsgCount;
  62. #endif
  63. /****************************************************************************/
  64.