From fa141fc525f6f927020fd4b1bd3731dfb585ecb0 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Thu, 23 Jun 2016 15:46:12 +0200 Subject: [PATCH] Correct event is reported for DWORD-returning functions now --- lib/EAPBase/include/Module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/EAPBase/include/Module.h b/lib/EAPBase/include/Module.h index 166d49a..808352a 100644 --- a/lib/EAPBase/include/Module.h +++ b/lib/EAPBase/include/Module.h @@ -110,7 +110,7 @@ namespace eap /// inline winstd::event_fn_auto get_event_fn_auto(_In_z_ LPCSTR pszFnName) const { - return winstd::event_fn_auto(m_ep, &EAPMETHOD_TRACE_EVT_FN_CALL, &EAPMETHOD_TRACE_EVT_FN_RETURN_DWORD, pszFnName); + return winstd::event_fn_auto(m_ep, &EAPMETHOD_TRACE_EVT_FN_CALL, &EAPMETHOD_TRACE_EVT_FN_RETURN, pszFnName); } ///