Using Delphi XE. When trying to access a Delphi interface object from a DLL, it fails if I try to do it dynamically versus statically.
I loaded the form but only buttons without functions HMODULE hModule = LoadLibrary(L\"Tools.dll\"); if (hModule != NULL)
Up until now, I had some sort of plugin mechanism in which I loaded dlls using LoadLibrary and GetProcAddress to create a concrete object and return a common interface. This worked fine until I decide
I was trying to use QOCI plugin for QtSql, until I had some problems: Why QOCI plugin isn't working
I am writing a scriptable game engine, for which I have a large number of classes that perform various tasks. The size of the engine is growing rapidly, and so I thought of splitting the large executa
I have a project that I converted from Visual Studio 2003 开发者_JAVA技巧.NETto Visual Studio 2010.It\'s NOT a .NET project; it\'s Visual C++ (unmanaged).
Hello guys: I\'ve loaded my DLL in my project but whenever I use the GetProcAddress function. it returns NULL! what should I do?
I havethird party dlls that I need to use with my applic开发者_如何转开发ation. The interface is defined in the third party dlls and I have to make the interface call from my application. I have the f
I have an mfc dll that I like to load into an C s开发者_StackOverflow中文版harp program! My source tutorial:
I am using an external dll in my project. When i try to run the application on a 64bit machine, it crashes with a FileLoadException. Since it works fine on a 32bit system, i suspect the dll to be 32bi