home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / lib / mac / MoreFiles / PascalElim.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  813 b   |  30 lines

  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.  * This code, which was decended from Apple Sample Code, has been modified by 
  17.  * Netscape.
  18.  */
  19.  
  20. /*    Un-comment "#define __WANTPASCALELIMINATION" (the following line)
  21. **    to disable Pascal calling conventions.
  22. */
  23. #if 0
  24. #define __WANTPASCALELIMINATION
  25. #endif
  26.  
  27. #ifdef  __WANTPASCALELIMINATION
  28. #define pascal    
  29. #endif
  30.