File: HsMySQL.h

package info (click to toggle)
haskell-hsql-mysql 1.8.1-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 84 kB
  • sloc: haskell: 78; ansic: 12; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 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