opcua_linkedList.h 480 B

1234567891011121314151617181920212223242526
  1. /*
  2. * opcua_linkedList.h
  3. *
  4. * Created on: Feb 5, 2014
  5. * Author: opcua
  6. */
  7. #ifndef OPCUA_LINKEDLIST_H_
  8. #define OPCUA_LINKEDLIST_H_
  9. #include "opcua_advancedDatatypes.h";
  10. #include "opcua_types.h"
  11. #include "opcua_builtInDatatypes.h";
  12. typedef struct T_element
  13. {
  14. AD_RawMessage *binaryData;
  15. int(*serviceImplementation)(AD_RawMessage *data, AD_RawMessage *response);
  16. struct T_linkedList * next;
  17. };
  18. typedef struct T_element element;
  19. #endif /* OPCUA_LINKEDLIST_H_ */