TEMU  2
The Terma Emulator
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
DataLoggers.h
Go to the documentation of this file.
1 //===-- temu-c/DataLoggers.h - Data logger functions ------------*- C++ -*-===//
2 //
3 // T-EMU: The Terma Emulator
4 // (c) Terma 2016
5 // Authors: Mattias Holm <maho (at) terma.com>
6 //
7 //===----------------------------------------------------------------------===//
8 #ifndef TEMU_SUPPORT_DATALOGGERS
9 #define TEMU_SUPPORT_DATALOGGERS
10 
11 #include <stdint.h>
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
22 TEMU_API uint64_t temu_lineDataGetLineCount(void *Obj);
23 
30 TEMU_API const char* temu_lineDataGetLine(void *Obj, uint64_t Line);
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 
36 #endif /* ! TEMU_SUPPORT_DATALOGGERS */
TEMU_API uint64_t temu_lineDataGetLineCount(void *Obj)
temu_lineDataGetLineCount TODO
TEMU_API const char * temu_lineDataGetLine(void *Obj, uint64_t Line)
temu_lineDataGetLine TODO
#define TEMU_API
Definition: Attributes.h:53