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.

38 lines
461 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1992 - 1999
  3. Module Name:
  4. dispatch.h
  5. Abstract:
  6. Author:
  7. Michael Montague (mikemon) 11-Jun-1992
  8. Revision History:
  9. --*/
  10. #ifndef __DISPATCH_H__
  11. #define __DISPATCH_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. unsigned int
  16. DispatchToStubInC (
  17. IN RPC_DISPATCH_FUNCTION Stub,
  18. IN OUT PRPC_MESSAGE Message,
  19. OUT RPC_STATUS * ExceptionCode
  20. );
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif // __DISPATCH_H__