SVC SET PROPERTY

From LIVECHAT Developer Zone Wiki

Jump to: navigation, search
SVC_SET_PROPERTY
Set plugin's property value. Properties are stored in the registry.


Parameters
wParam
NULL
lParam
PairType* pair


Return values

  • Returns API_ERROR if operation failed otherwise API_SUCCESS


Sample code

	PairType pair = {0};
	pair.cbSize = sizeof(PairType);	
	pair.key = _T("Sample key");
	pair.value = _T("Sample value");
	
	call(SVC_SET_PROPERTY, 0, (LPARAM) &pair);
Personal tools