O.P. RE: Bug in plugin support?
Sorry if i wasnt too clear
the full function :-
MPPLUGIN_RETURN_BOOL ParseCommand(/*[in]*/ const char* sCommand,
/*[in]*/ const char* sCommandArg,
/*[in]*/ PLUGIN_PARAM* pParam,
/*[out]*/ char* sResult)
{
if(stricmp(sCommand, "/xcopy") == 0)
{
strncpy(sResult, sCommandArg, 1500);
return TRUE;
}
return FALSE;
}
now if you open a chat window and do /xcopy blahblahblahblahblahblahblah.. (until you cant type anymore and with no spaces) msn plus will crash
HTH
|