Skip to content

Commit

Permalink
Fixed #1271.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebattista committed Mar 6, 2023
1 parent 6d64911 commit cb873b6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
15 changes: 15 additions & 0 deletions generation/WinSDK/manual/Com.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using System;
using System.Runtime.InteropServices;
using Windows.Win32.Interop;
using static Windows.Win32.UI.Controls.Apis;

namespace Windows.Win32.System.Com
{
public static unsafe partial class Apis
{
[NativeTypeName("PWSTR")]
public const int COLE_DEFAULT_PRINCIPAL = -1;
[NativeTypeName("void*")]
public const int COLE_DEFAULT_AUTHINFO = -1;
}
}
3 changes: 3 additions & 0 deletions scripts/ChangesSinceLastRelease.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1614,3 +1614,6 @@ Windows.Win32.UI.Controls.RichEdit.IRichEditOle.ImportDataObject : hMetaPict...I
Windows.Win32.UI.Controls.RichEdit.IRichEditOleCallback.QueryAcceptData : hMetaPict...IntPtr => HGLOBAL
Windows.Win32.Web.MsHtml.IMarkupServices.ParseGlobal : hglobalHTML...IntPtr => HGLOBAL
Windows.Win32.Web.MsHtml.IMarkupServices2.ParseGlobalEx : hglobalHTML...IntPtr => HGLOBAL
# Fixed #1271.
Windows.Win32.System.Com.Apis.COLE_DEFAULT_AUTHINFO added
Windows.Win32.System.Com.Apis.COLE_DEFAULT_PRINCIPAL added

0 comments on commit cb873b6

Please sign in to comment.