home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 January / macformat46.iso / Shareware Plus / Developers / Library / Grant's CGI Framework / Grant's CGI Framework / grantscgi / compile headers / grants-application.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-20  |  748 b   |  31 lines

  1. /*****
  2.  *
  3.  *    grants-application.h
  4.  *
  5.  *    This is a support file for "Grant's CGI Framework".
  6.  *    Please see the license agreement that accompanies the distribution package
  7.  *    for licensing details.
  8.  *
  9.  *    Copyright ©1996 by Grant Neufeld
  10.  *    grant@acm.com
  11.  *    http://arpp.carleton.ca/cgi/framework/
  12.  *
  13.  *****/
  14.  
  15. /* the precompiled headers file to include for CodeWarrior is determined
  16.     by whether we're compiling for PowerPC */
  17. #if defined(__MWERKS__) && defined(powerc)
  18.     #include "MacHeadersPPC"
  19. #elif defined(__MWERKS__)
  20.     #include "MacHeaders68K"
  21. #endif
  22.  
  23. /* application projects must have this value defined to zero */
  24. #define kCompilingForWSAPI    0
  25.  
  26. /* compiler specific settings needed by the framework */
  27. #include "compiler_stuff.h"
  28.  
  29.  
  30. /***  EOF  ***/
  31.