37 lines
522 B
C
37 lines
522 B
C
/*++ BUILD Version: 0001 // Increment this if a change has global effects
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Dbugdll.h
|
|
|
|
Abstract:
|
|
|
|
Prototypes and external stuctures for dbugdll.c
|
|
|
|
Author:
|
|
|
|
Kent Forschmiedt (a-kentf) 23-dec-92
|
|
|
|
Environment:
|
|
|
|
Win32, User Mode
|
|
|
|
*/
|
|
|
|
#ifndef _DBUGDLL_H
|
|
|
|
#define _DBUGDLL_H
|
|
|
|
// Debugger DLLs
|
|
|
|
#define DLL_SYMBOL_HANDLER 0
|
|
#define DLL_EXEC_MODEL 1
|
|
#define DLL_TRANSPORT 2
|
|
#define DLL_EXPR_EVAL 3
|
|
#define DLL_SOURCE_PATH 4
|
|
|
|
|
|
#endif
|