하나 하나 알아가는 프로그래밍

IWbemServices::ExecNotificationQueryAsync method (wbemcli.h) 본문

프로그래밍/윈도우 프로그래밍

IWbemServices::ExecNotificationQueryAsync method (wbemcli.h)

Metallic 2020. 10. 14. 11:36

The IWbemServices::ExecNotificationQueryAsync method performs the same task as IWbemServices::ExecNotificationQuery except that events are supplied to the specified response handler until CancelAsyncCall is called to stop the event notification.

 

IWbemServices::ExecNotificationQueryAsync 메소드는 CancelAsyncCall이 이벤트 알림을 중지하기 위해서 호출될 때까지. 응답을 다루기 위한 특정된 이벤트를 제외한 IWbemServices::ExecNotificationQuery과 동일한 작업을 수행한다. 

(오역일 수 있음)

 

HRESULT ExecNotificationQueryAsync(
  const BSTR      strQueryLanguage,
  const BSTR      strQuery,
  long            lFlags,
  IWbemContext    *pCtx,
  IWbemObjectSink *pResponseHandler
); 

 

MS 원문

https://docs.microsoft.com/en-us/windows/win32/api/wbemcli/nf-wbemcli-iwbemservices-execnotificationqueryasync

 

IWbemServices::ExecNotificationQueryAsync (wbemcli.h) - Win32 apps

The IWbemServices::ExecNotificationQueryAsync method performs the same task as IWbemServices::ExecNotificationQuery except that events are supplied to the specified response handler until CancelAsyncCall is called to stop the event notification.

docs.microsoft.com

 

'프로그래밍 > 윈도우 프로그래밍' 카테고리의 다른 글

SetWindowPos function (winuser.h)  (0) 2020.10.08
RegEnumKeyA, RegEnumKeyExA function (winreg.h)  (0) 2020.10.06
AD, LDAP 간단 정리  (0) 2020.10.06
(MFC) GDI+ 클래스  (0) 2020.10.05
Comments