Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 894 Bytes

File metadata and controls

32 lines (26 loc) · 894 Bytes
title _com_ptr_t::Detach | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-language
ms.topic language-reference
f1_keywords
_com_ptr_t::Detach
dev_langs
C++
helpviewer_keywords
Detach method [C++]
ms.assetid 0652053e-af37-44e9-a278-2522212ebfed
author mikeblome
ms.author mblome
ms.workload
cplusplus

_com_ptr_t::Detach

Microsoft Specific

Extracts and returns the encapsulated interface pointer.

Syntax

Interface* Detach( ) throw( );  

Remarks

Extracts and returns the encapsulated interface pointer, and then clears the encapsulated pointer storage to NULL. This removes the interface pointer from encapsulation. It is up to you to call Release on the returned interface pointer.

END Microsoft Specific

See also

_com_ptr_t Class