AWin32Console-1.1: include/BWin32Console.h
// Copyright (c) 2010 - Harald Wolfsgruber
// All rights reserved.
//
// Name: AWin32Console
// Version: 1.1
// Description: ANSI escape code
// License: BSD3
// License-file: LICENSE
// Author: Harald Wolfsgruber
#ifndef H_HAS_CON_SET
#define H_HAS_CON_SET
#include <windows.h>
void SetAttr(WORD a);
void SetPos(SHORT x, SHORT y);
void SetCls();
void SetScroll(SHORT xTO, SHORT yTO, SHORT lR, SHORT tR, SHORT rR, SHORT bR);
SHORT GetPosX();
SHORT GetPosY();
SHORT GetSizeX();
SHORT GetSizeY();
WORD GetAttr();
#endif