diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-12-03 05:17:59 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-12-03 05:17:59 +0000 |
commit | 7c742f381e7808d0b12c17b534305751f3ebb0cb (patch) | |
tree | 107e7dced85dc3de5216ee99d054dd38922d28cc /lib/libpanel/panel.h | |
parent | 600477a0b0b78aeded717538f05df29039a4c6b0 (diff) |
merge of ncurses-4.1-971129
Diffstat (limited to 'lib/libpanel/panel.h')
-rw-r--r-- | lib/libpanel/panel.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libpanel/panel.h b/lib/libpanel/panel.h index 2f917827459..e371ed84085 100644 --- a/lib/libpanel/panel.h +++ b/lib/libpanel/panel.h @@ -1,3 +1,4 @@ +/* $OpenBSD: panel.h,v 1.3 1997/12/03 05:17:57 millert Exp $ */ /*************************************************************************** * COPYRIGHT NOTICE * @@ -37,7 +38,7 @@ typedef struct panel int wendx; struct panel *below; struct panel *above; - const void *user; + NCURSES_CONST void *user; struct panelcons *obscure; } PANEL; @@ -56,8 +57,8 @@ extern int bottom_panel(PANEL *); extern PANEL *new_panel(WINDOW *); extern PANEL *panel_above(const PANEL *); extern PANEL *panel_below(const PANEL *); -extern int set_panel_userptr(PANEL *,const void *); -extern const void* panel_userptr(const PANEL *); +extern int set_panel_userptr(PANEL *, NCURSES_CONST void *); +extern NCURSES_CONST void* panel_userptr(const PANEL *); extern int move_panel(PANEL *, int, int); extern int replace_panel(PANEL *,WINDOW *); extern int panel_hidden(const PANEL *); |