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.

42 lines
863 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. vststmsghandler.hxx
  5. Abstract:
  6. Declaration of handlers for messages from named pipes
  7. Brian Berkowitz [brianb] 06/02/2000
  8. TBD:
  9. Revision History:
  10. Name Date Comments
  11. brianb 06/02/2000 Created
  12. --*/
  13. #ifndef _VSTSTMSGHANDLER_H_
  14. #define _VSTSTMSGHANDLER_H_
  15. class CVsTstMsgHandlerRoutines
  16. {
  17. public:
  18. static void PrintMessage(VSTST_MSG_HDR *phdr, VOID *pPrivateData);
  19. static void HandleUnexpectedException(VSTST_MSG_HDR *phdr, VOID *pPrivateData);
  20. static void HandleFailure(VSTST_MSG_HDR *phdr, VOID *pPrivateData);
  21. static void HandleOperationFailure(VSTST_MSG_HDR *phdr, VOID *pPrivateData);
  22. static void HandleSuccess(VSTST_MSG_HDR *phdr, VOID *pPrivateData);
  23. };
  24. #endif // !DEFINED(_VSTSTMSGHANDLER_H_)