status-go/cmd/library/const.go

18 lines
364 B
Go
Raw Normal View History

package main
2020-06-03 06:22:05 +00:00
const prelude = `// Code generated by cmd/library to keep in sync with mobile. DO NOT EDIT.
package main
// #include <stdlib.h>
import "C"
import "unsafe"
import mobile "github.com/status-im/status-go/mobile"
func main() {}
`
const intType = "int"
const stringType = "string"
const unsafePointerType = "&{unsafe Pointer}"
const boolType = "bool"