home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 581b.lha / skeleton / classglue.h next >
Text File  |  1991-10-26  |  713b  |  20 lines

  1. /*
  2. ** Include file for link glue classface.o
  3. **
  4. **
  5. ** Note these routines were written by Jim Mackraz, and not public
  6. ** domain, thanks to Jim, for his work. these routines are freely
  7. ** re-distributable, for a copy of the source, see the Amiga World
  8. ** Tech Journal Issue #3, disk.
  9. **
  10. */
  11.  
  12.  
  13. __stdargs DoMethod(Object *o, ULONG mehtod_id, ULONG tag1,...);
  14. __stdargs DoSuperMethod(Class *cl, Object *o, ULONG mehtod_id, ULONG tag1,...);
  15. __stdargs CoerceMethod(Class *cl, Object *o, ULONG mehtod_id, ULONG tag1,...);
  16. __stdargs SetSuperAttrs( Class *cl, Object *o, ULONG tag, ... );
  17. __stdargs DM( Object *o, Msg  msg );
  18. __stdargs DSM( Class *cl, Object *o, Msg  msg );
  19. __stdargs CM( Class *cl, Object *o, Msg  msg );
  20.