Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 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 | |
Jim Aston | 2e1cafa | 1999-03-14 16:35:05 +0000 | [diff] [blame] | 10 | #include "windef.h" |
Michael Veksler | 3fbb8dc | 1999-02-21 18:23:26 +0000 | [diff] [blame] | 11 | |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 12 | typedef struct |
| 13 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 14 | INT CurVal; /* Current progress value */ |
| 15 | INT MinVal; /* Minimum progress value */ |
| 16 | INT MaxVal; /* Maximum progress value */ |
| 17 | INT Step; /* Step to use on PMB_STEPIT */ |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 18 | COLORREF ColorBar; /* Bar color */ |
| 19 | COLORREF ColorBk; /* Background color */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 20 | HFONT hFont; /* Handle to font (not unused) */ |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 21 | } PROGRESS_INFO; |
| 22 | |
Eric Kohl | 9d8e864 | 1998-10-24 10:49:27 +0000 | [diff] [blame] | 23 | |
| 24 | extern VOID PROGRESS_Register (VOID); |
| 25 | extern VOID PROGRESS_Unregister (VOID); |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 26 | |
| 27 | #endif /* __WINE_PROGRESS_H */ |