home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / Triton / Source / parts / libraries_triton_2.h < prev   
C/C++ Source or Header  |  1998-05-23  |  1KB  |  27 lines

  1.  
  2. /***********************************************************************************************************/
  3. /******************************************************************* Public parts of the Project structure */
  4. /***********************************************************************************************************/
  5.  
  6. #ifndef TR_THIS_IS_TRITON
  7.  
  8. typedef struct TR_Project
  9. {
  10.   struct TROD_Object            tro_SC_Object;                  /* PRIVATE! */
  11.   struct TR_App *               trp_App;                        /* Our application */
  12.   VOID *                        trp_MemPool;                    /* The memory pool */
  13.   ULONG                         trp_ID;                         /* The project's ID */
  14.   ULONG                         trp_IDCMPFlags;                 /* The IDCMP flags */
  15.   struct Window *               trp_Window;                     /* The default window */
  16.   UWORD                         trp_AspectFixing;               /* Pixel aspect correction factor */
  17. } TR_Project;
  18.  
  19. #endif
  20.  
  21.  
  22. /***********************************************************************************************************/
  23. /************************************************************************************************* The End */
  24. /***********************************************************************************************************/
  25.  
  26. #endif /* LIBRARIES_TRITON_H */
  27.