-
Notifications
You must be signed in to change notification settings - Fork 7
/
preWin32Perl.h
37 lines (31 loc) · 962 Bytes
/
preWin32Perl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef _PREWIN32_PERL_H
#define _PREWIN32_PERL_H
# define _PREWIN32PERL_H_VERSION 20080321
//////////////////////////////////////////////////////////////////////////
//
// preWin32Perl.h
// --------------
// This is a header to use *before* using the Win32Perl.h header.
// This header file defines macros that in turn will enable
// appropriate Perl macros that the default Win32 Perl
// builds from ActiveState.com use.
//
// TO USE THIS:
// Refer to the Win32Perl.h header for details on use.
//
//////////////////////////////////////////////////////////////////////////
//
// Load Perl Headers
// -----------------
// If we are building with the core distribution headers we can not define
// the function names using C++ because of name mangling
#if defined(__cplusplus)
extern "C" {
#endif
#include "EXTERN.h"
#include "perl.h"
#include "XSub.h"
#if defined(__cplusplus)
}
#endif
#endif // _PREWIN32_PERL_H