From 29a9d1d69fce285257cbf95ba5e8cda5081ea346 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Thu, 10 Feb 2022 12:12:25 +0100 Subject: [PATCH] Update documentation Although, most of the Windows handles may be duplicated with DuplicateHandle(), this requires knowledge of the processes, desired access and what not. The dplhandle<> supports only trivial duplication. Hence win_handle is not a child of dplhandle<>, but handle<> instead. Signed-off-by: Simon Rozman --- include/WinStd/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/WinStd/Common.h b/include/WinStd/Common.h index f82f776b..dec421f8 100644 --- a/include/WinStd/Common.h +++ b/include/WinStd/Common.h @@ -859,7 +859,7 @@ namespace winstd const T handle::invalid = INVAL; /// - /// Base abstract template class to support object handle keeping for objects that support handle duplication + /// Base abstract template class to support object handle keeping for objects that support trivial handle duplication /// template class dplhandle : public handle