Hello Vorbis,
MinGW64 ("Minimalistic GNU for Windows) also works.
Here is the code for the demo sample from the first post to play around.
#include
extern "C"
{
__declspec(dllexport) char* IdentifyPlugIn(int);
__declspec(dllexport) char* CreateMenuItem(int);
__declspec(dllexport) void...
Hi,
I try to convert a 32bit plug-in into a 64bit plug-in.
I'm not really a experienced c++ developer, so I started with a small demo project. I compiled it with the 32bit VCC from Visual Express 2013 and it works fine. The Plug-In DLL is found and can be used in the 32Bit PLSQL Developer...