/* * opcua_linkedList.h * * Created on: Feb 5, 2014 * Author: opcua */ #ifndef OPCUA_LINKEDLIST_H_ #define OPCUA_LINKEDLIST_H_ #include "opcua_advancedDatatypes.h"; #include "opcua_types.h" #include "opcua_builtInDatatypes.h"; typedef struct T_element { UA_ByteString *binaryData; int(*serviceImplementation)(UA_ByteString *data, UA_ByteString *response); struct T_linkedList * next; }; typedef struct T_element element; #endif /* OPCUA_LINKEDLIST_H_ */