File: HsMySQL.h

package info (click to toggle)
haskell-hsql-mysql 1.7.1-6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 64 kB
  • ctags: 5
  • sloc: ansic: 12; makefile: 4; haskell: 2
file content (16 lines) | stat: -rwxr-xr-x 257 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef HsMySQL
#define HsMySQL

#ifdef mingw32_HOST_OS
#include <windows.h>
#endif

#include <mysql.h>

#ifdef CLIENT_MULTI_STATEMENTS
#define MYSQL_DEFAULT_CONNECT_FLAGS  CLIENT_MULTI_STATEMENTS
#else
#define MYSQL_DEFAULT_CONNECT_FLAGS  0
#endif

#endif