• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Hell dynamically loading a DLL!

Ultima

Platinum Member
I can't seem to be able to get the address of a function out of a DLL UNLESS I declare the function inside the DLL inside an "Extern "C" Block!

Eg, the function inside the DLL has to be declared this way:

extern "C" {
int __declspec ( dllexport ) Core(void)
{
return 0;
}
}

Both the DLL and the exe are being compiled with MSVC 6.0
How can I get around this? thx in advance
 
Back
Top