diff options
author | Daniel Cohen Gindi <danielgindi@gmail.com> | 2014-09-20 16:39:16 +0300 |
---|---|---|
committer | Daniel Cohen Gindi <danielgindi@gmail.com> | 2014-09-20 17:46:30 +0300 |
commit | fbf48c65f343c2d3cce8ccd69975e9526f209fc5 (patch) | |
tree | c29ca641088bdd76a07d3cedf5aae66fbde6ff3c /libvncserver/stats.c | |
parent | fdf5f8876f5f4bd08aa3dc47268c1f4c4590c0bb (diff) | |
download | libtdevnc-fbf48c65f343c2d3cce8ccd69975e9526f209fc5.tar.gz libtdevnc-fbf48c65f343c2d3cce8ccd69975e9526f209fc5.zip |
`strings.h` and `resolv.h` are not available on MSVC, and some POSIX functions are renamed or deprecated
For all of those missing/deprecated POSIX functions, we just add a macro mapping to the _underscored version of MSVC.
Diffstat (limited to 'libvncserver/stats.c')
-rw-r--r-- | libvncserver/stats.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libvncserver/stats.c b/libvncserver/stats.c index 39de1c6..b99da01 100644 --- a/libvncserver/stats.c +++ b/libvncserver/stats.c @@ -26,6 +26,10 @@ #include <rfb/rfb.h> +#ifdef _MSC_VER +#define snprintf _snprintf /* Missing in MSVC */ +#endif + char *messageNameServer2Client(uint32_t type, char *buf, int len); char *messageNameClient2Server(uint32_t type, char *buf, int len); char *encodingName(uint32_t enc, char *buf, int len); |