Quellcode durchsuchen

removing UA_Client_private forward def

Stasik0 vor 10 Jahren
Ursprung
Commit
774c7920be
2 geänderte Dateien mit 2 neuen und 5 gelöschten Zeilen
  1. 0 3
      include/ua_client.h
  2. 2 2
      src/client/ua_client.c

+ 0 - 3
include/ua_client.h

@@ -26,9 +26,6 @@ typedef struct {
 } UA_ClientNetworkLayer;
 
 
-struct UA_Client_private;
-typedef struct UA_Client_private UA_Client_private;
-
 typedef struct UA_ClientConfig {
 	UA_Int32 timeout; //sync resonse timeout
 } UA_ClientConfig;

+ 2 - 2
src/client/ua_client.c

@@ -4,7 +4,7 @@
 #include "ua_types_encoding_binary.h"
 #include "ua_transport_generated.h"
 
-struct UA_Client_private {
+typedef struct UA_Client_private {
 	/*** public ***/
     /* Config */
     UA_ClientConfig config;
@@ -28,7 +28,7 @@ struct UA_Client_private {
     /* Session */
     UA_NodeId sessionId;
     UA_NodeId authenticationToken;
-};
+} UA_Client_private;
 
 UA_Client * UA_Client_new(void) {
     UA_Client_private *client = UA_malloc(sizeof(UA_Client_private));