Neonode zForce(TM) SDK
DataFrame.h
Go to the documentation of this file.
1 
9 #ifndef DATAFRAME_DATAFRAME_H
10 #define DATAFRAME_DATAFRAME_H
11 
12 #ifndef ZFORCECOMMON_H
13  #error Please include "zForceCommon.h" before this file.
14 #endif
15 
18 typedef struct DataFrame DataFrame;
27 struct DataFrame
28 {
35  char * DataFrameType;
53  void ( * Destructor) (DataFrame * self);
54 };
55 
56 #endif // DATAFRAME_DATAFRAME_H
The main Connection struct.
Definition: Connection.h:56
Connection * Connection
A connection pointer is needed to associate the DataFrame with the connection.
Definition: DataFrame.h:41
Struct containing the DataFrame information.
Definition: DataFrame.h:27
uint64_t RelativeTimeoutMilliSeconds
Relative timeout in MilliSeconds.
Definition: DataFrame.h:45
char * DataFrameType
A string pointer to the type of DataFrame. For now the type is either streaming or not streaming...
Definition: DataFrame.h:35
void(* Destructor)(DataFrame *self)
Destructor for DataFrame, frees up DataFrames allocated memory.
Definition: DataFrame.h:53