I'm developing a Winamp plugin. I have a project that builds a .dll
file. This file is actually the plugin. I want to debug that plugin.
I need some recipe Step by step. I have already set the Configuration Properties - > Debug ging -> Command
to "C:\Program Files (x86)\Winamp\winamp.exe"
. So, when I hit debug winamp actually starts the plugin but then some C++ runtime fatal error occure.
EDIT:
The question is how to prepare for the debugging? How to tell winamp.exe that gen_my_file.dll is a plug-in? (Winamp scans the C:/Program Files/Winamp/Plugins/
directory for plugins. To start the plugin It must be there, but how to tell visual studio export the .dll there and link it somehow?)
Here is what is happening: 1) I hit F5
Then I hit YES.
2) Second message appears
3) Voila the plugin is started!
4) ... and when I hit OK ...
I have tested this with empty project so, there is no way to breaks because of bug in the plug-in