20 строки
349 B
C
20 строки
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
|