File: HsMySQL.h

package info (click to toggle)
haskell-hsql-mysql 1.7-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 72 kB
  • ctags: 3
  • sloc: haskell: 87; sh: 83; makefile: 50; ansic: 12
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