Implemented some CRTDLL string functions.
[wine/testsucceed.git] / include / progress.h
blobfdd5415f89255b13cf5a54a2c73fb85158d76376
1 /*
2 * Progress class extra info
4 * Copyright 1997 Dimitrie O. Paun
5 */
7 #ifndef __WINE_PROGRESS_H
8 #define __WINE_PROGRESS_H
10 #include "wintypes.h"
12 typedef struct
14 INT32 CurVal; /* Current progress value */
15 INT32 MinVal; /* Minimum progress value */
16 INT32 MaxVal; /* Maximum progress value */
17 INT32 Step; /* Step to use on PMB_STEPIT */
18 COLORREF ColorBar; /* Bar color */
19 COLORREF ColorBk; /* Background color */
20 HFONT32 hFont; /* Handle to font (not unused) */
21 } PROGRESS_INFO;
24 extern VOID PROGRESS_Register (VOID);
25 extern VOID PROGRESS_Unregister (VOID);
27 #endif /* __WINE_PROGRESS_H */