Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / ExportImport / Import / imp_mod1.c
blob579d949c3fc6492e0113e4d47cdc55d40b9c715c
1 #if defined(_WIN32) || defined(__CYGWIN__)
2 # define testExe2_IMPORT __declspec(dllimport)
3 #else
4 # define testExe2_IMPORT
5 #endif
7 testExe2_IMPORT int testExe2Func(void);
8 testExe2_IMPORT int testExe2lib(void);
10 int imp_mod1()
12 return testExe2Func() + testExe2lib();