Added `UseX64` tag to projects where x64/x86 makes a difference to structures.

pull/363/head
David Hall 2022-12-19 18:49:55 -07:00
parent 7af4bc6b03
commit 4a406c0518
4 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<ProjectExtensions>
<SupportedDlls>DbgHelp.dll;ImageHlp.dll</SupportedDlls>
<UseX64>true</UseX64>
</ProjectExtensions>
<PropertyGroup>
<Description>PInvoke API (methods, structures and constants) imported from Windows DbgHelp.dll.</Description>

View File

@ -2,6 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<ProjectExtensions>
<SupportedDlls>iphlpapi.dll</SupportedDlls>
<UseX64>true</UseX64>
</ProjectExtensions>
<PropertyGroup>
<Description>PInvoke API (methods, structures and constants) imported from Windows IpHlpApi.dll.</Description>

View File

@ -2,6 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<ProjectExtensions>
<SupportedDlls>ntdll.dll</SupportedDlls>
<UseX64>true</UseX64>
</ProjectExtensions>
<PropertyGroup>
<Description>PInvoke API (methods, structures and constants) imported from Windows NtDll.dll.</Description>

View File

@ -2,6 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<ProjectExtensions>
<SupportedDlls>ws2_32.dll</SupportedDlls>
<UseX64>true</UseX64>
</ProjectExtensions>
<PropertyGroup>
<Description>PInvoke API (methods, structures and constants) for WinSock and WinSock2 imported from Windows Ws2_32.dll.</Description>