mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-08 20:41:59 +03:00
7f7bc452e3
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
20 lines
349 B
C
20 lines
349 B
C
|
|
/** \file main-widgets.h
|
|
* \brief Header: provides definitions for some widgets
|
|
*/
|
|
|
|
#ifndef MC_MAIN_WIDGETS_H
|
|
#define MC_MAIN_WIDGETS_H
|
|
|
|
#include "widget.h"
|
|
#include "dialog.h"
|
|
|
|
extern WButtonBar *the_bar;
|
|
extern WLabel *the_prompt;
|
|
extern WLabel *the_hint;
|
|
extern Dlg_head *midnight_dlg;
|
|
|
|
extern struct WMenuBar *the_menubar;
|
|
|
|
#endif
|