From ba5d9178dc7324a858af85774875002a074b697d Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Fri, 30 Aug 2019 12:11:07 +0900 Subject: [PATCH] Simpifly opaque struct handle to context --- cpp_impl/src/UDPConnection.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cpp_impl/src/UDPConnection.h b/cpp_impl/src/UDPConnection.h index 7cfa8b4..d1dcd1e 100644 --- a/cpp_impl/src/UDPConnection.h +++ b/cpp_impl/src/UDPConnection.h @@ -46,8 +46,7 @@ extern "C" { // Opaque struct handle to Context struct UDPC_Context; -typedef struct UDPC_Context *UDPC_PContext; -typedef UDPC_PContext UDPC_HContext; +typedef struct UDPC_Context *UDPC_HContext; typedef enum { SILENT, ERROR, WARNING, VERBOSE, INFO } UDPC_LoggingType;