home *** CD-ROM | disk | FTP | other *** search
/ 4-Ever Doomed / 4-everdoomedcypresssoftware1994.iso / utils / d1 / bsp_os2 / bsp.h < prev    next >
Text File  |  1994-06-25  |  808b  |  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.