1 /*
2  * Copyright (C) YEAR The GNOME Foundation.
3  *
4  * AUTHORS:
5  *      TO_ADD: your name and email
6  *      Vivien Malerba <malerba@gnome-db.org>
7  *
8  * This Library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * This Library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this Library; see the file COPYING.LIB.  If not,
20  * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  * Boston, MA  02110-1301, USA.
22  */
23 
24 #ifndef __GDA_CAPI_H__
25 #define __GDA_CAPI_H__
26 
27 /*
28  * Provider name
29  */
30 #define CAPI_PROVIDER_NAME "Capi"
31 
32 /* TO_ADD: include headers necessary for the C or C++ API */
33 
34 /*
35  * Provider's specific connection data
36  */
37 typedef struct {
38 	/* TO_ADD: this structure holds any information necessary to specialize the GdaConnection, usually a connection
39 	 * handle from the C or C++ API
40 	 */
41 	int foo;
42 } CapiConnectionData;
43 
44 #endif
45