You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
245 B
15 lines
245 B
6 years ago
|
#if defined(_WIN32) && defined(COMPILE_FOR_SHARED_LIB)
|
||
|
# define IMPORT __declspec(dllimport)
|
||
|
#else
|
||
|
# define IMPORT
|
||
|
#endif
|
||
|
|
||
|
extern IMPORT int b(void);
|
||
|
int main()
|
||
|
{
|
||
|
return b();
|
||
|
}
|
||
|
#ifndef REQUIRED
|
||
|
# error "REQUIRED needs to be defined"
|
||
|
#endif
|