mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-14 17:00:20 +01:00
21 lines
287 B
C
21 lines
287 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#ifdef WIN32
|
||
|
#ifdef LIBRARY_BUILD
|
||
|
#define DLLEXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
#define DLLEXPORT __declspec(dllimport)
|
||
|
#endif
|
||
|
#else
|
||
|
#define DLLEXPORT
|
||
|
#endif
|
||
|
|
||
|
|
||
|
DLLEXPORT int
|
||
|
library_function(void)
|
||
|
{
|
||
|
printf("library_function");
|
||
|
return 0;
|
||
|
}
|