Next: get-g-interface-definition, Previous: get-g-enum-definition, Up: Generating type definitions by introspection
(get-g-flags-definition type &optional lisp-name-package) => definition
*package*
Uses GObject introspection capabilities to automatically produce the definition of GFlags. The foreign library that defines the flags type should be loaded.
See Generating names for CLOS classes and accessors for information about used method for generating names.
Example:
(get-g-flags-definition "GtkCalendarDisplayOptions") => (DEFINE-G-FLAGS "GtkCalendarDisplayOptions" GTK-CALENDAR-DISPLAY-OPTIONS (:EXPORT T :TYPE-INITIALIZER "gtk_calendar_display_options_get_type") (:SHOW-HEADING 1) (:SHOW-DAY-NAMES 2) (:NO-MONTH-CHANGE 4) (:SHOW-WEEK-NUMBERS 8) (:WEEK-START-MONDAY 16) (:SHOW-DETAILS 32))