You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
926 B
C
43 lines
926 B
C
|
|
#ifndef SQLITE_API_H
|
|
#define SQLITE_API_H
|
|
|
|
#ifdef SQLITE_STATIC_DEFINE
|
|
# define SQLITE_API
|
|
# define SQLITE_NO_EXPORT
|
|
#else
|
|
# ifndef SQLITE_API
|
|
# ifdef sqlite_EXPORTS
|
|
/* We are building this library */
|
|
# define SQLITE_API __declspec(dllexport)
|
|
# else
|
|
/* We are using this library */
|
|
# define SQLITE_API __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef SQLITE_NO_EXPORT
|
|
# define SQLITE_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef VTKSQLITE_DEPRECATED
|
|
# define VTKSQLITE_DEPRECATED __declspec(deprecated)
|
|
#endif
|
|
|
|
#ifndef VTKSQLITE_DEPRECATED_EXPORT
|
|
# define VTKSQLITE_DEPRECATED_EXPORT SQLITE_API VTKSQLITE_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef VTKSQLITE_DEPRECATED_NO_EXPORT
|
|
# define VTKSQLITE_DEPRECATED_NO_EXPORT SQLITE_NO_EXPORT VTKSQLITE_DEPRECATED
|
|
#endif
|
|
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
|
# ifndef SQLITE_NO_DEPRECATED
|
|
# define SQLITE_NO_DEPRECATED
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* SQLITE_API_H */
|