home *** CD-ROM | disk | FTP | other *** search
/ CICA 1992 November / CICA_MS_Windows_CD-ROM_Walnut_Creek_November_1992.iso / win3 / desktop / profft / prcomp.h < prev    next >
C/C++ Source or Header  |  1992-03-27  |  192b  |  14 lines

  1. #ifndef __PRCOMP_H
  2. #define __PRCOMP_H
  3.  
  4. #define real float
  5. #define MINREAL -10000000.0
  6. #define MAXREAL 10000000.0
  7. #define FFTLOG log10
  8.  
  9. struct prcomplex {
  10.     real re, im;
  11. };
  12.  
  13. #endif
  14.