| 1 | // Licensed to the .NET Foundation under one or more agreements. |
| 2 | // The .NET Foundation licenses this file to you under the MIT license. |
| 3 | // See the LICENSE file in the project root for more information. |
| 4 | |
| 5 | /*++ BUILD Version: 0000 Increment this if a change has global effects |
| 6 | |
| 7 | |
| 8 | |
| 9 | Module Name: |
| 10 | |
| 11 | dbghelp.h |
| 12 | |
| 13 | Abstract: |
| 14 | |
| 15 | This module defines the prototypes and constants required for the image |
| 16 | help routines. |
| 17 | |
| 18 | Contains debugging support routines that are redistributable. |
| 19 | |
| 20 | Revision History: |
| 21 | |
| 22 | --*/ |
| 23 | |
| 24 | #ifndef _DBGHELP_ |
| 25 | #define _DBGHELP_ |
| 26 | |
| 27 | #if _MSC_VER > 1020 |
| 28 | #pragma once |
| 29 | #endif |
| 30 | |
| 31 | // |
| 32 | // options that are set/returned by SymSetOptions() & SymGetOptions() |
| 33 | // these are used as a mask |
| 34 | // |
| 35 | #define SYMOPT_LOAD_LINES 0x00000010 |
| 36 | |
| 37 | #endif // _DBGHELP_ |
| 38 | |