mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
bf682eb9d1
Miguel.
12 lines
128 B
C
12 lines
128 B
C
#ifndef __INFO_H
|
|
#define __INFO_H
|
|
|
|
typedef struct {
|
|
Widget widget;
|
|
int ready;
|
|
} WInfo;
|
|
|
|
WInfo *info_new (void);
|
|
|
|
#endif
|