home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Tcl-Tk 8.0 / Pre-installed version / MoreFiles 1.4.3 / C Headers / PascalElim.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-24  |  684 b   |  26 lines  |  [TEXT/MPS ]

  1. /*
  2. **    The PascalElim changes to MoreFiles source and header files, along with
  3. **    this file, let you disable Pascal calling conventions in all MoreFiles
  4. **    routines except for system callbacks that require Pascal calling
  5. **    conventions. This will make C programs both smaller and faster.
  6. **
  7. **    Just un-comment "#define __WANTPASCALELIMINATION" in this file to
  8. **    disable Pascal calling conventions
  9. **
  10. **    Changes supplied by Fabrizio Oddone
  11. **
  12. **    File:    PascalElim.h
  13. */
  14.  
  15.  
  16. /*    Un-comment "#define __WANTPASCALELIMINATION" (the following line)
  17. **    to disable Pascal calling conventions.
  18. */
  19. #if 0
  20. #define __WANTPASCALELIMINATION
  21. #endif
  22.  
  23. #ifdef  __WANTPASCALELIMINATION
  24. #define pascal    
  25. #endif
  26.