TEMU  2
The Terma Emulator
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
Console.h
Go to the documentation of this file.
1 //===------------------------------------------------------------*- C++ -*-===//
2 //
3 // T-EMU: The Terma Emulator
4 // (c) Terma 2015
5 // Authors: Mattias Holm <maho (at) terma.com>
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef TEMU_MODELS_CONSOLE
10 #define TEMU_MODELS_CONSOLE
11 
12 #include <stdint.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 /* Simple interface to get recorded line data from the
19  console model. */
20 
21 uint64_t temu_consoleGetLineCount(void *Con);
22 const char* temu_consoleGetLine(void *Con, uint64_t Line);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif /* ! TEMU_MODELS_CONSOLE */
const char * temu_consoleGetLine(void *Con, uint64_t Line)
uint64_t temu_consoleGetLineCount(void *Con)