summaryrefslogtreecommitdiff
path: root/plugins/lnxsyscalls
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-02-06 18:00:49 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-02-06 18:00:49 (GMT)
commit3e6da2a6085a2bc04dd5324f7ee74633a53543f3 (patch)
treebce6003dcb90cd7fd96e915f55b0e16293babe53 /plugins/lnxsyscalls
parent17f591f2230ac66394467d5e5eefe71cb259637d (diff)
Fixed some GType declarations.
Diffstat (limited to 'plugins/lnxsyscalls')
-rw-r--r--plugins/lnxsyscalls/hunter.c3
-rw-r--r--plugins/lnxsyscalls/hunter.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/lnxsyscalls/hunter.c b/plugins/lnxsyscalls/hunter.c
index 4cac8e6..8050b5a 100644
--- a/plugins/lnxsyscalls/hunter.c
+++ b/plugins/lnxsyscalls/hunter.c
@@ -61,9 +61,6 @@ struct _GGateHunterClass
};
-/* Indique le type défini pour les tâches d'étude de routines. */
-GType g_gate_hunter_get_type(void);
-
/* Initialise la classe des tâches d'étude de routines. */
static void g_gate_hunter_class_init(GGateHunterClass *);
diff --git a/plugins/lnxsyscalls/hunter.h b/plugins/lnxsyscalls/hunter.h
index 100f426..3b8a1b6 100644
--- a/plugins/lnxsyscalls/hunter.h
+++ b/plugins/lnxsyscalls/hunter.h
@@ -48,6 +48,9 @@ typedef struct _GGateHunter GGateHunter;
typedef struct _GGateHunterClass GGateHunterClass;
+/* Indique le type défini pour les tâches d'étude de routines. */
+GType g_gate_hunter_get_type(void);
+
/* Crée une tâche d'étude de routines différée. */
GGateHunter *g_gate_hunter_new(const GPluginModule *, GLoadedBinary *, GProcContext *, size_t, size_t, activity_id_t, const hunting_ops *);