You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sqlite3_opt_app_armor.go 370B

12345678910111213141516
  1. // Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
  2. // Copyright (C) 2018 G.J.R. Timmer <gjr.timmer@gmail.com>.
  3. //
  4. // Use of this source code is governed by an MIT-style
  5. // license that can be found in the LICENSE file.
  6. // +build !windows
  7. // +build sqlite_app_armor
  8. package sqlite3
  9. /*
  10. #cgo CFLAGS: -DSQLITE_ENABLE_API_ARMOR
  11. #cgo LDFLAGS: -lm
  12. */
  13. import "C"