mirror of https://github.com/tongzx/nt5src
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
17 lines
602 B
#pragma once
|
|
|
|
typedef DWORD (WINAPI *AUSERVICEHANDLER)(DWORD fdwControl,
|
|
DWORD dwEventType,
|
|
LPVOID pEventData,
|
|
LPVOID lpContext);
|
|
|
|
|
|
const DWORD AUSRV_VERSION = 1;
|
|
typedef struct _AUENGINEINFO_VER_1
|
|
{
|
|
SERVICE_STATUS serviceStatus;
|
|
SERVICE_STATUS_HANDLE hServiceStatus;
|
|
} AUENGINEINFO_VER_1;
|
|
|
|
typedef BOOL (WINAPI *AUREGSERVICEVER) (DWORD dwServiceVersion, DWORD *pdwEngineVersion);
|
|
typedef BOOL (WINAPI *AUGETENGSTATUS)(void *pEngineInfo);
|