Recent content by Tridurz

  1. T

    Question: problems porting a 32-bit plug-in to 64 bit with Visual Studio

    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...
  2. T

    Question: problems porting a 32-bit plug-in to 64 bit with Visual Studio

    wow. thank you. I will look into it.
  3. T

    Question: problems porting a 32-bit plug-in to 64 bit with Visual Studio

    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...
Back
Top