QueryServiceDynamicInformation function advapi32

int QueryServiceDynamicInformation(
  1. int hServiceStatus,
  2. int dwInfoLevel,
  3. Pointer<Pointer<NativeType>> ppDynamicInfo
)

Retrieves dynamic information related to the current service start.

BOOL QueryServiceDynamicInformation(
  [in] SERVICE_STATUS_HANDLE hServiceStatus,
  [in] DWORD                 dwInfoLevel,
       PVOID                 *ppDynamicInfo
);

Implementation

int QueryServiceDynamicInformation(
        int hServiceStatus, int dwInfoLevel, Pointer<Pointer> ppDynamicInfo) =>
    _QueryServiceDynamicInformation(hServiceStatus, dwInfoLevel, ppDynamicInfo);