/* Copyright (C) Magna Carta Software, Inc. 1990-1991. All Rights Reserved. C COMMUNICATIONS TOOLKIT BIOSVID.H -- Header for BIOS video driver. */ #if !defined(BIOSVID_H_INCLUDED) #define BIOSVID_H_INCLUDED #if !defined(CCTTYPE_H_INCLUDED) #include #endif WORD FCALL_ bios_cur_get_col(TERMINAL *t); WORD FCALL_ bios_cur_get_row(TERMINAL *t); short FCALL_ bios_cur_get_size(TERMINAL *t); void FCALL_ bios_cur_pos(TERMINAL *t, short col, short row); void FCALL_ bios_cur_size(TERMINAL *t, WORD size); void FCALL_ bios_cur_up(TERMINAL *t); void FCALL_ bios_ebd(TERMINAL *t, short ch, WORD att); void FCALL_ bios_ebl(TERMINAL *t, short ch, WORD att); void FCALL_ bios_ech(TERMINAL *t, short ch, WORD att, short num); void FCALL_ bios_ed(TERMINAL *t, short ch, WORD att); void FCALL_ bios_eed(TERMINAL *t, short ch, WORD att); void FCALL_ bios_eel(TERMINAL *t, short ch, WORD att); void FCALL_ bios_eil(TERMINAL *t, short ch, WORD att); short FCALL_ bios_get_crt_cols(TERMINAL *t); short FCALL_ bios_get_crt_rows(TERMINAL *t); short FCALL_ bios_getc(TERMINAL *t); short FCALL_ bios_get(TERMINAL *t, short col, short row); short FCALL_ bios_put(TERMINAL *t, short col, short row, short ch, WORD att); short FCALL_ bios_putc(TERMINAL *t, short ch, short att); void FCALL_ bios_scroll(TERMINAL *t, WORD tlc, WORD tlr, WORD brc, WORD brr, WORD att, short count); void FCALL_ bios_video(TERMINAL *t); void FCALL_ cur_off(TERMINAL *t); void FCALL_ cur_on(TERMINAL *t); #endif