jumpExecutable.cxx 206 B

123456789101112
  1. #ifdef _WIN32
  2. #define JUMP_IMPORT __declspec(dllimport)
  3. #else
  4. #define JUMP_IMPORT extern
  5. #endif
  6. extern int jumpStatic();
  7. JUMP_IMPORT int jumpShared();
  8. int main()
  9. {
  10. return jumpShared() && jumpShared();
  11. }