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.

43 lines
622 B

  1. /*++
  2. Copyright (c) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. status.h
  5. Abstract:
  6. defines for status handlers
  7. Author:
  8. Charlie Wickham (charlwi) 20-Jun-1996
  9. Revision History:
  10. --*/
  11. #ifndef _STATUS_
  12. #define _STATUS_
  13. /* Prototypes */
  14. VOID
  15. ClStatusIndication(
  16. IN NDIS_HANDLE ProtocolBindingContext,
  17. IN NDIS_STATUS GeneralStatus,
  18. IN PVOID StatusBuffer,
  19. IN UINT StatusBufferSize
  20. );
  21. VOID
  22. ClStatusIndicationComplete(
  23. IN NDIS_HANDLE BindingContext
  24. );
  25. /* End Prototypes */
  26. #endif /* _STATUS_ */
  27. /* end status.h */