summaryrefslogtreecommitdiff
path: root/src/glibext
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-05-09 11:56:15 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-05-09 11:56:15 (GMT)
commitbb242c2cda6a590fef652e62688c10e2d52a7ff0 (patch)
tree8d59ef7d6edc7887806906ac65938510c52c9a5b /src/glibext
parent286878b36b5cf7a3f44251f62c94a57f0f29d3cf (diff)
Simplified the content loading handling.
Diffstat (limited to 'src/glibext')
-rw-r--r--src/glibext/delayed.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/glibext/delayed.h b/src/glibext/delayed.h
index c22cc5a..4669d2d 100644
--- a/src/glibext/delayed.h
+++ b/src/glibext/delayed.h
@@ -27,6 +27,7 @@
#include <glib-object.h>
#include <stdbool.h>
+#include <stdint.h>
@@ -79,8 +80,13 @@ typedef struct _GWorkQueue GWorkQueue;
typedef struct _GWorkQueueClass GWorkQueueClass;
-/* Identifiant unique pour groupe de travail */
-typedef unsigned long long wgroup_id_t;
+/**
+ * Identifiant unique pour groupe de travail.
+ *
+ * Le nombre de bits est forcé à 64 bits car glib-genmarshal ne reconnait
+ * pas explicitement le type 'unsigned long long'.
+ */
+typedef uint64_t wgroup_id_t;
/* Indique le type défini pour le gestionnaire des travaux différés. */