blob: cba2592e94ac45cd118a23ae654a8da210817998 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/** \file info.h
* \brief Header: panel managing
*/
#ifndef MC__INFO_H
#define MC__INFO_H
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
struct WInfo;
typedef struct WInfo WInfo;
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
WInfo *info_new (int y, int x, int lines, int cols);
/*** inline functions ****************************************************************************/
#endif /* MC__INFO_H */
|