repo.or.cz
/
glib.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch '976-disable-assert-checks' into 'master'
[glib.git]
/
gio
/
tests
/
testenum.h
blob
def8713872a4a6d882e307d6ba8b341cf2cb69f9
1
typedef
enum
2
{
3
TEST_ENUM_FOO
,
4
TEST_ENUM_BAR
,
5
TEST_ENUM_BAZ
,
6
TEST_ENUM_QUUX
7
}
TestEnum
;
8
9
typedef
enum
10
{
11
TEST_FLAGS_NONE
=
0
,
12
TEST_FLAGS_MOURNING
= (
1
<<
0
),
13
TEST_FLAGS_LAUGHING
= (
1
<<
1
),
14
TEST_FLAGS_TALKING
= (
1
<<
2
),
15
TEST_FLAGS_WALKING
= (
1
<<
3
)
16
}
TestFlags
;