mirror of https://github.com/tongzx/nt5src
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.
44 lines
472 B
44 lines
472 B
/*++
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
function.h
|
|
|
|
Abstract:
|
|
|
|
Functions which are OpCode specific
|
|
|
|
Author:
|
|
|
|
Stephane Plante
|
|
|
|
Environment:
|
|
|
|
|
|
Any
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _FUNCTION_H_
|
|
#define _FUNCTION_H_
|
|
|
|
NTSTATUS
|
|
FunctionField(
|
|
IN PSTACK *Stack
|
|
);
|
|
|
|
NTSTATUS
|
|
FunctionScope(
|
|
IN PSTACK *Stack
|
|
);
|
|
|
|
NTSTATUS
|
|
FunctionTest(
|
|
IN PSTACK *Stack
|
|
);
|
|
|
|
#endif
|