home *** CD-ROM | disk | FTP | other *** search
/ PC Underground / UNDERGROUND.ISO / doom / source / fx_doom.pah < prev    next >
Encoding:
Text File  |  1995-02-05  |  595 b   |  18 lines

  1. {---------------------------------------------------------------------------
  2.   32bit Fixed-Point Include (for Doom)
  3.   Copyright (c) 1994 by JINX!
  4.  ---------------------------------------------------------------------------}
  5.  
  6. type
  7.   Fixed = LongInt;
  8.  
  9.  
  10. function FixMul(A,B :Fixed) :Fixed; near; external;
  11. function FixDiv(A,B :Fixed) :Fixed; near; external;
  12. function FixSQR(A :Fixed) :Fixed; near; external;
  13. function FixSin(W :Integer) :Fixed; near; external;
  14. function FixCos(W :Integer) :Fixed; near; external;
  15. function FixSqrt(L :Fixed) :Fixed; near; external;
  16. {$L FX_DOOM.OBJ}
  17.  
  18.