2005-05-22 15:46:45 +00:00
|
|
|
#include <glib.h>
|
2003-06-25 17:37:32 +00:00
|
|
|
|
|
|
|
typedef union {
|
|
|
|
guint flags;
|
|
|
|
struct {
|
|
|
|
guint support:1;
|
|
|
|
guint osk:1;
|
|
|
|
guint magnifier:1;
|
|
|
|
guint screenreader:1;
|
2003-07-18 22:22:38 +00:00
|
|
|
guint osk_installed:1;
|
|
|
|
guint magnifier_installed:1;
|
|
|
|
guint screenreader_installed:1;
|
2006-08-07 09:52:38 +00:00
|
|
|
guint gnopernicus_installed:1;
|
|
|
|
guint orca_installed:1;
|
2003-06-25 17:37:32 +00:00
|
|
|
} enabled;
|
|
|
|
} AtStartupState;
|
|
|
|
|
|
|
|
void at_startup_state_init (AtStartupState *startup_state);
|
|
|
|
|
|
|
|
void at_startup_state_update (AtStartupState *startup_state);
|