Hi Bilal,
I followed your example and got this error message when building the DLL. Any idea why MS VC++ issue this error msg?.
" c:\mgcp.cpp(1382) : error C2491: 'UpdateGWdb' : definition of dllimport function not allowed
Error executing cl.exe. "
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
STRUCTURE_API int UpdateGWdb(struct IPoA_Signaling IPoASigStruct)
{
//== =====
return test;
}