home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / memsz231.zip / CONFIG.H < prev    next >
Text File  |  1994-02-14  |  791b  |  30 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.   SHORT  id ;
  12.   HWND   hwndHelp ;
  13.  
  14.   BOOL   HideControls ;
  15.   BOOL   Float ;
  16.   BOOL   Animate ;
  17.   BOOL   ShowFileSystemNames ;
  18.   ULONG  MonitorPriority ;
  19.   ULONG  TimerInterval ;
  20.  
  21.   USHORT ItemCount ;
  22.   PSZ   *ItemNames ;
  23.   PBOOL  ItemFlags ;
  24. }
  25. CONFIG_PARMS, *PCONFIG_PARMS ;
  26.  
  27. extern FNWP ConfigureProcessor ;
  28.  
  29. #endif
  30.