Check for NULL in lstrcpy* (Windows uses real exception handlers).
[wine.git] / include / progress.h
blobe26981004eaac1f6b6620532c26bbbee9f187d9c
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 "windows.h"
11 #include "commctrl.h"
13 typedef struct
15 INT32 CurVal; /* Current progress value */
16 INT32 MinVal; /* Minimum progress value */
17 INT32 MaxVal; /* Maximum progress value */
18 INT32 Step; /* Step to use on PMB_STEPIT */
19 COLORREF ColorBar; /* Bar color */
20 COLORREF ColorBk; /* Background color */
21 HFONT32 hFont; /* Handle to font (not unused) */
22 } PROGRESS_INFO;
25 extern VOID PROGRESS_Register (VOID);
26 extern VOID PROGRESS_Unregister (VOID);
28 #endif /* __WINE_PROGRESS_H */