shithub: cstory

ref: cb4bd02ab5149b879affe3ec5c5d7258b1e5294e
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);