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.
40 lines
557 B
40 lines
557 B
#ifndef __IPKERN_ROUTE_H__
|
|
#define __IPKERN_ROUTE_H__
|
|
|
|
VOID
|
|
HandleRoute(
|
|
LONG lNumArgs,
|
|
PWCHAR rgpwszArgs[]
|
|
);
|
|
|
|
VOID
|
|
PrintRoute(
|
|
LONG lNumArgs,
|
|
PWCHAR rgpwszArgs[]
|
|
);
|
|
|
|
VOID
|
|
AddRoute(
|
|
LONG lNumArgs,
|
|
PWCHAR rgpwszArgs[]
|
|
);
|
|
|
|
VOID
|
|
DeleteRoute(
|
|
LONG lNumArgs,
|
|
PWCHAR rgpwszArgs[]
|
|
);
|
|
|
|
VOID
|
|
MatchRoute(
|
|
LONG lNumArgs,
|
|
PWCHAR rgpwszArgs[]
|
|
);
|
|
|
|
VOID
|
|
EnableRoute(
|
|
LONG lNumArgs,
|
|
PWCHAR rgpwszArgs[]
|
|
);
|
|
|
|
#endif // __IPKERN_ROUTE_H__
|