The Meson Build System
http://mesonbuild.com/
8 lines
163 B
8 lines
163 B
4 years ago
|
extern int static_lib_function(void);
|
||
|
extern __declspec(dllexport) int both_lib_function(void);
|
||
|
|
||
|
int both_lib_function(void)
|
||
|
{
|
||
|
return static_lib_function();
|
||
|
}
|