I am trying to use the following:
dbDLLLoad("Buzzer.dll",1);
But the result is:
1>Main.obj : error LNK2019: unresolved external symbol "void __cdecl dbDLLLoad(char *,int)" (?dbDLLLoad@@YAXPADH@Z) referenced in function "void __cdecl DarkGDK(void)" (?DarkGDK@@YAXXZ)
1>Debug\Dark GDK - 2D Game3.exe : fatal error LNK1120: 1 unresolved externals
The DarkGDK documentation states that the command should be:
void dbLoadDLL ( char* Dllname, int DllNumber )
but any attempt to use
dbLoadDLL("Buzzer.dll",1) results in an unknown identifier error for dbLoadDLL.
Has the ability to load and used DLLs been left out of DarkGDK?