home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / FILEDLG6.ZIP / SOURCE.ZIP / STATIC.H < prev    next >
C/C++ Source or Header  |  1990-10-17  |  3KB  |  66 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.  *      11-Oct-1990 : Eliminated szFitReplace                               *
  10.  *                                                                          *
  11.  * (c)Copyright 1990 Rick Yoder                                             *
  12.  ****************************************************************************/
  13.  
  14.  
  15. /****************************************************************************
  16.  *  Constant data common to all functions                                   *
  17.  ****************************************************************************/
  18.     extern CHAR     szSlash[];
  19.     extern CHAR     szStarDotStar[];
  20.     extern CHAR     szDLLName[];
  21. /****************************************************************************/
  22.  
  23.  
  24. /****************************************************************************
  25.  *  Constant data used in the file save dialog box functions                *
  26.  ****************************************************************************/
  27.     extern CHAR     szDefSaveTitle[];
  28.     extern CHAR     szDefSaveIns[];
  29.     extern CHAR     szOverwriteMsg[];
  30.     extern CHAR     szUnnamed[];
  31. /****************************************************************************/
  32.  
  33.  
  34. /****************************************************************************
  35.  *  Constant data used in the file open dialog box functions.               *
  36.  ****************************************************************************/
  37.     extern CHAR     szDefOpenTitle[];
  38.     extern CHAR     szDefOpenIns[];
  39.     extern CHAR     szSearchTitle[];
  40.     extern CHAR     szWildCardChars[];
  41.     extern CHAR     szListBoxFull[];
  42.     extern CHAR     szFilesFnd[];
  43.     extern CHAR     szSearching[];
  44.     extern CHAR     szSearchCancelled[];
  45.     extern CHAR     szSearchThreadError[];
  46.     extern CHAR     szIllegalSearch[];
  47.     extern CHAR     szDelimiters[];
  48. /****************************************************************************/
  49.  
  50.  
  51. /****************************************************************************
  52.  *  Application defined error/information message data                      *
  53.  ****************************************************************************/
  54. #ifdef INCL_WINDIALOGS
  55.     #define OVERWRITE_MSG       0
  56.     #define LISTBOX_FULL        1
  57.     #define FILES_FOUND         2
  58.     #define SEARCH_CANCELLED    3
  59.     #define SEARCH_THREAD_ERROR 4
  60.     #define BAD_SEARCH          5
  61.  
  62.     extern ERRORMSG appMsgList[];
  63.     extern USHORT   appMsgCount;
  64. #endif
  65. /****************************************************************************/
  66.