예제 #1
0
bool GuiConfig::Read(const string &option, int16_t &value)
{
	if(!option.size())
		return true;

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

	return false;
}
예제 #2
0
Sint16
agar_gui_widget_get_int16 (AG_Widget *w, const char *binding)
{
  return AG_GetSint16 (w, binding);
}