X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=include%2Fnc_panel.h;h=60eb8112a2f011244aa73a31b9cf819953172d08;hp=ece9594736835c8f58a2a529b49ce2460e0ab0de;hb=2db461ea0b1b29c142e3000d830b520c946e385b;hpb=fc79b49bd8a9c5e4db287514cdac46e1691cf48a diff --git a/include/nc_panel.h b/include/nc_panel.h index ece95947..60eb8112 100644 --- a/include/nc_panel.h +++ b/include/nc_panel.h @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 1998-2008,2009 Free Software Foundation, Inc. * + * Copyright 2020 Thomas E. Dickey * + * Copyright 1998-2009,2017 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -31,9 +32,8 @@ * and: Thomas E. Dickey * ****************************************************************************/ - /* - * $Id: nc_panel.h,v 1.6 2009/04/11 21:17:57 tom Exp $ + * $Id: nc_panel.h,v 1.10 2020/02/02 23:34:34 tom Exp $ * * nc_panel.h * @@ -44,30 +44,37 @@ #ifndef NC_PANEL_H #define NC_PANEL_H 1 +#include +#include + #ifdef __cplusplus -extern "C" { +extern "C" +{ #endif -struct panel; /* Forward Declaration */ + struct panel; /* Forward Declaration */ -struct panelhook { - struct panel* top_panel; - struct panel* bottom_panel; - struct panel* stdscr_pseudo_panel; + struct panelhook + { + struct panel *top_panel; + struct panel *bottom_panel; + struct panel *stdscr_pseudo_panel; #if NO_LEAKS - int (*destroy)(struct panel *); + int (*destroy) (struct panel *); #endif -}; - -/* Retrieve the panelhook of the current screen */ -extern NCURSES_EXPORT(struct panelhook*) _nc_panelhook (void); + }; + struct screen; /* Forward declaration */ +/* Retrieve the panelhook of the specified screen */ + extern NCURSES_EXPORT(struct panelhook *) + _nc_panelhook (void); #if NCURSES_SP_FUNCS -extern NCURSES_EXPORT(struct panelhook*) NCURSES_SP_NAME(_nc_panelhook) (SCREEN *); + extern NCURSES_EXPORT(struct panelhook *) + NCURSES_SP_NAME(_nc_panelhook) (SCREEN *); #endif #ifdef __cplusplus } #endif -#endif /* NC_PANEL_H */ +#endif /* NC_PANEL_H */