Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
357 B

  1. // DevInfoSet.cpp : Implementation of CDevCon2App and DLL registration.
  2. #include "stdafx.h"
  3. #include "DevCon2.h"
  4. #include "DevInfoSet.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. //
  7. STDMETHODIMP CDevInfoSet::get_Handle(ULONGLONG *pVal)
  8. {
  9. HDEVINFO h = Handle();
  10. *pVal = (ULONGLONG)h;
  11. return S_OK;
  12. }