1 | n/a | #ifdef _MSC_VER |
---|
2 | n/a | |
---|
3 | n/a | #include <stdlib.h> |
---|
4 | n/a | |
---|
5 | n/a | #if _MSC_VER >= 1900 |
---|
6 | n/a | /* pyconfig.h uses this function in the _Py_BEGIN/END_SUPPRESS_IPH |
---|
7 | n/a | * macros. It does not need to be defined when building using MSVC |
---|
8 | n/a | * earlier than 14.0 (_MSC_VER == 1900). |
---|
9 | n/a | */ |
---|
10 | n/a | |
---|
11 | n/a | static void __cdecl _silent_invalid_parameter_handler( |
---|
12 | n/a | wchar_t const* expression, |
---|
13 | n/a | wchar_t const* function, |
---|
14 | n/a | wchar_t const* file, |
---|
15 | n/a | unsigned int line, |
---|
16 | n/a | uintptr_t pReserved) { } |
---|
17 | n/a | |
---|
18 | n/a | _invalid_parameter_handler _Py_silent_invalid_parameter_handler = _silent_invalid_parameter_handler; |
---|
19 | n/a | |
---|
20 | n/a | #endif |
---|
21 | n/a | |
---|
22 | n/a | #endif |
---|