0
줄임표 (mutli arg) 함수를 내보낼 수 있습니까? 예dll에서 줄임표 함수 내보내기
// dll function
extern "C" __declspec(dllexport) int __cdecl LogText(const wchar_t* fmt, ...);
// application
typedef int (__cdecl *LogText)(const wchar_t* fmt, ...);
LogText doLog;
doLog = (LogText) GetProcAddress(hDll, "LogText");
클라이언트는 C++ :
__cdecl
를 들어,이GetProcAddress
에 호출에 밑줄을 붙이는 의미? –