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.

25 lines
627 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: N C C O M . H
  7. //
  8. // Contents: Helper functions for doing COM things
  9. //
  10. // Notes:
  11. //
  12. //----------------------------------------------------------------------------
  13. #pragma once
  14. #ifndef _NCCOM_H_
  15. #define _NCCOM_H_
  16. HRESULT HrMyWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout, ULONG cHandles,
  17. LPHANDLE pHandles, LPDWORD pldwIndex);
  18. BOOL FSupportsInterface(IUnknown * punk, REFIID piid);
  19. #endif // _NCCOM_H_