home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 594b.lha / Precognition_rel1 / Intuition_typedefs.h < prev    next >
C/C++ Source or Header  |  1991-12-12  |  1KB  |  40 lines

  1. #ifndef INTUITION_TYPEDEFS_H
  2. #define INTUITION_TYPEDEFS_H
  3.  
  4. /*
  5. ** This file 'typedef's all the major Intuition structures, cuz' I
  6. ** get tired of typing 'struct' all over the place.
  7. **
  8. **       Lee Willis
  9. */
  10.  
  11. #include <exec/types.h>
  12. #include <intuition/intuition.h>
  13. #include <graphics/gfx.h>
  14. #include <graphics/text.h>
  15.  
  16. typedef struct Menu           Menu;
  17. typedef struct MenuItem       MenuItem;
  18. typedef struct Requester      Requester;
  19. typedef struct Gadget         Gadget;
  20. typedef struct PropInfo       PropInfo;
  21. typedef struct StringInfo     StringInfo;
  22. typedef struct IntuiText      IntuiText;
  23. typedef struct Border         Border;
  24. typedef struct Image          Image;
  25. typedef struct IntuiMessage   IntuiMessage;
  26. typedef struct Window         Window;
  27. typedef struct NewWindow      NewWindow;
  28. typedef struct RastPort       RastPort;
  29. typedef struct tPoint         tPoint;
  30. typedef struct Rectangle      Rectangle;
  31. typedef struct TextAttr       TextAttr;
  32. typedef struct TextFont       TextFont;
  33. typedef struct Screen         Screen;
  34. typedef struct MsgPort        MsgPort;
  35.  
  36. typedef SHORT  PIXELS;
  37. typedef USHORT UPIXELS;
  38.  
  39. #endif
  40.