home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 19 / AACD19.BIN / AACD / Programming / MCC_GLArea / MCC_GLArea_Dev / GLArea_Demo / Useful / glsm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-01  |  309 b   |  22 lines

  1. #include <stdio.h>
  2. #include <exec/libraries.h>
  3.  
  4. struct glreg
  5. {
  6.     int size;
  7.     void (*func_exit)(int);
  8. };
  9.  
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. #ifdef __GNUC__
  14. void registerGL(struct glreg *ptr __asm("a0"));
  15. #else
  16. void registerGL(struct glreg *ptr);
  17. #endif
  18. // extern void exit(int);
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.