diff options
Diffstat (limited to 'src/analysis/db')
-rw-r--r-- | src/analysis/db/misc/rlestr.c | 3 | ||||
-rw-r--r-- | src/analysis/db/misc/rlestr.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/analysis/db/misc/rlestr.c b/src/analysis/db/misc/rlestr.c index a211723..4c767c4 100644 --- a/src/analysis/db/misc/rlestr.c +++ b/src/analysis/db/misc/rlestr.c @@ -354,7 +354,7 @@ bool pack_rle_string(const rle_string *str, packed_buffer_t *pbuf) * Remarques : - * * * ******************************************************************************/ - +#if 0 // FIXME bool load_rle_string(rle_string *str, const char *name, const bound_value *values, size_t count) { const bound_value *value; /* Valeur à intégrer */ @@ -426,3 +426,4 @@ bool store_rle_string(const rle_string *str, const char *name, bound_value **val return true; } +#endif diff --git a/src/analysis/db/misc/rlestr.h b/src/analysis/db/misc/rlestr.h index aa2aa73..53c1055 100644 --- a/src/analysis/db/misc/rlestr.h +++ b/src/analysis/db/misc/rlestr.h @@ -96,13 +96,13 @@ bool pack_rle_string(const rle_string *, packed_buffer_t *); /* Définition du tronc commun pour les créations SQLite */ #define SQLITE_RLESTR_CREATE(n) \ n " TEXT" - +#if 0 // FIXME /* Charge les valeurs utiles pour une chaîne de caractères. */ bool load_rle_string(rle_string *, const char *, const bound_value *, size_t); /* Constitue les champs destinés à une insertion / modification. */ bool store_rle_string(const rle_string *, const char *, bound_value **, size_t *); - +#endif #endif /* _ANALYSIS_DB_MISC_RLESTR_H */ |