2008-10-12 18:41:06 +02:00
|
|
|
#ifdef _WIN32
|
2016-07-09 11:21:54 +02:00
|
|
|
#define JUMP_IMPORT __declspec(dllimport)
|
2008-10-12 18:41:06 +02:00
|
|
|
#else
|
2016-07-09 11:21:54 +02:00
|
|
|
#define JUMP_IMPORT extern
|
2008-10-12 18:41:06 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
extern int jumpStatic();
|
|
|
|
JUMP_IMPORT int jumpShared();
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return jumpShared() && jumpShared();
|
|
|
|
}
|