search for: wsapoll

Displaying 8 results from an estimated 8 matches for "wsapoll".

2015 Dec 25
0
Wine release 1.9.0
The Wine development release 1.9.0 is now available. What's new in this release (see below for details): - A number of fixes that were deferred during code freeze. - WSAPoll implementation. - Standard font dialog fixes. - X11 drag&drop improvements. - Various bug fixes. The source is available from the following locations: http://dl.winehq.org/wine/source/1.9/wine-1.9.0.tar.bz2 http://mirrors.ibiblio.org/wine/source/1.9/wine-1.9.0.tar.bz2 Binary packag...
2020 Aug 18
1
Re: [PATCH nbdkit 7/9] server: Add hand-written replacement for poll for Windows.
.../common/replacements/poll.c > +#ifndef HAVE_POLL > + > +#include "poll.h" > + > +#ifdef WIN32 > + > +#include <winsock2.h> > +#include <ws2tcpip.h> > +#include <windows.h> > + > +/* Windows doesn't have poll. It has something called WSAPoll in > + * Winsock, but even MSFT admit it is broken. Gnulib contains an Is MSFT considered plural, or should that be 'admits' > + * elaborate emulation of poll written by Paolo, but it's distributed I know who you mean, but is it worth a surname? > + * under an incompatible...
2020 Aug 18
0
[PATCH nbdkit 7/9] server: Add hand-written replacement for poll for Windows.
...+#include <config.h> + +#include <stdio.h> +#include <stdlib.h> + +#ifndef HAVE_POLL + +#include "poll.h" + +#ifdef WIN32 + +#include <winsock2.h> +#include <ws2tcpip.h> +#include <windows.h> + +/* Windows doesn't have poll. It has something called WSAPoll in + * Winsock, but even MSFT admit it is broken. Gnulib contains an + * elaborate emulation of poll written by Paolo, but it's distributed + * under an incompatible license. However Winsock has select so we + * can write a simple (but slow) emulation of poll using select. + */ +int +poll (st...
2015 Nov 13
0
Wine release 1.7.55
...info when not available. msvfw32: Make it clear why a DrawDibBegin call is required. mcicda: Improve CD drive IOCTL tracing. iccvid: Implement inverted frame decompressing. iccvid: Use a separate argument for inverted decompressing. include: Add definitions related to WSAPoll(). msrle32/tests: Add uncompressed frame decompressing test. msrle32: Add support to decompress uncompressed frames. ws2_32/tests: Add WSAPoll() tests. Daniel Lehman (4): msvcp120: Implement _Thrd_sleep/yield. msvcp120: Implement _Thrd_current. msvcp120: Impleme...
2016 Sep 16
0
Wine release 1.9.19
...XInputGetKeystroke. dinput: Handle NULL effect envelope before testing its parameters. dinput: Remove trailing space from debug string. po: Update Brazilian Portuguese translation. ws2_32/tests: Add more SIO_ADDRESS_LIST_CHANGE tests. ws2_32: Fix handling of POLLHUP in WSAPoll. dinput: Fix phase conversion on periodic effects. dinput: Improve linux effect debugging. Daniel Lehman (1): msvcp140: Add _Thrd_id. David Keijser (1): kernel32: Forward CAL_RETURN_GENITIVE_NAMES to GetLocaleInfo(). Dmitry Timoshkov (10): gdiplus: Implement GdipCre...
2020 Aug 15
3
[PATCH EXPERIMENTAL nbdkit 0/2] Port to Windows using mingw.
The patches following do indeed allow you to compile nbdkit.exe, but it does not actually work yet. I'm posting this experimental series more as a work in progress and to get feedback. Note this does not require Windows itself to build or test. You can cross-compile it using mingw64-* packages on Fedora or Debian, and test it [spoiler alert: it fails] using Wine. 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