Don't hang on the last child if it's not wanted.
[wine/gsoc_dplay.git] / include / progress.h
blob2d506f253c1f7a090b1db8dfcb07e60040083a0a
1 /*
2 * Progress class extra info
4 * Copyright 1997 Dimitrie O. Paun
5 */
7 #ifndef __WINE_PROGRESS_H
8 #define __WINE_PROGRESS_H
10 typedef struct
12 INT32 CurVal; /* Current progress value */
13 INT32 MinVal; /* Minimum progress value */
14 INT32 MaxVal; /* Maximum progress value */
15 INT32 Step; /* Step to use on PMB_STEPIT */
16 COLORREF ColorBar; /* Bar color */
17 COLORREF ColorBk; /* Background color */
18 HFONT32 hFont; /* Handle to font (not unused) */
19 } PROGRESS_INFO;
22 extern VOID PROGRESS_Register (VOID);
23 extern VOID PROGRESS_Unregister (VOID);
25 #endif /* __WINE_PROGRESS_H */