mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-14 17:00:20 +01:00
22 lines
319 B
C
22 lines
319 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 extern int library_function(void);
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
library_function();
|
|
exit(0);
|
|
}
|