29 lines
694 B
C
29 lines
694 B
C
/*
|
|
* Progress class extra info
|
|
*
|
|
* Copyright 1997 Dimitrie O. Paun
|
|
*/
|
|
|
|
#ifndef __WINE_PROGRESS_H
|
|
#define __WINE_PROGRESS_H
|
|
|
|
#include "windef.h"
|
|
#include "wingdi.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 */
|