Last change
on this file since 15091 was 15091, checked in by Eric.Larour, 12 years ago |
CHG: the Windows build requires using mexPrintf instead of printf throughout the core code.
To avoid having to recompiled libISSMCore twice (once for the issm.exe "c++" version of the
code, and once for the Matlab wrappers), we use an ApiPrintf routine, which gets resolved
differently in the wrappers than in the issm.exe build. This allows to handle matlab printf
specific behaviour without having to compile the core in several flavors.
|
File size:
335 bytes
|
Line | |
---|
1 | /*!\file: sharedstring.h
|
---|
2 | * \brief prototypes for sharedstring.h
|
---|
3 | */
|
---|
4 |
|
---|
5 | #ifndef _SHAREDSTRING_H_
|
---|
6 | #define _SHAREDSTRING_H_
|
---|
7 |
|
---|
8 | int DescriptorIndex(char* root, int* pindex,char* descriptor);
|
---|
9 |
|
---|
10 | #ifndef WIN32
|
---|
11 | int stricmp(const char* a,const char* b);
|
---|
12 | #endif
|
---|
13 |
|
---|
14 | void ApiPrintf(char* format,const char* string);
|
---|
15 |
|
---|
16 | #endif //ifndef _SHAREDSTRING_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.