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.
37 lines
776 B
37 lines
776 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: E V T R Q S T . H
|
|
//
|
|
// Contents: External functions exposed by the event handling code
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: danielwe 14 Aug 2000
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#ifndef _EVTRQST_H
|
|
#define _EVTRQST_H
|
|
|
|
DWORD WINAPI
|
|
DwHandleEventRequest(
|
|
LPVOID lpParameter);
|
|
|
|
DWORD
|
|
DwHandleSubscribeMethod(
|
|
LPEXTENSION_CONTROL_BLOCK pecb);
|
|
|
|
DWORD
|
|
DwHandleUnSubscribeMethod(
|
|
LPEXTENSION_CONTROL_BLOCK pecb);
|
|
|
|
BOOL
|
|
FParseCallbackUrl(LPCSTR szaCallbackUrl, DWORD *pcszOut,
|
|
LPWSTR **prgszOut);
|
|
|
|
#endif //!_EVTRQST_H
|