diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-03-02 16:01:10 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-03-02 16:01:10 (GMT) |
commit | 3e96f324dcdbeb78fcd8fa4ffe2cd0c67f3828b2 (patch) | |
tree | e717f66fa69341710e7a5f35300714c40011d595 /Modules | |
parent | 2f3d440549345857c7b1a6deb377b5b69052f639 (diff) | |
download | cpython-3e96f324dcdbeb78fcd8fa4ffe2cd0c67f3828b2.zip cpython-3e96f324dcdbeb78fcd8fa4ffe2cd0c67f3828b2.tar.gz cpython-3e96f324dcdbeb78fcd8fa4ffe2cd0c67f3828b2.tar.bz2 |
Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_winapi.c | 8 | ||||
-rw-r--r-- | Modules/socketmodule.h | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Modules/_winapi.c b/Modules/_winapi.c index 51c4d5f..0274874 100644 --- a/Modules/_winapi.c +++ b/Modules/_winapi.c @@ -1001,6 +1001,12 @@ PyDoc_STRVAR(GetVersion_doc, \n\ Return the version number of the current operating system."); +/* Disable deprecation warnings about GetVersionEx as the result is + being passed straight through to the caller, who is responsible for + using it correctly. */ +#pragma warning(push) +#pragma warning(disable:4996) + static PyObject * winapi_GetVersion(PyObject* self, PyObject* args) { @@ -1010,6 +1016,8 @@ winapi_GetVersion(PyObject* self, PyObject* args) return PyLong_FromUnsignedLong(GetVersion()); } +#pragma warning(pop) + static PyObject * winapi_OpenProcess(PyObject *self, PyObject *args) { diff --git a/Modules/socketmodule.h b/Modules/socketmodule.h index b83f9af..4b6a10e 100644 --- a/Modules/socketmodule.h +++ b/Modules/socketmodule.h @@ -14,6 +14,13 @@ #else /* MS_WINDOWS */ # include <winsock2.h> +/* Windows 'supports' CMSG_LEN, but does not follow the POSIX standard + * interface at all, so there is no point including the code that + * attempts to use it. + */ +# ifdef PySocket_BUILDING_SOCKET +# undef CMSG_LEN +# endif # include <ws2tcpip.h> /* VC6 is shipped with old platform headers, and does not have MSTcpIP.h * Separate SDKs have all the functions we want, but older ones don't have |