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