SVC ADD WEB PANEL

From LIVECHAT Developer Zone Wiki

Jump to: navigation, search
SVC_ADD_WEB_PANEL
Add new web panel.


Parameters
wParam
NULL
lParam
LCWEBPANEL* web


Return values

  • Returns API_ERROR if operation failed otherwise API_SUCCESS.


Remarks
If item already exists it is updated.


Sample code

	LCWEBPANEL panel = {0};
	panel.cbSize = sizeof(LCWEBPANEL);
	panel.plugin_name = name();
	panel.id = 1000;
	panel.name = _T("Sample name");
	panel.content = _T("http://www.livechatinc.com");
	panel.html = false;
		
	gPlugin.CallServiceSync(SVC_ADD_WEB_PANEL, 0, (LPARAM) &panel);
Personal tools