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.
 
 
 
 
 
 

15 lines
420 B

import "unknwn.idl";
[
object,
uuid(C1FB73D0-EC3A-4ba2-B512-8CDB9187B6D1),
helpstring("HW Event Handler Interface"),
pointer_default(unique)
]
interface IHWEventHandler : IUnknown
{
HRESULT Initialize([in] LPCWSTR pszParams);
HRESULT HandleEvent([in] const GUID guidClass, [in] LPCWSTR pszPnpID,
[in] LPCWSTR pszPnpInstID, [in] LPCWSTR pszDeviceID,
[in] LPCWSTR pszEventType);
};