home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / clock / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-08  |  643 b   |  33 lines

  1. /******************************************************************* CONFIG.H
  2.  *                                        *
  3.  *               Configure Dialog definitions                *
  4.  *                                        *
  5.  ****************************************************************************/
  6.  
  7. #ifndef CONFIG_H
  8. #define CONFIG_H
  9.  
  10. typedef struct
  11. {
  12.   SHORT  id ;
  13.   HWND     hwndHelp ;
  14.   BOOL     Analog ;
  15.   BOOL     Hour24 ;
  16.   BOOL     HideControls ;
  17.   BOOL     Chime ;
  18.   BOOL     Float ;
  19.   USHORT AlertType ;
  20.   USHORT AlertLevels [2] [2] ;
  21. }
  22. CONFIG_PARMS, *PCONFIG_PARMS ;
  23.  
  24. extern MRESULT EXPENTRY ConfigureProcessor
  25. (
  26.   HWND hwnd,
  27.   USHORT msg,
  28.   MPARAM mp1,
  29.   MPARAM mp2
  30. ) ;
  31.  
  32. #endif
  33.