mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-08 20:41:59 +03:00
12 lines
124 B
C
12 lines
124 B
C
#ifndef __INFO_H
|
|
#define __INFO_H
|
|
|
|
typedef struct {
|
|
Widget widget;
|
|
int ready;
|
|
} WInfo;
|
|
|
|
WInfo *info_new ();
|
|
|
|
#endif
|