home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Media Share 9
/
MEDIASHARE_09.ISO
/
cprog
/
actlib12.zip
/
C2CPP.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-25
|
600b
|
26 lines
/****
* Copyright (C) 1993 Marc Stern (internet: stern@mble.philips.be)
*
* C2CPP.H : general function declaration
* for both C & C++
*
* Important Remark: This file must be included before any other one.
*
***/
#ifndef EXTERN
# if defined(__cplusplus) || defined(__cplusplus__)
# define EXTERN extern "C"
# else
# define EXTERN extern
# endif
# if defined(__BORLANDC__)
# define __MSC /* for full compatibility with Microsoft C */
# endif
#endif