Skip to content

Commit

Permalink
Fixed #1540.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebattista committed Apr 14, 2023
1 parent 33a64f6 commit de86079
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generation/WinSDK/autoTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -501,14 +501,14 @@
{
"Namespace": "Windows.Win32.Foundation",
"Name": "HLOCAL",
"ValueType": "DECLARE_HANDLE",
"ValueType": "void*",
"CloseApi": "LocalFree",
"InvalidHandleValues": [ -1, 0 ]
},
{
"Namespace": "Windows.Win32.Foundation",
"Name": "HGLOBAL",
"ValueType": "DECLARE_HANDLE",
"ValueType": "void*",
"CloseApi": "GlobalFree",
"InvalidHandleValues": [ -1, 0 ]
},
Expand Down
3 changes: 3 additions & 0 deletions scripts/ChangesSinceLastRelease.txt
Original file line number Diff line number Diff line change
Expand Up @@ -312,3 +312,6 @@ pStaticSamplers : [Const] => [Const,NativeArrayInfo(CountFieldName=NumStaticSamp
pStaticSamplers : [Const] => [Const,NativeArrayInfo(CountFieldName=NumStaticSamplers)]
pSubresourceParameters : [Const] => [Const,NativeArrayInfo(CountFieldName=SubresourceCount)]
pViewInstanceLocations : [Const] => [Const,NativeArrayInfo(CountFieldName=ViewInstanceCount)]
# Fixed #1540.
Windows.Win32.Foundation.HGLOBAL.Value...System.IntPtr => System.Void*
Windows.Win32.Foundation.HLOCAL.Value...System.IntPtr => System.Void*

0 comments on commit de86079

Please sign in to comment.