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.

14 lines
420 B

  1. import "unknwn.idl";
  2. [
  3. object,
  4. uuid(C1FB73D0-EC3A-4ba2-B512-8CDB9187B6D1),
  5. helpstring("HW Event Handler Interface"),
  6. pointer_default(unique)
  7. ]
  8. interface IHWEventHandler : IUnknown
  9. {
  10. HRESULT Initialize([in] LPCWSTR pszParams);
  11. HRESULT HandleEvent([in] const GUID guidClass, [in] LPCWSTR pszPnpID,
  12. [in] LPCWSTR pszPnpInstID, [in] LPCWSTR pszDeviceID,
  13. [in] LPCWSTR pszEventType);
  14. };