@@ -144,10 +144,14 @@ extern "C" {
144144 EXPCL_PYSTUB int PyType_GenericAlloc (...);
145145 EXPCL_PYSTUB int PyType_IsSubtype (...);
146146 EXPCL_PYSTUB int PyType_Ready (...);
147+ EXPCL_PYSTUB int PyUnicodeUCS2_FromFormat (...);
148+ EXPCL_PYSTUB int PyUnicodeUCS2_FromString (...);
147149 EXPCL_PYSTUB int PyUnicodeUCS2_FromStringAndSize (...);
148150 EXPCL_PYSTUB int PyUnicodeUCS2_FromWideChar (...);
149151 EXPCL_PYSTUB int PyUnicodeUCS2_AsWideChar (...);
150152 EXPCL_PYSTUB int PyUnicodeUCS2_GetSize (...);
153+ EXPCL_PYSTUB int PyUnicodeUCS4_FromFormat (...);
154+ EXPCL_PYSTUB int PyUnicodeUCS4_FromString (...);
151155 EXPCL_PYSTUB int PyUnicodeUCS4_FromStringAndSize (...);
152156 EXPCL_PYSTUB int PyUnicodeUCS4_FromWideChar (...);
153157 EXPCL_PYSTUB int PyUnicodeUCS4_AsWideChar (...);
@@ -175,6 +179,8 @@ extern "C" {
175179 EXPCL_PYSTUB int _PyObject_CallMethod_SizeT (...);
176180 EXPCL_PYSTUB int _PyObject_DebugFree (...);
177181 EXPCL_PYSTUB int _PyObject_Del (...);
182+ EXPCL_PYSTUB int _PyUnicode_AsString (...);
183+ EXPCL_PYSTUB int _PyUnicode_AsStringAndSize (...);
178184 EXPCL_PYSTUB int _Py_BuildValue_SizeT (...);
179185 EXPCL_PYSTUB int _Py_Dealloc (...);
180186 EXPCL_PYSTUB int _Py_NegativeRefcount (...);
@@ -190,6 +196,7 @@ extern "C" {
190196 EXPCL_PYSTUB extern void *PyExc_Exception;
191197 EXPCL_PYSTUB extern void *PyExc_FutureWarning;
192198 EXPCL_PYSTUB extern void *PyExc_IndexError;
199+ EXPCL_PYSTUB extern void *PyExc_OSError;
193200 EXPCL_PYSTUB extern void *PyExc_RuntimeError;
194201 EXPCL_PYSTUB extern void *PyExc_StandardError;
195202 EXPCL_PYSTUB extern void *PyExc_StopIteration;
@@ -334,10 +341,14 @@ int PyTuple_Type(...) { return 0; };
334341int PyType_GenericAlloc (...) { return 0 ; };
335342int PyType_IsSubtype (...) { return 0 ; }
336343int PyType_Ready (...) { return 0 ; };
344+ int PyUnicodeUCS2_FromFormat (...) { return 0 ; }
345+ int PyUnicodeUCS2_FromString (...) { return 0 ; }
337346int PyUnicodeUCS2_FromStringAndSize (...) { return 0 ; }
338347int PyUnicodeUCS2_FromWideChar (...) { return 0 ; }
339348int PyUnicodeUCS2_AsWideChar (...) { return 0 ; }
340349int PyUnicodeUCS2_GetSize (...) { return 0 ; }
350+ int PyUnicodeUCS4_FromFormat (...) { return 0 ; }
351+ int PyUnicodeUCS4_FromString (...) { return 0 ; }
341352int PyUnicodeUCS4_FromStringAndSize (...) { return 0 ; }
342353int PyUnicodeUCS4_FromWideChar (...) { return 0 ; }
343354int PyUnicodeUCS4_AsWideChar (...) { return 0 ; }
@@ -365,6 +376,8 @@ int _PyObject_CallFunction_SizeT(...) { return 0; };
365376int _PyObject_CallMethod_SizeT (...) { return 0 ; };
366377int _PyObject_DebugFree (...) { return 0 ; };
367378int _PyObject_Del (...) { return 0 ; };
379+ int _PyUnicode_AsString (...) { return 0 ; };
380+ int _PyUnicode_AsStringAndSize (...) { return 0 ; };
368381int _Py_BuildValue_SizeT (...) { return 0 ; };
369382int _Py_Dealloc (...) { return 0 ; };
370383int _Py_NegativeRefcount (...) { return 0 ; };
@@ -385,6 +398,7 @@ void *PyExc_ConnectionError = (void *)NULL;
385398void *PyExc_Exception = (void *)NULL ;
386399void *PyExc_FutureWarning = (void *)NULL ;
387400void *PyExc_IndexError = (void *)NULL ;
401+ void *PyExc_OSError = (void *)NULL ;
388402void *PyExc_RuntimeError = (void *)NULL ;
389403void *PyExc_StandardError = (void *)NULL ;
390404void *PyExc_StopIteration = (void *)NULL ;
0 commit comments