Esempio n. 1
0
bool GuiConfig::Read(const string &option, int32_t &value)
{
	if(!option.size())
		return true;

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

	return false;
}
Esempio n. 2
0
Sint32
agar_gui_widget_get_int32 (AG_Widget *w, const char *binding)
{
  return AG_GetSint32 (w, binding);
}