Windows2000/private/windbg64/windbg/include/makeeng.h
2020-09-30 17:12:32 +02:00

32 lines
575 B
C

/*++ BUILD Version: 0001 // Increment this if a change has global effects
*/
/*********************************************************************
File: makeeng.h
Date created: 27/8/90
Author: Tim Bell
Description:
Windows Make Engine API
Modified:
*********************************************************************/
typedef enum
{
EXEC_RESTART,
EXEC_GO,
EXEC_STEPANDGO,
EXEC_TOCURSOR,
EXEC_TRACEINTO,
EXEC_STEPOVER
} EXECTYPE;
BOOL PASCAL ExecDebuggee(EXECTYPE ExecType);