home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / cprog / actlib12.zip / C2CPP.H < prev    next >
C/C++ Source or Header  |  1993-02-25  |  600b  |  26 lines

  1. /****
  2.  *  Copyright (C) 1993   Marc Stern  (internet: stern@mble.philips.be)
  3.  *
  4.  *   C2CPP.H :      general function declaration
  5.  *                  for both C & C++ 
  6.  *
  7.  *   Important Remark:  This file must be included before any other one.
  8.  *
  9.  ***/
  10.  
  11.  
  12.  
  13. #ifndef EXTERN
  14.  
  15. # if defined(__cplusplus) || defined(__cplusplus__)
  16. #  define EXTERN   extern "C"
  17. # else
  18. #  define EXTERN   extern 
  19. # endif
  20.                  
  21. # if defined(__BORLANDC__)
  22. # define __MSC   /* for full compatibility with Microsoft C  */
  23. # endif                                                       
  24.  
  25. #endif
  26.