ref: 33c1ea8f2046d00e6a135c464a3e2bc26259e4f8
dir: /src/ValueView.h/
#pragma once
#include "WindowsWrapper.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct VALUEVIEW
{
BOOL flag;
int *px;
int *py;
int offset_y;
int value;
int count;
RECT rect;
} VALUEVIEW;
void ClearValueView(void);
void SetValueView(int *px, int *py, int value);
void ActValueView(void);
void PutValueView(int flx, int fly);
#ifdef __cplusplus
}
#endif