WindowsXP/base/pnp/tools/devcon2/devinfoset.cpp
2025-04-27 07:49:33 -04:00

17 lines
357 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;
}