NT4/private/ntos/fw/mips/fwentry.c
2020-09-30 17:12:29 +02:00

58 lines
532 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1993 Microsoft Corporation
Module Name:
fwentry.c
Abstract:
This module just jumps to the selftest code.
Author:
Lluis Abello (lluis) 03-Jan-1991
Environment:
Revision History:
--*/
#include "fwp.h"
VOID
FwSelftest(
IN ULONG Cause,
IN ULONG Arg1
);
VOID
FwEntry (
IN ULONG Cause,
IN ULONG Arg1
)
/*++
Routine Description:
This routine jumps to the selftest code.
Arguments:
None.
Return Value:
None.
--*/
{
FwSelftest(Cause,Arg1);
}