SVC SET REGPROPERTY

From LIVECHAT Developer Zone Wiki

Jump to: navigation, search
SVC_SET_REGPROPERTY (deprecated)
Set plugin's property value stored in the registry.


Comment

Service deprecated. Use SVC_SET_PROPERTY instead.


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