~ubuntu-branches/ubuntu/hardy/sqlite3/hardy

« back to all changes in this revision

Viewing changes to src/sqlite.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2007-08-20 16:12:00 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20070820161200-1u06zme8ghkyaenn
Tags: 3.4.2-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
** the version number) and changes its name to "sqlite3.h" as
31
31
** part of the build process.
32
32
**
33
 
** @(#) $Id: sqlite.h.in,v 1.218 2007/07/19 12:41:40 drh Exp $
 
33
** @(#) $Id: sqlite.h.in,v 1.219 2007/08/08 12:11:21 drh Exp $
34
34
*/
35
35
#ifndef _SQLITE3_H_
36
36
#define _SQLITE3_H_
44
44
#endif
45
45
 
46
46
/*
 
47
** Add the ability to override 'extern'
 
48
*/
 
49
#ifndef SQLITE_EXTERN
 
50
# define SQLITE_EXTERN extern
 
51
#endif
 
52
 
 
53
/*
47
54
** Make sure these symbols where not defined by some previous header
48
55
** file.
49
56
*/
100
107
** is provided for DLL users who can only access functions and not
101
108
** constants within the DLL.
102
109
*/
103
 
extern const char sqlite3_version[];
 
110
SQLITE_EXTERN const char sqlite3_version[];
104
111
const char *sqlite3_libversion(void);
105
112
int sqlite3_libversion_number(void);
106
113
 
2020
2027
** it is not safe to invoke this routine after [sqlite3_open()] has
2021
2028
** been called.
2022
2029
*/
2023
 
extern char *sqlite3_temp_directory;
 
2030
SQLITE_EXTERN char *sqlite3_temp_directory;
2024
2031
 
2025
2032
/*
2026
2033
** CAPI3REF:  Test To See If The Databse Is In Auto-Commit Mode