mirror of https://github.com/tongzx/nt5src
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
25 lines
627 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: N C C O M . H
|
|
//
|
|
// Contents: Helper functions for doing COM things
|
|
//
|
|
// Notes:
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
#pragma once
|
|
#ifndef _NCCOM_H_
|
|
#define _NCCOM_H_
|
|
|
|
|
|
HRESULT HrMyWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout, ULONG cHandles,
|
|
LPHANDLE pHandles, LPDWORD pldwIndex);
|
|
|
|
BOOL FSupportsInterface(IUnknown * punk, REFIID piid);
|
|
|
|
#endif // _NCCOM_H_
|