diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-05-08 22:31:10 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-05-08 22:31:10 +0000 |
commit | c212fa865e2055967a47ac71f46ad1216676cab1 (patch) | |
tree | fd3a61d72f4097fb8f806f1ebc458f8e527d53c7 /sbin/wsconsctl/wsconsctl.h | |
parent | fda42b5add85625d515849886a87228d10924814 (diff) |
add more display variables (for screen burner).
implement boolean type for variables.
Diffstat (limited to 'sbin/wsconsctl/wsconsctl.h')
-rw-r--r-- | sbin/wsconsctl/wsconsctl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/wsconsctl/wsconsctl.h b/sbin/wsconsctl/wsconsctl.h index 092f60d0ce5..fc8568b7995 100644 --- a/sbin/wsconsctl/wsconsctl.h +++ b/sbin/wsconsctl/wsconsctl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsctl.h,v 1.1 2000/07/01 23:52:45 mickey Exp $ */ +/* $OpenBSD: wsconsctl.h,v 1.2 2001/05/08 22:31:09 mickey Exp $ */ /* $NetBSD: wsconsctl.h 1.1 1998/12/28 14:01:17 hannken Exp $ */ /*- @@ -43,6 +43,7 @@ struct field { char *name; void *valp; #define FMT_UINT 1 /* unsigned integer */ +#define FMT_BOOL 2 /* boolean on/off */ #define FMT_KBDTYPE 101 /* keyboard type */ #define FMT_MSTYPE 102 /* mouse type */ #define FMT_DPYTYPE 103 /* display type */ |