Anyone out there who would like to learn to program PL/SQL Developer's plug-ins, but doesn't have the tools from Microsoft to do it (and maybe like me doesn't want to learn that stuff)...
You can very EASILY compile a .DLL in CYGWIN and I'm already using some DLLs built this way as plug-ins.
From the example included with PLSqlDev, you'll just need DemoWin32/*.cpp and *.h. You can lose the other project-related files. Here's the gcc command:
gcc -c *.cpp; gcc -shared -o mydll.dll *.o -lstdc++;
Copy the dll to your plug-ins directory, and copy cygwin1.dll from /cygwin/bin/ to C:\WINDOWS\SYSTEM32
ENJOY!
You can very EASILY compile a .DLL in CYGWIN and I'm already using some DLLs built this way as plug-ins.
From the example included with PLSqlDev, you'll just need DemoWin32/*.cpp and *.h. You can lose the other project-related files. Here's the gcc command:
gcc -c *.cpp; gcc -shared -o mydll.dll *.o -lstdc++;
Copy the dll to your plug-ins directory, and copy cygwin1.dll from /cygwin/bin/ to C:\WINDOWS\SYSTEM32
ENJOY!