windows-nt/Source/XPSP1/NT/base/pnp/tools/devcon2/devinfoset.cpp
2020-09-26 16:20:57 +08:00

17 lines
341 B
C++

// DevInfoSet.cpp : Implementation of CDevCon2App and DLL registration.
#include "stdafx.h"
#include "DevCon2.h"
#include "DevInfoSet.h"
/////////////////////////////////////////////////////////////////////////////
//
STDMETHODIMP CDevInfoSet::get_Handle(ULONGLONG *pVal)
{
HDEVINFO h = Handle();
*pVal = (ULONGLONG)h;
return S_OK;
}