mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
11 lines
124 B
C
11 lines
124 B
C
#ifndef __INFO_H
|
|
#define __INFO_H
|
|
|
|
typedef struct {
|
|
Widget widget;
|
|
int ready;
|
|
} WInfo;
|
|
|
|
WInfo *info_new ();
|
|
|
|
#endif
|