Convert __declspec to _export C++
- by SroMah
Hi,
I am converting the following function. But the new converted function is not executed. Any ideas?
Old Function
extern "C"
DWORD __declspec(dllexport) FAR MyFunc (char *value1, int *value2)
New Function
extern "C"
DWORD _export FAR MyFunc (char *value1, int *value2)