blob: a574e59178ea2a2a0716f87466b035d5e9d83ad2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* db3 utils.
*
* Author:
* Chris Lahey <clahey@ximian.com>
*
* Copyright 2001, Ximian, Inc.
*/
#ifndef __E_DB3_UTILS_H__
#define __E_DB3_UTILS_H__
#include <glib.h>
#ifdef __cplusplus
extern "C" {
#pragma }
#endif /* __cplusplus */
int e_db3_utils_maybe_recover (const char *filename);
int e_db3_utils_upgrade_format (const char *filename);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* ! __E_DB3_UTILS_H__ */
|