summaryrefslogtreecommitdiff
path: root/src/gleak.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-02-06 18:40:49 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-02-06 18:40:49 (GMT)
commit7b3ca7accd4103bb5069d31b2389ea76c57846ca (patch)
treecdc9e63e83691131bcb427148edd340bd353d791 /src/gleak.h
parent3e6da2a6085a2bc04dd5324f7ee74633a53543f3 (diff)
Introduced a tracker for GObjects leaks.
Diffstat (limited to 'src/gleak.h')
-rw-r--r--src/gleak.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/gleak.h b/src/gleak.h
new file mode 100644
index 0000000..233fabb
--- /dev/null
+++ b/src/gleak.h
@@ -0,0 +1,34 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * gleak.h - prototypes pour l'aide à la détection de fuites d'instances de GTypes
+ *
+ * Copyright (C) 2019 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * Chrysalide is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Chrysalide 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Chrysalide. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _GLEAK_H
+#define _GLEAK_H
+
+
+
+/* Affiche la liste des instances courantes restantes par type. */
+void dump_remaining_gtypes(void);
+
+
+
+#endif /* _GLEAK_H */