WavPack winamp plugin 2.5 alpha 4 available
Reply #3 –
[...]Note that this does not allow editing the metadata tags directly from winamp (alt+3) unless there's a plugin that implements this through that API.[...]
Benski, one of you WA guys mabbe?
Add this block of code somewhere in your program. It will cause Winamp 5.5+ to do tag editing through your plugin's metadata interface.
extern "C"
{
// return 1 if you want winamp to show it's own file info dialogue, 0 if you want to show your own (via In_Module.InfoBox)
// if returning 1, remember to implement winampGetExtendedFileInfo("formatinformation")!
__declspec(dllexport) int winampUseUnifiedFileInfoDlg(const wchar_t * fn)
{
return 1;
}
}