~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

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
//  Mex versioning resource file
//  this should be compiled with the V4_COMPAT and ARRAY_ACCESS_INLINING
//  defines if they apply.
//
//  DO NOT EDIT    - this is for MATLAB use only

/////////////////////////////////////////////////////////////////////////////
// Define strings,
// ML_VERSION is the version of Matlab that the mex file is built against.
// INLINING determines in inlining was switched on or not.

#define ML_VERSION   100
#define INLINING     101 

/////////////////////////////////////////////////////////////////////////////
//
// String Table
//

STRINGTABLE
BEGIN
#ifdef V4_COMPAT
    ML_VERSION,      "MATLAB 4 compatible"
#else
    ML_VERSION,      "MATLAB R11 native"
#endif
#ifdef ARRAY_ACCESS_INLINING
    INLINING,        "inlined"
#else
    INLINING,        "not inlined"
#endif
END