Skip to content

Commit

Permalink
UA-1.05.01-2022-02-24 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
randy-armstrong committed Mar 1, 2022
1 parent 11f4015 commit d69b75a
Show file tree
Hide file tree
Showing 21 changed files with 159,154 additions and 64,327 deletions.
138 changes: 123 additions & 15 deletions AnsiC/opcua_browsenames.h

Large diffs are not rendered by default.

74 changes: 74 additions & 0 deletions AnsiC/opcua_clientapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_FindServers(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -234,6 +236,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_FindServersOnNetwork(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -373,6 +377,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_GetEndpoints(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -499,6 +505,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_RegisterServer(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -626,6 +634,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_RegisterServer2(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -792,6 +802,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_CreateSession(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -964,6 +976,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_ActivateSession(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -1099,6 +1113,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_CloseSession(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -1215,6 +1231,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_Cancel(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -1340,6 +1358,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_AddNodes(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -1470,6 +1490,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_AddReferences(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -1600,6 +1622,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_DeleteNodes(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -1730,6 +1754,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_DeleteReferences(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -1866,6 +1892,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_Browse(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -2005,6 +2033,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_BrowseNext(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -2138,6 +2168,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_TranslateBrowsePathsToNodeIds(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -2264,6 +2296,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_RegisterNodes(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -2384,6 +2418,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_UnregisterNodes(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -2530,6 +2566,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_QueryFirst(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -2675,6 +2713,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_QueryNext(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -2811,6 +2851,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_Read(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -2956,6 +2998,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_HistoryRead(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -3095,6 +3139,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_Write(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -3225,6 +3271,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_HistoryUpdate(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -3355,6 +3403,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_Call(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -3491,6 +3541,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_CreateMonitoredItems(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -3633,6 +3685,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_ModifyMonitoredItems(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -3775,6 +3829,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_SetMonitoringMode(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -3930,6 +3986,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_SetTriggering(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -4078,6 +4136,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_DeleteMonitoredItems(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -4224,6 +4284,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_CreateSubscription(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -4378,6 +4440,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_ModifySubscription(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -4523,6 +4587,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_SetPublishingMode(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -4666,6 +4732,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_Publish(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -4796,6 +4864,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_Republish(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -4927,6 +4997,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_TransferSubscriptions(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down Expand Up @@ -5060,6 +5132,8 @@ OPCUA_EXPORT OpcUa_StatusCode OpcUa_ClientApi_DeleteSubscriptions(
&pResponseType);

OpcUa_GotoErrorIfBad(uStatus);
OpcUa_GotoErrorIfTrue(pResponse == OpcUa_Null, OpcUa_BadUnexpectedError);
OpcUa_GotoErrorIfTrue(pResponseType == OpcUa_Null, OpcUa_BadUnexpectedError);

/* check for fault */
if (pResponseType->TypeId == OpcUaId_ServiceFault)
Expand Down
18 changes: 18 additions & 0 deletions AnsiC/opcua_exclusions.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
/* #define OPCUA_EXCLUDE_PublishedVariableDataType */
/* #define OPCUA_EXCLUDE_PublishedDataItemsDataType */
/* #define OPCUA_EXCLUDE_PublishedEventsDataType */
/* #define OPCUA_EXCLUDE_PublishedDataSetCustomSourceDataType */
/* #define OPCUA_EXCLUDE_DataSetWriterDataType */
/* #define OPCUA_EXCLUDE_DataSetWriterTransportDataType */
/* #define OPCUA_EXCLUDE_DataSetWriterMessageDataType */
Expand All @@ -134,19 +135,36 @@
/* #define OPCUA_EXCLUDE_FieldTargetDataType */
/* #define OPCUA_EXCLUDE_SubscribedDataSetMirrorDataType */
/* #define OPCUA_EXCLUDE_PubSubConfigurationDataType */
/* #define OPCUA_EXCLUDE_StandaloneSubscribedDataSetRefDataType */
/* #define OPCUA_EXCLUDE_StandaloneSubscribedDataSetDataType */
/* #define OPCUA_EXCLUDE_SecurityGroupDataType */
/* #define OPCUA_EXCLUDE_PubSubKeyPushTargetDataType */
/* #define OPCUA_EXCLUDE_PubSubConfiguration2DataType */
/* #define OPCUA_EXCLUDE_UadpWriterGroupMessageDataType */
/* #define OPCUA_EXCLUDE_UadpDataSetWriterMessageDataType */
/* #define OPCUA_EXCLUDE_UadpDataSetReaderMessageDataType */
/* #define OPCUA_EXCLUDE_JsonWriterGroupMessageDataType */
/* #define OPCUA_EXCLUDE_JsonDataSetWriterMessageDataType */
/* #define OPCUA_EXCLUDE_JsonDataSetReaderMessageDataType */
/* #define OPCUA_EXCLUDE_QosDataType */
/* #define OPCUA_EXCLUDE_TransmitQosDataType */
/* #define OPCUA_EXCLUDE_TransmitQosPriorityDataType */
/* #define OPCUA_EXCLUDE_ReceiveQosDataType */
/* #define OPCUA_EXCLUDE_ReceiveQosPriorityDataType */
/* #define OPCUA_EXCLUDE_DatagramConnectionTransportDataType */
/* #define OPCUA_EXCLUDE_DatagramConnectionTransport2DataType */
/* #define OPCUA_EXCLUDE_DatagramWriterGroupTransportDataType */
/* #define OPCUA_EXCLUDE_DatagramWriterGroupTransport2DataType */
/* #define OPCUA_EXCLUDE_DatagramDataSetReaderTransportDataType */
/* #define OPCUA_EXCLUDE_BrokerConnectionTransportDataType */
/* #define OPCUA_EXCLUDE_BrokerWriterGroupTransportDataType */
/* #define OPCUA_EXCLUDE_BrokerDataSetWriterTransportDataType */
/* #define OPCUA_EXCLUDE_BrokerDataSetReaderTransportDataType */
/* #define OPCUA_EXCLUDE_PubSubConfigurationRefDataType */
/* #define OPCUA_EXCLUDE_PubSubConfigurationValueDataType */
/* #define OPCUA_EXCLUDE_AliasNameDataType */
/* #define OPCUA_EXCLUDE_UserManagementDataType */
/* #define OPCUA_EXCLUDE_PriorityMappingEntryType */
/* #define OPCUA_EXCLUDE_RolePermissionType */
/* #define OPCUA_EXCLUDE_DataTypeDefinition */
/* #define OPCUA_EXCLUDE_StructureField */
Expand Down

0 comments on commit d69b75a

Please sign in to comment.