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.
|
|
//+---------------------------------------------------------------------------
//
// 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
|