1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00
wine/include/progress.h
1999-03-14 16:35:05 +00:00

28 lines
674 B
C

/*
* Progress class extra info
*
* Copyright 1997 Dimitrie O. Paun
*/
#ifndef __WINE_PROGRESS_H
#define __WINE_PROGRESS_H
#include "windef.h"
typedef struct
{
INT CurVal; /* Current progress value */
INT MinVal; /* Minimum progress value */
INT MaxVal; /* Maximum progress value */
INT Step; /* Step to use on PMB_STEPIT */
COLORREF ColorBar; /* Bar color */
COLORREF ColorBk; /* Background color */
HFONT hFont; /* Handle to font (not unused) */
} PROGRESS_INFO;
extern VOID PROGRESS_Register (VOID);
extern VOID PROGRESS_Unregister (VOID);
#endif /* __WINE_PROGRESS_H */