Exemplo n.º 1
0
// GetFlags is a wrapper around g_application_get_flags().
func (v *Application) GetFlags() ApplicationFlags {
	return ApplicationFlags(C.g_application_get_flags(v.native()))
}
Exemplo n.º 2
0
//Gets the flags for application .
//See GApplicationFlags.
func (v *Application) GetFlags() ApplicationFlags {
	c := C.g_application_get_flags(v.native())
	return (ApplicationFlags)(c)
}