home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / wps / utils / memsz221 / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-29  |  808 b   |  35 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.  
  15.   BOOL   HideControls ;
  16.   BOOL   Float ;
  17.   BOOL   Animate ;
  18.   ULONG  TimerInterval ;
  19.  
  20.   USHORT ItemCount ;
  21.   PSZ   *ItemNames ;
  22.   PBOOL  ItemFlags ;
  23. }
  24. CONFIG_PARMS, *PCONFIG_PARMS ;
  25.  
  26. extern MRESULT EXPENTRY ConfigureProcessor
  27. (
  28.   HWND hwnd,
  29.   USHORT msg,
  30.   MPARAM mp1,
  31.   MPARAM mp2
  32. ) ;
  33.  
  34. #endif
  35.