Windows NT 4.0 source code leak
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.

57 lines
532 B

4 years ago
  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. fwentry.c
  5. Abstract:
  6. This module just jumps to the selftest code.
  7. Author:
  8. Lluis Abello (lluis) 03-Jan-1991
  9. Environment:
  10. Revision History:
  11. --*/
  12. #include "fwp.h"
  13. VOID
  14. FwSelftest(
  15. IN ULONG Cause,
  16. IN ULONG Arg1
  17. );
  18. VOID
  19. FwEntry (
  20. IN ULONG Cause,
  21. IN ULONG Arg1
  22. )
  23. /*++
  24. Routine Description:
  25. This routine jumps to the selftest code.
  26. Arguments:
  27. None.
  28. Return Value:
  29. None.
  30. --*/
  31. {
  32. FwSelftest(Cause,Arg1);
  33. }