Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
vststmsghandler.hxx
Abstract:
Declaration of handlers for messages from named pipes
Brian Berkowitz [brianb] 06/02/2000
TBD:
Revision History:
Name Date Comments brianb 06/02/2000 Created
--*/
#ifndef _VSTSTMSGHANDLER_H_
#define _VSTSTMSGHANDLER_H_
class CVsTstMsgHandlerRoutines { public:
static void PrintMessage(VSTST_MSG_HDR *phdr, VOID *pPrivateData); static void HandleUnexpectedException(VSTST_MSG_HDR *phdr, VOID *pPrivateData); static void HandleFailure(VSTST_MSG_HDR *phdr, VOID *pPrivateData); static void HandleOperationFailure(VSTST_MSG_HDR *phdr, VOID *pPrivateData); static void HandleSuccess(VSTST_MSG_HDR *phdr, VOID *pPrivateData); };
#endif // !DEFINED(_VSTSTMSGHANDLER_H_)
|