2014-08-18 16:56:31 +09: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.
|
2018-05-27 00:05:45 +02:00
|
|
|
|
2015-03-12 18:43:55 +09:00
|
|
|
// +build windows
|
2014-08-18 17:00:59 +09:00
|
|
|
|
2013-06-20 21:52:38 +01:00
|
|
|
package sqlite3
|
2012-10-27 19:58:40 -07:00
|
|
|
|
|
|
|
/*
|
2018-05-27 00:05:45 +02:00
|
|
|
#cgo CFLAGS: -I.
|
|
|
|
#cgo CFLAGS: -fno-stack-check
|
|
|
|
#cgo CFLAGS: -fno-stack-protector
|
|
|
|
#cgo CFLAGS: -mno-stack-arg-probe
|
2014-09-10 14:58:32 +09:00
|
|
|
#cgo LDFLAGS: -lmingwex -lmingw32
|
2018-05-27 00:05:45 +02:00
|
|
|
#cgo windows,386 CFLAGS: -D_USE_32BIT_TIME_T
|
2012-10-27 19:58:40 -07:00
|
|
|
*/
|
|
|
|
import "C"
|