go-sqlite3/sqlite3_windows.go

19 lines
404 B
Go
Raw Permalink Normal View History

2019-11-18 12:03:31 +03:00
// Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
2014-08-18 11:56:31 +04:00
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
2024-01-25 16:36:27 +03:00
//go:build windows
2015-03-12 12:43:55 +03:00
// +build windows
2014-08-18 12:00:59 +04:00
package sqlite3
2012-10-28 06:58:40 +04:00
/*
#cgo CFLAGS: -I.
#cgo CFLAGS: -fno-stack-check
#cgo CFLAGS: -fno-stack-protector
#cgo CFLAGS: -mno-stack-arg-probe
#cgo windows,386 CFLAGS: -D_USE_32BIT_TIME_T
2012-10-28 06:58:40 +04:00
*/
import "C"