home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Graphics / PPT / pluginsrc / contrast / contrast.h < prev    next >
C/C++ Source or Header  |  1999-01-13  |  440b  |  25 lines

  1. /*
  2.     balance.h - definitions for balance filter
  3. */
  4.  
  5. #ifdef MY_OWN_WINDOW
  6. #include <ppt_real.h> /* BUG */
  7.  
  8. #include <exec/types.h>
  9. #include <intuition/intuition.h>
  10.  
  11.  
  12. struct bwin {
  13.     struct Window *win;
  14.     ULONG sigmask;
  15.     Object *Win, *Ok, *Cancel;
  16. };
  17.  
  18. extern int GetWindow( struct bwin *, EXTBASE * );
  19. extern int HandleIDCMP( ULONG rc, struct bwin *, EXTBASE * );
  20.  
  21. #define GID_OK              1
  22. #define GID_CANCEL          2
  23. #endif
  24.  
  25.