home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Milan_1991 / Devcon91.1 / Libraries / Intuition / other_examples / boopsi / myclassbase.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-01  |  596 b   |  19 lines

  1. /***********************************************************************
  2. *                                                                 
  3. * myclassbase.h -- library base for myclasslib.library
  4. *                                                                
  5. * Copyright (C) 1985, 1989, 1990 Commodore Amiga Inc. 
  6. *    All rights reserved.
  7. *
  8. ***********************************************************************/
  9.  
  10. /*** MUST stay in sync with myclassbase.i    ***/
  11.  
  12. struct MyLibBase {
  13.     struct Library    mlb_Library;
  14.     UBYTE        mlb_Flags;
  15.  
  16.     void        *mlb_SegList;
  17.     struct IClass    *mlb_MyClass;
  18. };
  19.