shithub: cstory

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