pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /*
-
* $Id: global.h,v 1.
55
2000/12/
13
21
:
25
:
58
hubbe Exp $
+
* $Id: global.h,v 1.
56
2000/12/
23
07
:
33
:
49
hubbe Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H #if defined(__WINNT__) && !defined(__NT__) #define __NT__ #endif /* The worlds most stringent C compiler? */ #ifdef __TenDRA__
pike.git/src/global.h:314:
#define INLINE inline #else #define INLINE #endif /* PMOD_EXPORT exports a function / variable vfsh. * Putting PMOD_PROTO in front of a prototype does nothing. */ #ifndef PMOD_EXPORT #if defined(__NT__) && !defined(DYNAMIC_MODULE)
-
#define PMOD_EXPORT __declspec(dllexport)
+
/*
#define PMOD_EXPORT __declspec(dllexport)
*/
+
#define PMOD_EXPORT
#else #define PMOD_EXPORT #endif #endif /* PMOD_PROTO is essentially the same as PMOD_EXPORT, but * it exports the identifier even if it only a prototype. */ #ifndef PMOD_PROTO