示例#1
0
bool GuiConfig::Read(const string &option, uint32_t &value)
{
	if(!option.size())
		return true;

	value = AG_GetUint32(agConfig, option.c_str());

	return false;
}
示例#2
0
Uint32
agar_gui_widget_get_uint32 (AG_Widget *w, const char *binding)
{
  return AG_GetUint32 (w, binding);
}