SVC SET PROTOCOL STATUS
From LIVECHAT Developer Zone Wiki
- SVC_SET_PROTOCOL_STATUS
- Sets user’s protocol status.
- Parameters
- wParam
- NULL
- lParam
- ProtocolStatus* status
Return values
- Returns API_ERROR if operation failed otherwise API_SUCCESS
Sample code
MetaStatus status = METASTATUS_ONLINE;
ProtocolStatus ps;
ps.cbSize = sizeof(ProtocolStatus);
ps.status = status;
ps.name = _T("Skype");
call(SVC_SET_PROTOCOL_STATUS, 0, (LPARAM) &ps);
