In the DSP.h header file found in the SDK:
Quote:
code: // return values from the winampUninstallPlugin(HINSTANCE hdll, HWND parent, int param)
// which determine if we can uninstall the plugin immediately or on winamp restart
#define DSP_PLUGIN_UNINSTALL_NOW 0x0
#define DSP_PLUGIN_UNINSTALL_REBOOT 0x1
//
// uninstall support was added from 5.0+ and uninstall now support from 5.5+
// it is down to you to ensure that if uninstall now is returned that it will not cause a crash
// (ie don't use if you've been subclassing the main window)
|
What is the window that the handle referenced by the parameter "HWND parent" supposed to be? Is there additional documentation elsewhere in the SDK about that parameter? If there is, where in the SDK is it?