diff options
Diffstat (limited to 'atk-adaptor/bitarray.h')
-rw-r--r-- | atk-adaptor/bitarray.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/atk-adaptor/bitarray.h b/atk-adaptor/bitarray.h new file mode 100644 index 0000000..61ed673 --- /dev/null +++ b/atk-adaptor/bitarray.h @@ -0,0 +1,32 @@ +/* + * AT-SPI - Assistive Technology Service Provider Interface + * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap) + * + * Copyright 2008 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifndef _BITARRAY_H +#define _BITARRAY_H + +#include "dbus/dbus.h" +#include "glib.h" + +#define BITARRAY_SEQ_TERM 0xffffffff + +#define BITARRAY_SET(p, n) ((p)[n>>5] |= (1<<(n&31))) +#endif /* _BITARRAY_H */ |