go-sqlite3-hak5/sqlite3_windows.go

14 lines
366 B
Go
Raw Normal View History

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.
2014-08-18 08:00:59 +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"