mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13 lines
323 B
C++
13 lines
323 B
C++
#pragma once
|
|
|
|
#if defined(ace_vd_EXPORTS)
|
|
#define ACE_VD_EXPORT __declspec (dllexport)
|
|
#elif defined(ace_vd_IMPORTS)
|
|
#define ACE_VD_EXPORT __declspec (dllimport)
|
|
#else
|
|
#define ACE_VD_EXPORT
|
|
#endif
|
|
|
|
extern "C" {
|
|
ACE_VD_EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function);
|
|
}; |