diff options
Diffstat (limited to 'src/common')
-rwxr-xr-x | src/common/Makefile.am | 1 | ||||
-rw-r--r-- | src/common/sqlite.h | 56 |
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 */ |