2006-08-07 Willie Walker <william.walker@sun.com> Fixes #348630 * at-startup-session.c (at_startup_state_init, at_startup_state_update): look for orca binary in path. * at-startup-session.h: added new fields to enabled union. * main.c (init_startup_state): added information about orca.
20 lines
441 B
C
20 lines
441 B
C
#include <glib.h>
|
|
|
|
typedef union {
|
|
guint flags;
|
|
struct {
|
|
guint support:1;
|
|
guint osk:1;
|
|
guint magnifier:1;
|
|
guint screenreader:1;
|
|
guint osk_installed:1;
|
|
guint magnifier_installed:1;
|
|
guint screenreader_installed:1;
|
|
guint gnopernicus_installed:1;
|
|
guint orca_installed:1;
|
|
} enabled;
|
|
} AtStartupState;
|
|
|
|
void at_startup_state_init (AtStartupState *startup_state);
|
|
|
|
void at_startup_state_update (AtStartupState *startup_state);
|