Revision 707, 0.5 kB
(checked in by smidl, 15 years ago)
|
matlab 7.1 compile prerequisities
|
Line | |
---|
1 | #if defined(WITH_COMMENTS) |
---|
2 | /* |
---|
3 | * fintrf.h - MATLAB/FORTRAN interface header file. This file |
---|
4 | * contains the declaration of the pointer type needed |
---|
5 | * by the MATLAB/FORTRAN interface. |
---|
6 | * |
---|
7 | * Copyright 1984-2004 The MathWorks, Inc. |
---|
8 | * All Rights Reserved. |
---|
9 | * $Revision: 1.11.6.5 $ $Date: 2005/01/29 08:42:29 $ |
---|
10 | */ |
---|
11 | #endif |
---|
12 | #if defined(__ia64__) || defined(__x86_64__) || defined(_M_AMD64) |
---|
13 | #define mwpointer integer*8 |
---|
14 | #define MWPOINTER INTEGER*8 |
---|
15 | #else |
---|
16 | #define mwpointer integer |
---|
17 | #define MWPOINTER INTEGER |
---|
18 | #endif |
---|