2014-08-18 07:56:31 +00:00
|
|
|
// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2015-03-12 09:43:55 +00:00
|
|
|
// +build windows
|
2014-08-18 08:00:59 +00:00
|
|
|
|
2013-06-20 20:52:38 +00:00
|
|
|
package sqlite3
|
2012-10-28 02:58:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo CFLAGS: -I. -fno-stack-check -fno-stack-protector -mno-stack-arg-probe
|
2014-10-24 10:38:05 +00:00
|
|
|
#cgo windows,386 CFLAGS: -D_localtime32=localtime
|
2014-09-10 05:58:32 +00:00
|
|
|
#cgo LDFLAGS: -lmingwex -lmingw32
|
2012-10-28 02:58:40 +00:00
|
|
|
*/
|
|
|
|
import "C"
|