IHomeGroup::IsMember 方法 (shobjidl_core.h)
确定本地计算机是否是家庭组的成员。
语法
HRESULT IsMember(
[out] BOOL *member
);
参数
[out] member
类型: BOOL*
当此方法成功返回时,如果本地计算机是家庭组的成员,则会收到 TRUE ;否则为 FALSE。
返回值
类型: HRESULT
如果该方法成功,则返回 S_OK。 否则,将返回 HRESULT 错误代码。
注解
以下代码片段演示如何创建 IHomeGroup 实例并调用 IHomeGroup::IsMember。
#include "shobjidl.h"
#include "atlbase.h" // For COM smart pointers
CComPtr<IHomeGroup> spHomeGroup;
HRESULT hr = S_OK;
BOOL fIsHGMember = FALSE;
// Initialize the COM subsystem.
hr = CoInitialize(NULL);
if (FAILED(hr)) return hr;
// Create an instance of IHomeGroup.
hr = CoCreateInstance(CLSID_HomeGroup,
NULL,
CLSCTX_INPROC_SERVER,
IID_PPV_ARGS(&spHomeGroup));
if (FAILED(hr)) return hr;
// fIsHGMember receives the value TRUE if the local computer is a member of a
// HomeGroup, or FALSE if the computer is not a HomeGroup member.
hr = spHomeGroup->IsMember(&fIsHGMember);
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 7 [仅限桌面应用] |
最低受支持的服务器 | Windows Server 2008 R2 [仅限桌面应用] |
目标平台 | Windows |
标头 | shobjidl_core.h (包括 Shobjidl.h) |