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.
34 lines
517 B
34 lines
517 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
analysis.h
|
|
|
|
Abstract:
|
|
|
|
This module contains interfaces and structures exported by the analysis
|
|
module.
|
|
|
|
Author:
|
|
|
|
Dave Hastings (daveh) creation-date 26-Jun-1995
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _ANALYSIS_H_
|
|
#define _ANALYSIS_H_
|
|
|
|
ULONG
|
|
GetInstructionStream(
|
|
PINSTRUCTION InstructionStream,
|
|
PULONG NumberOfInstructions,
|
|
PVOID pIntelInstruction,
|
|
PVOID pLastIntelInstruction
|
|
);
|
|
|
|
#endif
|