Issue in calling a function from DLL in GO Lang
Problem Description : There is dll( A1.dll- compiled in C++) in which a function is defined as
EXPORT void S3(HWND hwnd, HINSTANCE hinst, LPSTR lpszCmdLine, int nCmdShow){}
I want to load this DLL using GO lang. For this I am writing below program:...