Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing UNDNAME_ flags #351

Merged
merged 1 commit into from
Jun 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions sources/Interop/Windows/Windows/um/DbgHelp/Windows.Manual.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,25 @@ public static unsafe partial class Windows

[NativeTypeName("#define NONGAMESPARTITIONS WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_PKG_WER")]
public const int NONGAMESPARTITIONS = 1;

/// <summary>RESERVED.</summary>
public const int UNDNAME_RESERVED1 = 0x0020;

/// <summary>RESERVED.</summary>
public const int UNDNAME_RESERVED2 = 0x0040;

/// <summary>Input is just a type encoding; composes an abstract declarator.</summary>
public const int UNDNAME_TYPE_ONLY = 0x2000;

/// <summary>The real template parameters are available.</summary>
public const int UNDNAME_HAVE_PARAMETERS = 0x4000;

/// <summary>Suppresses enum/class/struct/union.</summary>
public const int UNDNAME_NO_ECSU = 0x8000;

/// <summary>Suppresses check for valid identifier characters.</summary>
public const int UNDNAME_NO_IDENT_CHAR_CHECK = 0x10000;

/// <summary>Does not include ptr64 in output.</summary>
public const int UNDNAME_NO_PTR64 = 0x20000;
}