what do i need to do to get the plugin to show in the plugins menu?
i have added this
MPPLUGIN_RETURN_BOOL PublishInfo(/*[out]*/ char *sPluginName,
                                 /*[out]*/ PLUGIN_PUBLISH_LIST* aCommands,
                                 /*[out]*/ PLUGIN_PUBLISH_LIST* aTags)
{
    strcpy(sPluginName, "XFade V1.0 By Finn");
    aCommands->nCount = 3;
    strcpy(aCommands->sName[0], "Help");
    strcpy(aCommands->sValue[0], "XFade");
    strcpy(aCommands->sName[1], "Random Fade");
    strcpy(aCommands->sValue[1], "XRFade");
    strcpy(aCommands->sName[2], "Multiple Fade");
    strcpy(aCommands->sValue[2], "XNFade");
    aTags->nCount = 0;
    return TRUE;
}
but still the plugin menu is greyed out