BUg 799076: Add temporary error definitions to media/webrtc/signaling for VC9 and below r=derf

This commit is contained in:
Randell Jesup 2012-10-08 11:08:52 -04:00
parent beeae20eb5
commit af2097d99b

View File

@ -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'
*/