/*
  test_dll.h
*/

#ifndef __TEST_DLL_H__
#define __TEST_DLL_H__

#ifdef __TEST_DLL_MAKE_DLL_
#define __PORT __declspec(dllexport) // make dll mode
#else
#define __PORT __declspec(dllimport) // use dll mode
#endif

#ifdef __cplusplus
extern "C" {
#endif

__PORT BOOL APIENTRY DllMain(HINSTANCE, WORD, LPVOID);
__PORT int WINAPI test(int);

#ifdef __cplusplus
}
#endif

#endif // __TEST_DLL_H__