Skip to content

Commit

Permalink
Fixed #561.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebattista committed Apr 17, 2023
1 parent 451f8d6 commit fb6dcb2
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
7 changes: 7 additions & 0 deletions generation/WinSDK/autoTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -1911,5 +1911,12 @@
"ValueType": "DECLARE_HANDLE",
"InvalidHandleValues": [ -1, 0 ],
"NativeTypeDef": true
},
{
"Namespace": "Windows.Win32.System.Memory",
"Name": "MEMORY_MAPPED_VIEW_ADDRESS",
"ValueType": "void*",
"InvalidHandleValues": [ 0 ],
"NativeTypeDef": false
}
]
12 changes: 11 additions & 1 deletion generation/WinSDK/emitter.settings.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -1566,4 +1566,14 @@ D3D12_STREAM_OUTPUT_DESC::pBufferStrides=[NativeArrayInfo(CountFieldName = "NumS
D3D12_STREAM_OUTPUT_DESC::pSODeclaration=[NativeArrayInfo(CountFieldName = "NumEntries")]
D3D12_VIEW_INSTANCING_DESC::pViewInstanceLocations=[NativeArrayInfo(CountFieldName = "ViewInstanceCount")]
CreatePipe::hReadPipe=[IgnoreIfReturn("0")]
CreatePipe::hWritePipe=[IgnoreIfReturn("0")]
CreatePipe::hWritePipe=[IgnoreIfReturn("0")]
MapViewOfFile::return=MEMORY_MAPPED_VIEW_ADDRESS
MapViewOfFile3::return=MEMORY_MAPPED_VIEW_ADDRESS
MapViewOfFile3FromApp::return=MEMORY_MAPPED_VIEW_ADDRESS
MapViewOfFileEx::return=MEMORY_MAPPED_VIEW_ADDRESS
MapViewOfFileExNuma::return=MEMORY_MAPPED_VIEW_ADDRESS
MapViewOfFileFromApp::return=MEMORY_MAPPED_VIEW_ADDRESS
MapViewOfFileNuma2::return=MEMORY_MAPPED_VIEW_ADDRESS
UnmapViewOfFile::lpBaseAddress=MEMORY_MAPPED_VIEW_ADDRESS
UnmapViewOfFile2::BaseAddress=MEMORY_MAPPED_VIEW_ADDRESS
UnmapViewOfFileEx::BaseAddress=MEMORY_MAPPED_VIEW_ADDRESS
12 changes: 12 additions & 0 deletions scripts/ChangesSinceLastRelease.txt
Original file line number Diff line number Diff line change
Expand Up @@ -602,3 +602,15 @@ Windows.Win32.System.SystemServices.Apis.CONTEXT_KERNEL_DEBUGGER removed
Windows.Win32.System.SystemServices.Apis.CONTEXT_RET_TO_GUEST removed
Windows.Win32.System.SystemServices.Apis.CONTEXT_SERVICE_ACTIVE removed
Windows.Win32.System.SystemServices.Apis.CONTEXT_UNWOUND_TO_CALL removed
# Fixed #561.
Windows.Win32.System.Memory.Apis.MapViewOfFile : return...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.MapViewOfFile3 : return...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.MapViewOfFile3FromApp : return...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.MapViewOfFileEx : return...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.MapViewOfFileExNuma : return...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.MapViewOfFileFromApp : return...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.MapViewOfFileNuma2 : return...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.UnmapViewOfFile : lpBaseAddress...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.UnmapViewOfFile2 : BaseAddress...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.Apis.UnmapViewOfFileEx : BaseAddress...Void* => MEMORY_MAPPED_VIEW_ADDRESS
Windows.Win32.System.Memory.MEMORY_MAPPED_VIEW_ADDRESS added

0 comments on commit fb6dcb2

Please sign in to comment.