Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / Jump / Executable / jumpExecutable.cxx
blob7a050c702898589db539361e950d8450fc337d30
1 #ifdef _WIN32
2 # define JUMP_IMPORT __declspec(dllimport)
3 #else
4 # define JUMP_IMPORT extern
5 #endif
7 extern int jumpStatic();
8 JUMP_IMPORT int jumpShared();
9 int main()
11 return jumpShared() && jumpShared();