Source code of Windows XP (NT5)
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.

18 lines
268 B

  1. #pragma once
  2. extern HINSTANCE g_hInstance;
  3. typedef struct _HSH_HANDLE
  4. {
  5. INT nRefCount;
  6. HANDLE hdlInterf;
  7. } HSH_HANDLE, *PHSH_HANDLE;
  8. DWORD
  9. OpenIntfHandle(
  10. LPWSTR wszGuid,
  11. PHANDLE pIntfHdl);
  12. DWORD
  13. CloseIntfHandle(
  14. LPWSTR wszGuid);