shithub: cstory

ref: 4ef83526c0cff97069dd3a28778a03325e9fb32c
dir: /src/ValueView.h/

View raw version
#pragma once

#include "WindowsWrapper.h"

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);