Source code of Windows XP (NT5)
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

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. function.h
  5. Abstract:
  6. Functions which are OpCode specific
  7. Author:
  8. Stephane Plante
  9. Environment:
  10. Any
  11. Revision History:
  12. --*/
  13. #ifndef _FUNCTION_H_
  14. #define _FUNCTION_H_
  15. NTSTATUS
  16. FunctionField(
  17. IN PSTACK *Stack
  18. );
  19. NTSTATUS
  20. FunctionScope(
  21. IN PSTACK *Stack
  22. );
  23. NTSTATUS
  24. FunctionTest(
  25. IN PSTACK *Stack
  26. );
  27. #endif