From c5826109675bdac60c6019c4379ba6652e0dd386 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 3 Oct 2016 15:19:06 +0200 Subject: [PATCH] eap_blob and eap_error wrapper classes introduced --- include/WinStd/EAP.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/WinStd/EAP.h b/include/WinStd/EAP.h index 000122dc..9c8875a7 100644 --- a/include/WinStd/EAP.h +++ b/include/WinStd/EAP.h @@ -24,6 +24,8 @@ #include #include // Must include after +#include + namespace winstd { /// @@ -44,11 +46,21 @@ namespace winstd /// struct WINSTD_API EapHostPeerFreeMemory_delete; + /// + /// EapHost BLOB wrapper class + /// + typedef std::unique_ptr WINSTD_API eap_blob; + /// /// Deleter for unique_ptr to EAP_ERROR using EapHostPeerFreeEapError /// struct WINSTD_API EapHostPeerFreeErrorMemory_delete; + /// + /// EAP_ERROR wrapper class + /// + typedef std::unique_ptr WINSTD_API eap_error; + /// /// EAP_ATTRIBUTE wrapper class ///