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.

17 lines
602 B

  1. #pragma once
  2. typedef DWORD (WINAPI *AUSERVICEHANDLER)(DWORD fdwControl,
  3. DWORD dwEventType,
  4. LPVOID pEventData,
  5. LPVOID lpContext);
  6. const DWORD AUSRV_VERSION = 1;
  7. typedef struct _AUENGINEINFO_VER_1
  8. {
  9. SERVICE_STATUS serviceStatus;
  10. SERVICE_STATUS_HANDLE hServiceStatus;
  11. } AUENGINEINFO_VER_1;
  12. typedef BOOL (WINAPI *AUREGSERVICEVER) (DWORD dwServiceVersion, DWORD *pdwEngineVersion);
  13. typedef BOOL (WINAPI *AUGETENGSTATUS)(void *pEngineInfo);