2008-10-12 18:41:06 +02:00
|
|
|
#ifdef _WIN32
|
2018-08-09 18:06:22 +02:00
|
|
|
# define JUMP_IMPORT __declspec(dllimport)
|
2008-10-12 18:41:06 +02:00
|
|
|
#else
|
2018-08-09 18:06:22 +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();
|
|
|
|
}
|