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

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