search for: getconsolemod

Displaying 7 results from an estimated 7 matches for "getconsolemod".

Did you mean: getconsolemode
2017 Jun 14
2
Using LLD to create a .lib from a .def
...ffer::getMemBuffer(buf_ptr(def_contents)); MemoryBufferRef mbref(*mem_buf); lld::coff::parseModuleDefs(mbref); lld::coff::Config->OutputFile = buf_ptr(dll_path); lld::coff::writeImportLibrary(); } Then I give it def_contents that looks like: LIBRARY kernel32 EXPORTS ExitProcess GetConsoleMode GetStdHandle GetFileInformationByHandleEx WriteFile GetLastError with dll_path set to ./zig-cache/all.dll. This generates ./zig-cache/all.lib. The generated LLVM IR looks like: ; Function Attrs: noreturn nounwind declare void @ExitProcess(i32) #6 ; Function Attrs: nounwind declare i1 @GetConso...
2017 Jun 15
2
Using LLD to create a .lib from a .def
...:coff::parseModuleDefs(mbref); >> lld::coff::Config->OutputFile = buf_ptr(dll_path); >> lld::coff::writeImportLibrary(); >> } >> >> >> Then I give it def_contents that looks like: >> LIBRARY kernel32 >> EXPORTS >> ExitProcess >> GetConsoleMode >> GetStdHandle >> GetFileInformationByHandleEx >> WriteFile >> GetLastError >> >> >> with dll_path set to ./zig-cache/all.dll. This generates >> ./zig-cache/all.lib. >> >> The generated LLVM IR looks like: >> >> ; Function At...
2017 Jun 16
2
Using LLD to create a .lib from a .def
...File = buf_ptr(dll_path); >>>> lld::coff::writeImportLibrary(); >>>> } >>>> >>>> >>>> Then I give it def_contents that looks like: >>>> LIBRARY kernel32 >>>> EXPORTS >>>> ExitProcess >>>> GetConsoleMode >>>> GetStdHandle >>>> GetFileInformationByHandleEx >>>> WriteFile >>>> GetLastError >>>> >>>> >>>> with dll_path set to ./zig-cache/all.dll. This generates >>>> ./zig-cache/all.lib. >>>> &g...
2020 Jul 17
0
Wine release 5.13
...: Use IOCTL_CONDRV_SET_OUTPUT_INFO in WINECON_SetConfig. wineconsole: Use IOCTL_CONDRV_SET_OUTPUT_INFO in WINECON_SetColors. server: Remove no longer used set_console_output_info request. server: Introduce IOCTL_CONDRV_GET_MODE ioctl. kernelbase: Use IOCTL_CONDRV_GET_MODE in GetConsoleMode. kernel32: Use IOCTL_CONDRV_GET_MODE in VerifyConsoleIoHandle. server: Introduce IOCTL_CONDRV_SET_MODE ioctl. kernelbase: Use IOCTL_CONDRV_SET_MODE in SetConsoleMode. server: Remove no longer needed get_console_mode and set_console_mode requests. server: Introduce IOC...
2019 Jan 14
6
[PATCH nbdkit incomplete 0/5] Port to Windows.
This is an incomplete port to Windows. Currently the server compiles and starts up successfully, but goes into an infinite loop when you connect to it. Nevertheless I think the approach is ready for feedback. This being Windows the changes go quite deep. Rich.
2020 Aug 18
15
[PATCH nbdkit 0/9] Port to Windows.
Also available here: https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw This is the port to Windows using native Windows APIs (not MSYS or Cygwin). This patch series is at the point where it basically now works. I can run the server with the memory plugin, and access it remotely using guestfish, creating filesystems and so on without any apparent problems. Nevertheless there are many
2020 Aug 20
15
[PATCH nbdkit 0/13] Port to Windows without using a separate library.
Also available here: https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw-nolib After a lot of work I have made the port to Windows work without using a separate library. Instead, on Windows only, we build an "import library" (library of stubs) which resolves references to nbdkit_* functions in the main program and fixes up the plugin, basically the first technique outlined in