summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-10-16 22:04:29 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-10-16 22:04:29 (GMT)
commit6d34dbbb00da0c276261d0e1ce4bf862f22fd8e0 (patch)
treea5d3c8644691934ba84a91919f7db177f70743f1 /src/common
parente75f44a99c8f984af4c47fa9a2c8e7e9841700d8 (diff)
Stored a bookmark into the data base and saved the archive.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@414 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/common')
-rwxr-xr-xsrc/common/Makefile.am1
-rw-r--r--src/common/sqlite.h56
2 files changed, 57 insertions, 0 deletions
diff --git a/src/common/Makefile.am b/src/common/Makefile.am
index 7ec85ab..198de32 100755
--- a/src/common/Makefile.am
+++ b/src/common/Makefile.am
@@ -13,6 +13,7 @@ libcommon_la_SOURCES = \
leb128.h leb128.c \
macros.h \
net.h net.c \
+ sqlite.h \
xdg.h xdg.c \
xml.h xml.c
diff --git a/src/common/sqlite.h b/src/common/sqlite.h
new file mode 100644
index 0000000..66fb773
--- /dev/null
+++ b/src/common/sqlite.h
@@ -0,0 +1,56 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * sqlite.h - prototypes pour une extension des définitions propres à SQLite
+ *
+ * Copyright (C) 2014 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * OpenIDA 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.
+ *
+ * OpenIDA 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _COMMON_SQLITE_H
+#define _COMMON_SQLITE_H
+
+
+#include <stdint.h>
+
+
+/* Type pour les insertions brutes */
+#define SQLITE_RAW 0
+#define SQLITE_INT64 10
+
+
+/* Description des champs et de leur valeur associée */
+typedef struct _bound_value
+{
+ const char *name; /* Nom du champ à manipuler */
+ unsigned int type; /* Type de valeur à associer */
+
+ union
+ {
+ int64_t integer64; /* Nombre sur 64 bits */
+ char *string; /* Chaîne de caractères #1 */
+ const char *cstring; /* Chaîne de caractères #2 */
+
+ };
+
+ void (* delete) (void *); /* Suppression éventuelle */
+
+} bound_value;
+
+
+
+#endif /* _COMMON_SQLITE_H */