diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-11-21 11:45:45 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-11-21 11:45:45 +0100 |
commit | cfecf3e11017142193428e8830d8e0e8562d795b (patch) | |
tree | feba563945c738f5a7e7e85e78403ca0363d0a0f /examples/go-dashboard/src/github.com/nsf/termbox-go/syscalls_dragonfly.go | |
parent | 25b974af67d98fa19e0953194347a1260d684ef5 (diff) |
go-dashboard renaming, ignore go-mod and it's file structure
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'examples/go-dashboard/src/github.com/nsf/termbox-go/syscalls_dragonfly.go')
-rw-r--r-- | examples/go-dashboard/src/github.com/nsf/termbox-go/syscalls_dragonfly.go | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/examples/go-dashboard/src/github.com/nsf/termbox-go/syscalls_dragonfly.go b/examples/go-dashboard/src/github.com/nsf/termbox-go/syscalls_dragonfly.go new file mode 100644 index 000000000..e03624ebc --- /dev/null +++ b/examples/go-dashboard/src/github.com/nsf/termbox-go/syscalls_dragonfly.go @@ -0,0 +1,39 @@ +// Created by cgo -godefs - DO NOT EDIT +// cgo -godefs syscalls.go + +package termbox + +type syscall_Termios struct { + Iflag uint32 + Oflag uint32 + Cflag uint32 + Lflag uint32 + Cc [20]uint8 + Ispeed uint32 + Ospeed uint32 +} + +const ( + syscall_IGNBRK = 0x1 + syscall_BRKINT = 0x2 + syscall_PARMRK = 0x8 + syscall_ISTRIP = 0x20 + syscall_INLCR = 0x40 + syscall_IGNCR = 0x80 + syscall_ICRNL = 0x100 + syscall_IXON = 0x200 + syscall_OPOST = 0x1 + syscall_ECHO = 0x8 + syscall_ECHONL = 0x10 + syscall_ICANON = 0x100 + syscall_ISIG = 0x80 + syscall_IEXTEN = 0x400 + syscall_CSIZE = 0x300 + syscall_PARENB = 0x1000 + syscall_CS8 = 0x300 + syscall_VMIN = 0x10 + syscall_VTIME = 0x11 + + syscall_TCGETS = 0x402c7413 + syscall_TCSETS = 0x802c7414 +) |