home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / System / FreeWheel / PrefsWin.h < prev    next >
C/C++ Source or Header  |  1999-12-26  |  445b  |  19 lines

  1.  
  2. struct PrefsWinContext
  3. {
  4.   void (*Dispose)(struct PrefsWinContext *pwc);
  5.   BOOL (*Handle)(struct PrefsWinContext *pwc,unsigned long sigs);
  6.   unsigned long Signals;
  7.   BOOL (*Show)(struct PrefsWinContext *pwc);
  8.   void (*Hide)(struct PrefsWinContext *pwc);
  9.   struct PrefsGroup *Prefs;
  10.   struct GUIContext *GUI;
  11.   struct Window *Window;
  12.   struct Screen *Screen;
  13.   BOOL Visible;
  14. };
  15.  
  16. struct PrefsWinContext *PrefsWin_Create(struct PrefsGroup *pg);
  17.  
  18.  
  19.