Neonode zForce(TM) SDK
DataFrame.h
Go to the documentation of this file.
1 
8 #ifndef DATAFRAME_DATAFRAME_H
9 #define DATAFRAME_DATAFRAME_H 1
10 
11 #ifndef ZFORCECOMMON_H
12  #error Please include "zForceCommon.h" before this file.
13 #endif // ZFORCECOMMON_H
17 typedef struct DataFrame DataFrame;
24 struct DataFrame
25 {
32  char * DataFrameType;
54  void (* Destructor) (DataFrame * self);
55 };
56 
57 #endif // DATAFRAME_DATAFRAME_H
The main Connection struct.
Definition: Connection.h:66
Struct containing the DataFrame information.
Definition: DataFrame.h:25
uint64_t RelativeTimeoutMilliSeconds
Relative timeout in MilliSeconds.
Definition: DataFrame.h:44
Connection * Connection
A Connection pointer that associates the DataFrame with the Connection.
Definition: DataFrame.h:38
char * DataFrameType
A string pointer to the type of DataFrame.
Definition: DataFrame.h:32
void(* Destructor)(DataFrame *self)
Destructor for DataFrame.
Definition: DataFrame.h:54