PreferencesPair

From LIVECHAT Developer Zone Wiki

Jump to: navigation, search

Used as a key value pair to get and set information in controls of plugin’s preferences page.

typedef struct PreferencesPair{
	int		cbSize;
	LPCTSTR		plugin_name;
	UINT		control_id;
	CString		value;
	bool		extra_choice;
} PreferencesPair;
Members
cbSize
size of the PreferencesPair structure
plugin_name
name of the plugin
control_id
identifier of the control (unique within plugin)
value
value associated with control with specified id
extra_choice
true if the value is an additional options in Combobox and Radio Button controls
Personal tools