Re: [Mingw-w64-public] [PATCH 1/2] fwpuclnt: update to Windows 11 exports

2022-03-09 Thread Biswapriyo Nath
> I'm not sure what I am supposed to "check" on these? Does it mean I > should copy the stdcall decoration from NtClose onto these? Yes, those sdcall decoration are same as NtClose. WfpCloseDPConfigureHandle and WfpRIOChannelClose are just wrapper of NtClose, implemented as `jmp cs:NtClose`. __

Re: [Mingw-w64-public] [PATCH 1/2] fwpuclnt: update to Windows 11 exports

2022-03-09 Thread Jeremy Drake via Mingw-w64-public
On Wed, 9 Mar 2022, Jeremy Drake via Mingw-w64-public wrote: > +WfpCloseDPConfigureHandle ; Check!!! forwards to NtClose in ntdll.dll > (ordinal 262) > +WfpRIOChannelClose ; Check!!! forwards to NtClose in ntdll.dll (ordinal 262) I'm not sure what I am supposed to "check" on these? Does it mean

[Mingw-w64-public] [PATCH 2/2] regenerate Makefile.in

2022-03-09 Thread Jeremy Drake via Mingw-w64-public
Signed-off-by: Jeremy Drake --- mingw-w64-crt/Makefile.in | 51 --- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/mingw-w64-crt/Makefile.in b/mingw-w64-crt/Makefile.in index 3609a9e6b..b9a69d83f 100644 --- a/mingw-w64-crt/Makefile.in +++ b/m

[Mingw-w64-public] [PATCH 1/2] fwpuclnt: update to Windows 11 exports

2022-03-09 Thread Jeremy Drake via Mingw-w64-public
and build import library for arm64. Signed-off-by: Jeremy Drake --- .../{libarm32 => lib-common}/fwpuclnt.def | 28 +++- mingw-w64-crt/lib32/fwpuclnt.def | 149 +- mingw-w64-crt/lib64/fwpuclnt.def | 146 - mingw-w64-crt/libarm64/Make

[Mingw-w64-public] [PATCH 0/2] Update fwpuclnt exports and build for arm64

2022-03-09 Thread Jeremy Drake via Mingw-w64-public
It turns out that "cargo" links with fwpuclnt, and efforts to get rust working for aarch64-pc-windows-gnu have hit the lack of fwpuclnt.a for arm64. While hooking that up, updated the def files to versions generated by gendef against Windows 11 versions of the DLL. The second commit is the regene

[Mingw-w64-public] MinGW-w64 vs Windows SDK

2022-03-09 Thread Vishal Subramanyam
Hey, I'm confused about the header files and libraries that MinGW-w64 provides? Does it provide just header files (along with certain libraries like libstdc++) that enable the compiler to link against Microsoft-provided DLLs (along with some MinGW-specific DLLs)? What is the relation between t