bond/kclib/KeGraph32.h
hyperassembler a0c48a991e Initial
2014-05-30 01:55:32 -07:00

20 lines
762 B
C

#ifndef _KeGraph32_h_
#define _KeGraph32_h_
#include "KeDef.h"
#include "KeGlobalVariables.h"
#define DOSGraphColumn 80
#define DOSGraphRow 25
#define DOSGraphMaxBytes 4000
#define DOSGraphBase 0xb8000
VOID KeNativeAPI _asm_KePrintHex32(ULONG32 Hex);
VOID KeNativeAPI _asm_KePrintStr32(PCHAR OffsetStr);
ULONG32 KeNativeAPI _asm_KeSetGraphPosition32(ULONG32 Row,ULONG32 Column);
VOID KeNativeAPI _asm_KeClearGraph32(VOID);
ULONG32 KeNativeAPI _asm_KeGraphRowOverflow(ULONG32 GraphPosition);
ULONG32 KeNativeAPI KeCheckGraphRowForPrint(ULONG32 GraphPosition);
ULONG32 KeNativeAPI KeCheckGraphRowForReturn(ULONG32 GraphPosition);
ULONG32 KeNativeAPI _asm_KeGetCurrentGraphPosition32(VOID);
ULONG32 KeNativeAPI KeGetCurrentGraphRow(ULONG32 GraphPosition);
#endif