diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 20:22:09 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 20:22:09 +0100 |
| commit | 5a8dbc6347b3541e84fe669b22c17ad3b715e258 (patch) | |
| tree | b148c450939688caaaeb4adac6f2faa1eaffe649 /vendor/github.com/nsf/termbox-go/syscalls_dragonfly.go | |
| download | qwe-editor-5a8dbc6347b3541e84fe669b22c17ad3b715e258.tar.gz | |
Engage!
Diffstat (limited to 'vendor/github.com/nsf/termbox-go/syscalls_dragonfly.go')
| -rw-r--r-- | vendor/github.com/nsf/termbox-go/syscalls_dragonfly.go | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/vendor/github.com/nsf/termbox-go/syscalls_dragonfly.go b/vendor/github.com/nsf/termbox-go/syscalls_dragonfly.go new file mode 100644 index 0000000..e03624e --- /dev/null +++ b/vendor/github.com/nsf/termbox-go/syscalls_dragonfly.go | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | // Created by cgo -godefs - DO NOT EDIT | ||
| 2 | // cgo -godefs syscalls.go | ||
| 3 | |||
| 4 | package termbox | ||
| 5 | |||
| 6 | type syscall_Termios struct { | ||
| 7 | Iflag uint32 | ||
| 8 | Oflag uint32 | ||
| 9 | Cflag uint32 | ||
| 10 | Lflag uint32 | ||
| 11 | Cc [20]uint8 | ||
| 12 | Ispeed uint32 | ||
| 13 | Ospeed uint32 | ||
| 14 | } | ||
| 15 | |||
| 16 | const ( | ||
| 17 | syscall_IGNBRK = 0x1 | ||
| 18 | syscall_BRKINT = 0x2 | ||
| 19 | syscall_PARMRK = 0x8 | ||
| 20 | syscall_ISTRIP = 0x20 | ||
| 21 | syscall_INLCR = 0x40 | ||
| 22 | syscall_IGNCR = 0x80 | ||
| 23 | syscall_ICRNL = 0x100 | ||
| 24 | syscall_IXON = 0x200 | ||
| 25 | syscall_OPOST = 0x1 | ||
| 26 | syscall_ECHO = 0x8 | ||
| 27 | syscall_ECHONL = 0x10 | ||
| 28 | syscall_ICANON = 0x100 | ||
| 29 | syscall_ISIG = 0x80 | ||
| 30 | syscall_IEXTEN = 0x400 | ||
| 31 | syscall_CSIZE = 0x300 | ||
| 32 | syscall_PARENB = 0x1000 | ||
| 33 | syscall_CS8 = 0x300 | ||
| 34 | syscall_VMIN = 0x10 | ||
| 35 | syscall_VTIME = 0x11 | ||
| 36 | |||
| 37 | syscall_TCGETS = 0x402c7413 | ||
| 38 | syscall_TCSETS = 0x802c7414 | ||
| 39 | ) | ||
