3 # define IMPORT __declspec(dllimport)
8 IMPORT int shared_version();
10 #ifdef HAS_STATIC_VERSION
11 IMPORT int static_version();
19 #ifdef HAS_MIXED_VERSION
20 IMPORT int mixed_version();
30 return mixed_version() == 0 && shared_version() == 0 &&
31 static_version() == 0;