TEMU  2
The Terma Emulator
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
Reset.h
Go to the documentation of this file.
1 //===------------------------------------------------------------*- C++ -*-===//
2 //
3 // T-EMU: The Terma Emulator
4 // (c) Terma 2017
5 // Authors: Mattias Holm <maho (at) terma.com>
6 //
7 //===----------------------------------------------------------------------===//
8 
9 /*
10  * EXPERIMENTAL INTERFACE: This interface is undergoing public review
11  */
12 #ifndef TEMU_MODELS_RESET_H
13 #define TEMU_MODELS_RESET_H
14 
15 #include "temu-c/Support/Objsys.h"
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 typedef struct {
22  void (*reset)(void *Obj, int Type);
24 
25 #define TEMU_RESET_IFACE_TYPE "ResetIface"
26 TEMU_IFACE_REFERENCE_TYPE(temu_Reset);
27 
28 #ifdef __cplusplus
29 }
30 #endif
31 
32 #endif /* !TEMU_MODELS_RESET_H */
#define TEMU_IFACE_REFERENCE_TYPE(N)
Definition: Objsys.h:129