view database.h @ 6:882acedb9b89

misc: added signature for changeset 4fa5d279a084
author David Demelier <markand@malikania.fr>
date Thu, 26 Nov 2020 18:43:33 +0100
parents f41e1b48510d
children 1cf90affaa33
line wrap: on
line source

/*
 * database.h -- sqlite storage
 *
 * Copyright (c) 2020 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef IMGPASTER_DATABASE_H
#define IMGPASTER_DATABASE_H

#include <stdbool.h>
#include <stddef.h>

struct image;

bool
database_open(const char *);

bool
database_recents(struct image *, size_t *);

bool
database_get(struct image *, const char *);

bool
database_insert(struct image *);

bool
database_search(struct image *,
                size_t *,
                const char *,
                const char *);

void
database_clear(void);

void
database_finish(void);

#endif /* !IMGPASTER_DATABASE_H */