home *** CD-ROM | disk | FTP | other *** search
/ The Complete Doom Accessory Pack 2 / TheCompleteDoomAccessoryPackVolumeII.iso / editors / bspwin / bsp.h < prev    next >
C/C++ Source or Header  |  1994-05-23  |  825b  |  32 lines

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