mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +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
|