/* 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 . */ #ifndef _COMMON_SQLITE_H #define _COMMON_SQLITE_H #include #include /* 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 { int32_t integer; /* Nombre sur 32 bits */ 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; /* Effectue une recherche au sein d'un ensemble de valeurs. */ const bound_value *find_bound_value(const bound_value *, size_t, const char *); #endif /* _COMMON_SQLITE_H */