/* OpenIDA - Outil d'analyse de fichiers binaires
* cdb.h - prototypes pour la manipulation des archives au format CDB
*
* Copyright (C) 2014 Cyrille Bagard
*
* This file is part of OpenIDA.
*
* 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 _ANALYSIS_DB_CDB_H
#define _ANALYSIS_DB_CDB_H
#include
#include
#include "client.h"
#include "core.h"
#define G_TYPE_CDB_ARCHIVE g_cdb_archive_get_type()
#define G_CDB_ARCHIVE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_cdb_archive_get_type(), GCdbArchive))
#define G_IS_CDB_ARCHIVE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_cdb_archive_get_type()))
#define G_CDB_ARCHIVE_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE((inst), g_cdb_archive_get_type(), GCdbArchiveIface))
#define G_CDB_ARCHIVE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_CDB_ARCHIVE, GCdbArchiveClass))
/* Description d'une archive d'éléments utilisateur (instance) */
typedef struct _GCdbArchive GCdbArchive;
/* Description d'une archive d'éléments utilisateur (classe) */
typedef struct _GCdbArchiveClass GCdbArchiveClass;
/* Indique le type défini pour une une archive d'éléments utilisateur. */
GType g_cdb_archive_get_type(void);
/* Prépare un client pour une connexion à une BD. */
GCdbArchive *g_cdb_archive_new(bool, GDbClient *, const core_db_info *);
/* Enregistre une archive avec tous les éléments à conserver. */
bool g_cdb_archive_write(const GCdbArchive *);
#endif /* _ANALYSIS_DB_CDB_H */