mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
BUg 799076: Add temporary error definitions to media/webrtc/signaling for VC9 and below r=derf
This commit is contained in:
parent
beeae20eb5
commit
af2097d99b
@ -42,6 +42,17 @@
|
||||
|
||||
#include <errno.h>
|
||||
|
||||
/* VC10 and above define these */
|
||||
#ifndef EWOULDBLOCK
|
||||
#define EWOULDBLOCK WSAEWOULDBLOCK
|
||||
#endif
|
||||
#ifndef EINPROGRESS
|
||||
#define EINPROGRESS WSAEINPROGRESS
|
||||
#endif
|
||||
#ifndef ENOTCONN
|
||||
#define ENOTCONN WSAENOTCONN
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Maintain re-entrant nature by wrapping 'errno'
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user