mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00: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
|