Tellurium Plugin C API  1.0.0
Plugin Framework for Tellurium
 All Data Structures Files Functions Variables Typedefs Enumerations Macros Groups Pages
telplugins_types.h
Go to the documentation of this file.
1 
42 #ifndef telplugins_typesH
43 #define telplugins_typesH
44 #include "telplugins_settings.h"
45 
46 #if defined(__cplusplus)
47 namespace tlpc { extern "C" {
48 #endif
49 
51 typedef void* TELHandle;
57 typedef void (event_cc *PluginEvent)(void*, void*);
58 
60 typedef enum {jtLoadModel, jtSimulate} RRJobType;
61 
62 
65 typedef struct RRInstanceList
66 {
67  int Count;
68  TELHandle* Handle;
69  void* RRList;
74 typedef struct RRCCode
75 {
76  char* Header;
77  char* Source;
79 } *RRCCodePtr;
84 #if defined( __cplusplus)
85 } }//Namespace
86 #endif
87 
88 #endif