2004-01-22 17:56:24 +03:00
|
|
|
#ifdef _WIN32
|
2016-05-16 17:34:04 +03:00
|
|
|
#define JUMP_IMPORT __declspec(dllimport)
|
2004-01-22 17:56:24 +03:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#define JUMP_IMPORT extern
|
2004-01-22 17:56:24 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
extern int jumpStatic();
|
|
|
|
JUMP_IMPORT int jumpShared();
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return jumpShared() && jumpShared();
|
|
|
|
}
|