TYPEFLAGS changed to uint (#267)

pull/279/head
Mark Lechtermann 2022-01-06 16:54:05 +01:00 committed by GitHub
parent 7026a893f9
commit 8ca58cc2c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -249,7 +249,7 @@ namespace Vanara.PInvoke
/// </returns>
// https://docs.microsoft.com/en-us/windows/win32/api/oaidl/nf-oaidl-icreatetypeinfo-settypeflags HRESULT SetTypeFlags(UINT uTypeFlags);
[PreserveSig]
HRESULT SetTypeFlags([MarshalAs(UnmanagedType.U4)] System.Runtime.InteropServices.ComTypes.TYPEFLAGS uTypeFlags);
HRESULT SetTypeFlags(uint uTypeFlags);
/// <summary>Sets the documentation string displayed by type browsers.</summary>
/// <param name="pStrDoc">A brief description of the type description.</param>
@ -1197,7 +1197,7 @@ namespace Vanara.PInvoke
/// </returns>
// https://docs.microsoft.com/en-us/windows/win32/api/oaidl/nf-oaidl-icreatetypeinfo-settypeflags HRESULT SetTypeFlags(UINT uTypeFlags);
[PreserveSig]
new HRESULT SetTypeFlags([MarshalAs(UnmanagedType.U4)] System.Runtime.InteropServices.ComTypes.TYPEFLAGS uTypeFlags);
new HRESULT SetTypeFlags(uint uTypeFlags);
/// <summary>Sets the documentation string displayed by type browsers.</summary>
/// <param name="pStrDoc">A brief description of the type description.</param>