Added a check for the existence of wine.sym before installing it.
[wine] / include / progress.h
1 /*
2  * Progress class extra info
3  *
4  * Copyright 1997 Dimitrie O. Paun
5  */
6
7 #ifndef __WINE_PROGRESS_H
8 #define __WINE_PROGRESS_H
9
10 typedef struct
11 {
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;
20
21
22 extern VOID PROGRESS_Register (VOID);
23 extern VOID PROGRESS_Unregister (VOID);
24
25 #endif  /* __WINE_PROGRESS_H */