You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
166 B
11 lines
166 B
2 months ago
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
||
|
# define EXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
# define EXPORT
|
||
|
#endif
|
||
|
|
||
1 month ago
|
EXPORT int testSharedObjectAIX(void)
|
||
2 months ago
|
{
|
||
|
return 0;
|
||
|
}
|