home *** CD-ROM | disk | FTP | other *** search
/ Kyūkyoku!! X68000 Emulator / X68000Book.dat / mac / OLS / X68000 / Ko-Window / kow142s.lzh / wsrv / simple.h < prev    next >
C/C++ Source or Header  |  1995-11-25  |  437b  |  22 lines

  1.  
  2. #define    SimpleType    1
  3.  
  4. typedef    struct    {
  5.         int        id, (*event)();
  6.     }
  7.         SimplePart ;
  8.  
  9. typedef    struct    {
  10.         ClipPart    clip ;
  11.         WindowPart    window ;
  12.         SimplePart    simple ;
  13.     }
  14.         SimpleClass ;
  15.  
  16. /*
  17.     proto -e simple.c > temp
  18. */
  19. extern    void    SimpleSet( SimpleClass*, int, int, int, int, WindowClass*, int, int(*)() );
  20. extern    void    SimpleResize( SimpleClass*, int, int, int, int );
  21. extern    int        SimpleEvent( SimpleClass*, EventInfo* );
  22.