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.
33 lines
532 B
33 lines
532 B
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
event.hxx
|
|
|
|
Abstract:
|
|
|
|
This header file declares event callback routines and classes.
|
|
|
|
Author:
|
|
|
|
JasonHa
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _EVENT_HXX_
|
|
#define _EVENT_HXX_
|
|
|
|
#define INVALID_UNIQUE_STATE 0
|
|
|
|
HRESULT SetEventCallbacks(PDEBUG_CLIENT Client);
|
|
void ReleaseEventCallbacks(PDEBUG_CLIENT Client);
|
|
HRESULT EventCallbacksReady(PDEBUG_CLIENT Client);
|
|
|
|
extern BOOL gbSymbolsNotLoaded;
|
|
extern ULONG UniqueTargetState;
|
|
|
|
#endif _EVENT_HXX_
|
|
|