home *** CD-ROM | disk | FTP | other *** search
/ The Complete Doom Accessory Pack 2 / TheCompleteDoomAccessoryPackVolumeII.iso / editors / bspwin / prottype.h < prev    next >
C/C++ Source or Header  |  1994-05-24  |  1KB  |  35 lines

  1. /*- Prototypes -------------------------------------------------------------*/
  2.  
  3. void ExitProgram(int);
  4. int  RetriveOpenFileName(char*);
  5. int  RetriveSaveFileName(char*);
  6. void OpenWadFile(char *);
  7. void Printname(struct directory *);
  8. int  FindDir(char *);
  9. void GetThings(void);
  10. void GetVertexes(void);
  11. void GetLinedefs(void);
  12. void GetSidedefs(void);
  13. void GetSectors(void);
  14. void         _fastcall  FindLimits(struct Seg *);
  15.  
  16. struct Seg*             CreateSegs(void);
  17.  
  18. struct Node* _fastcall  CreateNode(struct Seg *);
  19. void                 DivideSegs(struct Seg *,struct Seg **,struct Seg **);
  20. int          _fastcall    IsItConvex(struct Seg *);
  21. int          _fastcall    CreateSSector(struct Seg *);
  22. int                 IsLineDefInside(int,int,int,int,int);
  23. int                 Reference(int);
  24.  
  25. struct Seg*             PickNode(struct Seg *);
  26. void         _fastcall    ComputeIntersection(short int *,short int *);
  27. int                     DoLinesIntersect(void);
  28. int                     SplitDist(struct Seg *);
  29.  
  30. void ReverseNodes(struct Node *);
  31. long CreateBlockmap(void);
  32.  
  33. void progress(void);
  34.  
  35.