home *** CD-ROM | disk | FTP | other *** search
/ Home Edutainment Collection 4: Games & Extensions / Aztech-HomeEdutainmentCollection-Vol4-3DGamesExtensions.iso / bsp12x / bsp.h < prev    next >
C/C++ Source or Header  |  1994-04-14  |  795b  |  30 lines

  1. /*- BSP.H ------------------------------------------------------------------*/
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <stdarg.h>
  7. #include <ctype.h>
  8. #include <graphics.h>
  9. #include <dos.h>
  10. #include <math.h>
  11.  
  12. /*- boolean constants ------------------------------------------------------*/
  13.  
  14. #define TRUE            1
  15. #define FALSE            0
  16.  
  17. /*- The function prototypes ------------------------------------------------*/
  18.  
  19. int main( int, char *[]);                                                /* from bsp.c */
  20.  
  21. void ProgError( char *, ...);                                            /* from funcs.c */
  22. void *GetMemory( size_t);
  23. void *ResizeMemory( void *, size_t);
  24.  
  25. unsigned int ComputeAngle( int, int);
  26.  
  27. #define max(a,b) (((a)>(b))?(a):(b))
  28.  
  29. /*------------------------------- end of file ------------------------------*/
  30.