blob: 100d6b6b3e7cdfa95a8e487c2c7549c83178381f [file] [log] [blame]
#ifndef HELLO_LIBRARY_H
#define HELLO_LIBRARY_H
#ifdef COMPILING_DLL
#define DLLEXPORT __declspec(dllexport)
#else
#define DLLEXPORT __declspec(dllimport)
#endif
extern "C" DLLEXPORT char *get_time();
extern "C" DLLEXPORT void say_hello(char *);
#endif