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.
22 lines
360 B
22 lines
360 B
2 years ago
|
extern int testExePluginHelperObj(int n);
|
||
|
|
||
|
#ifdef testExePluginHelperObj_NO_OBJECT
|
||
|
int testExePluginHelperObj(int n)
|
||
|
{
|
||
|
return n;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#if defined(_WIN32)
|
||
|
__declspec(dllimport)
|
||
|
#endif
|
||
|
int testExePluginAPI(int n);
|
||
|
|
||
|
#if defined(_WIN32)
|
||
|
__declspec(dllexport)
|
||
|
#endif
|
||
|
int testExePlugin(int n)
|
||
|
{
|
||
|
return testExePluginAPI(n) + testExePluginHelperObj(n);
|
||
|
}
|