Import Upstream version 2.72.4

This commit is contained in:
evinadmin 2023-07-04 11:23:22 +02:00
commit 4ef3ff9793
2003 changed files with 1332420 additions and 0 deletions

16
gio/tests/testenum.h Normal file
View file

@ -0,0 +1,16 @@
typedef enum
{
TEST_ENUM_FOO,
TEST_ENUM_BAR,
TEST_ENUM_BAZ,
TEST_ENUM_QUUX
} TestEnum;
typedef enum
{
TEST_FLAGS_NONE = 0,
TEST_FLAGS_MOURNING = (1 << 0),
TEST_FLAGS_LAUGHING = (1 << 1),
TEST_FLAGS_TALKING = (1 << 2),
TEST_FLAGS_WALKING = (1 << 3)
} TestFlags;