Przeglądaj źródła

fix in the comment

Stasik0 10 lat temu
rodzic
commit
e879b989b7
1 zmienionych plików z 4 dodań i 3 usunięć
  1. 4 3
      include/ua_client.h

+ 4 - 3
include/ua_client.h

@@ -25,9 +25,7 @@ typedef struct {
     UA_StatusCode (*awaitResponse)(void *handle, UA_ByteString *response, UA_UInt32 timeout);
     UA_StatusCode (*awaitResponse)(void *handle, UA_ByteString *response, UA_UInt32 timeout);
 } UA_ClientNetworkLayer;
 } UA_ClientNetworkLayer;
 
 
-/*
- * The client struct contains the client config as the first parameter, so it can be successfully cast to UA_ClientConfig
- */
+
 struct UA_Client_private;
 struct UA_Client_private;
 typedef struct UA_Client_private UA_Client_private;
 typedef struct UA_Client_private UA_Client_private;
 
 
@@ -35,6 +33,9 @@ typedef struct UA_ClientConfig {
 	UA_Int32 timeout; //sync resonse timeout
 	UA_Int32 timeout; //sync resonse timeout
 } UA_ClientConfig;
 } UA_ClientConfig;
 
 
+/*
+ * This is the 'public part' of UA_Client_private
+ */
 typedef struct UA_Client {
 typedef struct UA_Client {
 	UA_ClientConfig config;
 	UA_ClientConfig config;
 } UA_Client;
 } UA_Client;