|
|
@@ -121,9 +121,11 @@ extern "C" {
|
|
|
EXPCL_PYSTUB int PyType_GenericAlloc(...);
|
|
|
EXPCL_PYSTUB int PyType_IsSubtype(...);
|
|
|
EXPCL_PYSTUB int PyType_Ready(...);
|
|
|
+ EXPCL_PYSTUB int PyUnicodeUCS2_FromStringAndSize(...);
|
|
|
EXPCL_PYSTUB int PyUnicodeUCS2_FromWideChar(...);
|
|
|
EXPCL_PYSTUB int PyUnicodeUCS2_AsWideChar(...);
|
|
|
EXPCL_PYSTUB int PyUnicodeUCS2_GetSize(...);
|
|
|
+ EXPCL_PYSTUB int PyUnicodeUCS4_FromStringAndSize(...);
|
|
|
EXPCL_PYSTUB int PyUnicodeUCS4_FromWideChar(...);
|
|
|
EXPCL_PYSTUB int PyUnicodeUCS4_AsWideChar(...);
|
|
|
EXPCL_PYSTUB int PyUnicodeUCS4_GetSize(...);
|
|
|
@@ -261,9 +263,11 @@ int PyTuple_Type(...) { return 0; };
|
|
|
int PyType_GenericAlloc(...) { return 0; };
|
|
|
int PyType_IsSubtype(...) { return 0; }
|
|
|
int PyType_Ready(...) { return 0; };
|
|
|
+int PyUnicodeUCS2_FromStringAndSize(...) { return 0; }
|
|
|
int PyUnicodeUCS2_FromWideChar(...) { return 0; }
|
|
|
int PyUnicodeUCS2_AsWideChar(...) { return 0; }
|
|
|
int PyUnicodeUCS2_GetSize(...) { return 0; }
|
|
|
+int PyUnicodeUCS4_FromStringAndSize(...) { return 0; }
|
|
|
int PyUnicodeUCS4_FromWideChar(...) { return 0; }
|
|
|
int PyUnicodeUCS4_AsWideChar(...) { return 0; }
|
|
|
int PyUnicodeUCS4_GetSize(...) { return 0; }
|