0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2025-06-04 01:10:35 +00:00
Files
go-sqlite3/sqlite3_windows.go

19 lines
419 B
Go
Raw Permalink Normal View History

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.
2015-03-12 18:43:55 +09:00
// +build windows
2014-08-18 17:00:59 +09:00
package sqlite3
2012-10-27 19:58:40 -07: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
#cgo windows,386 CFLAGS: -D_USE_32BIT_TIME_T
2012-10-27 19:58:40 -07:00
*/
import "C"