26 lines
604 B
C
26 lines
604 B
C
/*
|
|
* Progress class extra info
|
|
*
|
|
* Copyright 1997 Dimitrie O. Paun
|
|
*/
|
|
|
|
#ifndef __WINE_PROGRESS_H
|
|
#define __WINE_PROGRESS_H
|
|
|
|
#include "windows.h"
|
|
#include "commctrl.h"
|
|
|
|
typedef struct
|
|
{
|
|
INT32 CurVal; /* Current progress value */
|
|
INT32 MinVal; /* Minimum progress value */
|
|
INT32 MaxVal; /* Maximum progress value */
|
|
INT32 Step; /* Step to use on PMB_STEPIT */
|
|
COLORREF ColorBar; /* Bar color */
|
|
COLORREF ColorBk; /* Background color */
|
|
} PROGRESS_INFO;
|
|
|
|
extern void PROGRESS_Register (void);
|
|
|
|
#endif /* __WINE_PROGRESS_H */
|