O.P. RegisterWindowMessage & SendMessage
In the sample plugin, the code for changing your nick is
UINT nMsg = RegisterWindowMessage("MessengerPlus_SetName");
SendMessage(HWND_BROADCAST, nMsg, (WPARAM)sName, FALSE);
also, to open a toast, it uses RegisterWindowMessage and SendMessage. This means that there is more functionality than that provided by the commands and tags. My question is:
Does anyone know which messages are available and what parameters they have?
In particular, i want to set/change custom names of my contacts, for what there are no commands.
|