2 * FILE : src/gtk/streams.cpp
4 * This file was automatically generated by :
5 * Simplified Wrapper and Interface Generator (SWIG)
6 * Version 1.1 (Build 883)
8 * Portions Copyright (c) 1995-1998
9 * The University of Utah and The Regents of the University of California.
10 * Permission is granted to distribute this file in any manner provided
11 * this notice remains intact.
13 * Do not make changes to this file--changes will be lost!
19 /* Implementation : PYTHON */
24 /* Definitions for Windows/Unix exporting */
25 #if defined(__WIN32__)
26 # if defined(_MSC_VER)
27 # define SWIGEXPORT(a) __declspec(dllexport) a
29 # if defined(__BORLANDC__)
30 # define SWIGEXPORT(a) a _export
32 # define SWIGEXPORT(a) a
36 # define SWIGEXPORT(a) a
45 extern void SWIG_MakePtr(char *, void *, char *);
46 extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *));
47 extern char *SWIG_GetPtr(char *, void **, char *);
48 extern char *SWIG_GetPtrObj(PyObject
*, void **, char *);
49 extern void SWIG_addvarlink(PyObject
*, char *, PyObject
*(*)(void), int (*)(PyObject
*));
50 extern PyObject
*SWIG_newvarlink(void);
54 #define SWIG_init initstreamsc
56 #define SWIG_name "streamsc"
59 #include <wx/stream.h>
63 static PyObject
* t_output_helper(PyObject
* target
, PyObject
* o
) {
69 } else if (target
== Py_None
) {
73 if (!PyTuple_Check(target
)) {
75 target
= PyTuple_New(1);
76 PyTuple_SetItem(target
, 0, o2
);
79 PyTuple_SetItem(o3
, 0, o
);
82 target
= PySequence_Concat(o2
, o3
);
89 #if PYTHON_API_VERSION >= 1009
90 static char* wxStringErrorMsg
= "String or Unicode type required";
92 static char* wxStringErrorMsg
= "string type is required for parameter";
95 // definitions of wxStringPtrList and wxPyInputStream
96 #include <wx/listimpl.cpp>
97 WX_DEFINE_LIST(wxStringPtrList
);
100 void wxPyInputStream::close() {
104 void wxPyInputStream::flush() {
108 bool wxPyInputStream::eof() {
115 wxPyInputStream::~wxPyInputStream() {
119 wxString
* wxPyInputStream::read(int size
) {
121 const int BUFSIZE
= 1024;
123 // check if we have a real wxInputStream to work with
125 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream below");
131 char * buf
= new char[BUFSIZE
];
145 wxPy_BEGIN_ALLOW_THREADS
;
146 while (! wxi
->Eof()) {
147 wxi
->Read(buf
, BUFSIZE
);
148 //*s += wxString(buf, wxi->LastRead());
149 s
->Append(buf
, wxi
->LastRead());
152 wxPy_END_ALLOW_THREADS
;
155 if (wxi
->LastError() == wxSTREAM_READ_ERROR
) {
157 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
161 } else { // Read only size number of characters
169 wxPy_BEGIN_ALLOW_THREADS
;
170 wxi
->Read(s
->GetWriteBuf(size
+1), size
);
171 s
->UngetWriteBuf(wxi
->LastRead());
172 wxPy_END_ALLOW_THREADS
;
175 if (wxi
->LastError() == wxSTREAM_READ_ERROR
) {
177 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
185 wxString
* wxPyInputStream::readline (int size
) {
186 // check if we have a real wxInputStream to work with
188 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream below");
195 wxString
* s
= new wxString
;
201 // read until \n or byte limit reached
202 wxPy_BEGIN_ALLOW_THREADS
;
203 for (i
=ch
=0; (ch
!= '\n') && (!wxi
->Eof()) && ((size
< 0) || (i
< size
)); i
++) {
204 *s
+= ch
= wxi
->GetC();
206 wxPy_END_ALLOW_THREADS
;
209 if (wxi
->LastError() == wxSTREAM_READ_ERROR
) {
211 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
218 wxStringPtrList
* wxPyInputStream::readlines (int sizehint
) {
219 // check if we have a real wxInputStream to work with
221 PyErr_SetString(PyExc_IOError
,"no valid C-wxInputStream below");
226 wxStringPtrList
* l
= new wxStringPtrList();
232 // read sizehint bytes or until EOF
233 wxPy_BEGIN_ALLOW_THREADS
;
235 for (i
=0; (!wxi
->Eof()) && ((sizehint
< 0) || (i
< sizehint
));) {
236 wxString
* s
= readline();
238 l
->DeleteContents(TRUE
);
245 wxPy_END_ALLOW_THREADS
;
248 if (wxi
->LastError() == wxSTREAM_READ_ERROR
) {
249 l
->DeleteContents(TRUE
);
251 PyErr_SetString(PyExc_IOError
,"IOError in wxInputStream");
258 void wxPyInputStream::seek(int offset
, int whence
) {
260 wxi
->SeekI(offset
, wxSeekMode(whence
));
263 int wxPyInputStream::tell(){
270 // wxInputStream which operates on a Python file-like object
271 class wxPyCBInputStream
: public wxInputStream
{
278 virtual size_t OnSysRead(void *buffer
, size_t bufsize
) {
282 bool doSave
= wxPyRestoreThread();
283 PyObject
* arglist
= Py_BuildValue("(i)", bufsize
);
284 PyObject
* result
= PyEval_CallObject(read
, arglist
);
288 if ((result
!= NULL
) && PyString_Check(result
)) {
289 o
= PyString_Size(result
);
291 m_lasterror
= wxSTREAM_EOF
;
294 strncpy((char*)buffer
, PyString_AsString(result
), o
);
299 m_lasterror
= wxSTREAM_READ_ERROR
;
300 wxPySaveThread(doSave
);
305 virtual size_t OnSysWrite(const void *buffer
, size_t bufsize
){
306 m_lasterror
= wxSTREAM_WRITE_ERROR
;
310 virtual off_t
OnSysSeek(off_t off
, wxSeekMode mode
){
311 bool doSave
= wxPyRestoreThread();
312 PyObject
*arglist
= Py_BuildValue("(ii)", off
, mode
);
313 PyObject
*result
= PyEval_CallObject(seek
, arglist
);
316 wxPySaveThread(doSave
);
320 virtual off_t
OnSysTell() const{
321 bool doSave
= wxPyRestoreThread();
322 PyObject
* arglist
= Py_BuildValue("()");
323 PyObject
* result
= PyEval_CallObject(tell
, arglist
);
326 if (result
!= NULL
) {
327 o
= PyInt_AsLong(result
);
330 wxPySaveThread(doSave
);
334 wxPyCBInputStream(PyObject
*p
, PyObject
*r
, PyObject
*s
, PyObject
*t
)
335 : py(p
), read(r
), seek(s
), tell(t
)
339 ~wxPyCBInputStream() {
340 bool doSave
= wxPyRestoreThread();
345 wxPySaveThread(doSave
);
348 virtual size_t GetSize() {
350 off_t temp
= OnSysTell();
351 off_t ret
= OnSysSeek(0, wxFromEnd
);
352 OnSysSeek(temp
, wxFromStart
);
359 static wxPyCBInputStream
* create(PyObject
*py
) {
364 if (!PyInstance_Check(py
) && !PyFile_Check(py
)) {
365 PyErr_SetString(PyExc_TypeError
, "Not a file-like object");
369 read
= getMethod(py
, "read");
370 seek
= getMethod(py
, "seek");
371 tell
= getMethod(py
, "tell");
374 PyErr_SetString(PyExc_TypeError
, "Not a file-like object");
381 return new wxPyCBInputStream(py
, read
, seek
, tell
);
384 static PyObject
* getMethod(PyObject
* py
, char* name
) {
385 if (!PyObject_HasAttrString(py
, name
))
387 PyObject
* o
= PyObject_GetAttrString(py
, name
);
388 if (!PyMethod_Check(o
) && !PyCFunction_Check(o
)) {
402 static wxPyInputStream
*new_wxPyInputStream(PyObject
*p
) {
403 wxInputStream
* wxi
= wxPyCBInputStream::create(p
);
405 return new wxPyInputStream(wxi
);
410 static PyObject
*_wrap_new_wxInputStream(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
411 PyObject
* _resultobj
;
412 wxPyInputStream
* _result
;
414 PyObject
* _obj0
= 0;
415 char *_kwnames
[] = { "p", NULL
};
419 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:new_wxInputStream",_kwnames
,&_obj0
))
425 _result
= (wxPyInputStream
*)new_wxPyInputStream(_arg0
);
428 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxPyInputStream_p");
429 _resultobj
= Py_BuildValue("s",_ptemp
);
432 _resultobj
= Py_None
;
437 #define wxInputStream_close(_swigobj) (_swigobj->close())
438 static PyObject
*_wrap_wxInputStream_close(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
439 PyObject
* _resultobj
;
440 wxPyInputStream
* _arg0
;
441 PyObject
* _argo0
= 0;
442 char *_kwnames
[] = { "self", NULL
};
445 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxInputStream_close",_kwnames
,&_argo0
))
448 if (_argo0
== Py_None
) { _arg0
= NULL
; }
449 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyInputStream_p")) {
450 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInputStream_close. Expected _wxPyInputStream_p.");
455 wxInputStream_close(_arg0
);
457 } Py_INCREF(Py_None
);
458 _resultobj
= Py_None
;
462 #define wxInputStream_flush(_swigobj) (_swigobj->flush())
463 static PyObject
*_wrap_wxInputStream_flush(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
464 PyObject
* _resultobj
;
465 wxPyInputStream
* _arg0
;
466 PyObject
* _argo0
= 0;
467 char *_kwnames
[] = { "self", NULL
};
470 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxInputStream_flush",_kwnames
,&_argo0
))
473 if (_argo0
== Py_None
) { _arg0
= NULL
; }
474 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyInputStream_p")) {
475 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInputStream_flush. Expected _wxPyInputStream_p.");
480 wxInputStream_flush(_arg0
);
482 } Py_INCREF(Py_None
);
483 _resultobj
= Py_None
;
487 #define wxInputStream_eof(_swigobj) (_swigobj->eof())
488 static PyObject
*_wrap_wxInputStream_eof(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
489 PyObject
* _resultobj
;
491 wxPyInputStream
* _arg0
;
492 PyObject
* _argo0
= 0;
493 char *_kwnames
[] = { "self", NULL
};
496 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxInputStream_eof",_kwnames
,&_argo0
))
499 if (_argo0
== Py_None
) { _arg0
= NULL
; }
500 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyInputStream_p")) {
501 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInputStream_eof. Expected _wxPyInputStream_p.");
506 _result
= (bool )wxInputStream_eof(_arg0
);
508 } _resultobj
= Py_BuildValue("i",_result
);
512 #define wxInputStream_read(_swigobj,_swigarg0) (_swigobj->read(_swigarg0))
513 static PyObject
*_wrap_wxInputStream_read(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
514 PyObject
* _resultobj
;
516 wxPyInputStream
* _arg0
;
517 int _arg1
= (int ) -1;
518 PyObject
* _argo0
= 0;
519 char *_kwnames
[] = { "self","size", NULL
};
522 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O|i:wxInputStream_read",_kwnames
,&_argo0
,&_arg1
))
525 if (_argo0
== Py_None
) { _arg0
= NULL
; }
526 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyInputStream_p")) {
527 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInputStream_read. Expected _wxPyInputStream_p.");
532 _result
= (wxString
*)wxInputStream_read(_arg0
,_arg1
);
536 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
545 #define wxInputStream_readline(_swigobj,_swigarg0) (_swigobj->readline(_swigarg0))
546 static PyObject
*_wrap_wxInputStream_readline(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
547 PyObject
* _resultobj
;
549 wxPyInputStream
* _arg0
;
550 int _arg1
= (int ) -1;
551 PyObject
* _argo0
= 0;
552 char *_kwnames
[] = { "self","size", NULL
};
555 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O|i:wxInputStream_readline",_kwnames
,&_argo0
,&_arg1
))
558 if (_argo0
== Py_None
) { _arg0
= NULL
; }
559 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyInputStream_p")) {
560 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInputStream_readline. Expected _wxPyInputStream_p.");
565 _result
= (wxString
*)wxInputStream_readline(_arg0
,_arg1
);
569 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
578 #define wxInputStream_readlines(_swigobj,_swigarg0) (_swigobj->readlines(_swigarg0))
579 static PyObject
*_wrap_wxInputStream_readlines(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
580 PyObject
* _resultobj
;
581 wxStringPtrList
* _result
;
582 wxPyInputStream
* _arg0
;
583 int _arg1
= (int ) -1;
584 PyObject
* _argo0
= 0;
585 char *_kwnames
[] = { "self","sizehint", NULL
};
588 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O|i:wxInputStream_readlines",_kwnames
,&_argo0
,&_arg1
))
591 if (_argo0
== Py_None
) { _arg0
= NULL
; }
592 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyInputStream_p")) {
593 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInputStream_readlines. Expected _wxPyInputStream_p.");
598 _result
= (wxStringPtrList
*)wxInputStream_readlines(_arg0
,_arg1
);
602 _resultobj
= PyList_New(_result
->GetCount());
603 wxStringPtrList::Node
*node
= _result
->GetFirst();
604 for (int i
=0; node
; i
++) {
605 wxString
*s
= node
->GetData();
606 PyList_SetItem(_resultobj
, i
, PyString_FromStringAndSize(s
->c_str(), s
->Len()));
607 node
= node
->GetNext();
618 #define wxInputStream_seek(_swigobj,_swigarg0,_swigarg1) (_swigobj->seek(_swigarg0,_swigarg1))
619 static PyObject
*_wrap_wxInputStream_seek(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
620 PyObject
* _resultobj
;
621 wxPyInputStream
* _arg0
;
623 int _arg2
= (int ) 0;
624 PyObject
* _argo0
= 0;
625 char *_kwnames
[] = { "self","offset","whence", NULL
};
628 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi|i:wxInputStream_seek",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
631 if (_argo0
== Py_None
) { _arg0
= NULL
; }
632 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyInputStream_p")) {
633 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInputStream_seek. Expected _wxPyInputStream_p.");
638 wxInputStream_seek(_arg0
,_arg1
,_arg2
);
640 } Py_INCREF(Py_None
);
641 _resultobj
= Py_None
;
645 #define wxInputStream_tell(_swigobj) (_swigobj->tell())
646 static PyObject
*_wrap_wxInputStream_tell(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
647 PyObject
* _resultobj
;
649 wxPyInputStream
* _arg0
;
650 PyObject
* _argo0
= 0;
651 char *_kwnames
[] = { "self", NULL
};
654 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxInputStream_tell",_kwnames
,&_argo0
))
657 if (_argo0
== Py_None
) { _arg0
= NULL
; }
658 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxPyInputStream_p")) {
659 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxInputStream_tell. Expected _wxPyInputStream_p.");
664 _result
= (int )wxInputStream_tell(_arg0
);
666 } _resultobj
= Py_BuildValue("i",_result
);
670 static void wxOutputStream_write(wxOutputStream
*self
,const wxString
& str
) {
671 self
->Write(str
.c_str(), str
.Length());
673 static PyObject
*_wrap_wxOutputStream_write(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
674 PyObject
* _resultobj
;
675 wxOutputStream
* _arg0
;
677 PyObject
* _argo0
= 0;
678 PyObject
* _obj1
= 0;
679 char *_kwnames
[] = { "self","str", NULL
};
682 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxOutputStream_write",_kwnames
,&_argo0
,&_obj1
))
685 if (_argo0
== Py_None
) { _arg0
= NULL
; }
686 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxOutputStream_p")) {
687 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxOutputStream_write. Expected _wxOutputStream_p.");
692 #if PYTHON_API_VERSION >= 1009
693 char* tmpPtr
; int tmpSize
;
694 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
695 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
698 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
700 _arg1
= new wxString(tmpPtr
, tmpSize
);
702 if (!PyString_Check(_obj1
)) {
703 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
706 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
710 wxOutputStream_write(_arg0
,*_arg1
);
712 } Py_INCREF(Py_None
);
713 _resultobj
= Py_None
;
721 static PyMethodDef streamscMethods
[] = {
722 { "wxOutputStream_write", (PyCFunction
) _wrap_wxOutputStream_write
, METH_VARARGS
| METH_KEYWORDS
},
723 { "wxInputStream_tell", (PyCFunction
) _wrap_wxInputStream_tell
, METH_VARARGS
| METH_KEYWORDS
},
724 { "wxInputStream_seek", (PyCFunction
) _wrap_wxInputStream_seek
, METH_VARARGS
| METH_KEYWORDS
},
725 { "wxInputStream_readlines", (PyCFunction
) _wrap_wxInputStream_readlines
, METH_VARARGS
| METH_KEYWORDS
},
726 { "wxInputStream_readline", (PyCFunction
) _wrap_wxInputStream_readline
, METH_VARARGS
| METH_KEYWORDS
},
727 { "wxInputStream_read", (PyCFunction
) _wrap_wxInputStream_read
, METH_VARARGS
| METH_KEYWORDS
},
728 { "wxInputStream_eof", (PyCFunction
) _wrap_wxInputStream_eof
, METH_VARARGS
| METH_KEYWORDS
},
729 { "wxInputStream_flush", (PyCFunction
) _wrap_wxInputStream_flush
, METH_VARARGS
| METH_KEYWORDS
},
730 { "wxInputStream_close", (PyCFunction
) _wrap_wxInputStream_close
, METH_VARARGS
| METH_KEYWORDS
},
731 { "new_wxInputStream", (PyCFunction
) _wrap_new_wxInputStream
, METH_VARARGS
| METH_KEYWORDS
},
738 * This table is used by the pointer type-checker
740 static struct { char *n1
; char *n2
; void *(*pcnv
)(void *); } _swig_mapping
[] = {
741 { "_signed_long","_long",0},
742 { "_wxPrintQuality","_wxCoord",0},
743 { "_wxPrintQuality","_int",0},
744 { "_wxPrintQuality","_signed_int",0},
745 { "_wxPrintQuality","_unsigned_int",0},
746 { "_wxPrintQuality","_wxWindowID",0},
747 { "_wxPrintQuality","_uint",0},
748 { "_wxPrintQuality","_EBool",0},
749 { "_wxPrintQuality","_size_t",0},
750 { "_wxPrintQuality","_time_t",0},
751 { "_byte","_unsigned_char",0},
752 { "_long","_unsigned_long",0},
753 { "_long","_signed_long",0},
754 { "_size_t","_wxCoord",0},
755 { "_size_t","_wxPrintQuality",0},
756 { "_size_t","_time_t",0},
757 { "_size_t","_unsigned_int",0},
758 { "_size_t","_int",0},
759 { "_size_t","_wxWindowID",0},
760 { "_size_t","_uint",0},
761 { "_uint","_wxCoord",0},
762 { "_uint","_wxPrintQuality",0},
763 { "_uint","_time_t",0},
764 { "_uint","_size_t",0},
765 { "_uint","_unsigned_int",0},
767 { "_uint","_wxWindowID",0},
768 { "_wxChar","_char",0},
769 { "_char","_wxChar",0},
770 { "_EBool","_wxCoord",0},
771 { "_EBool","_wxPrintQuality",0},
772 { "_EBool","_signed_int",0},
773 { "_EBool","_int",0},
774 { "_EBool","_wxWindowID",0},
775 { "_unsigned_long","_long",0},
776 { "_signed_int","_wxCoord",0},
777 { "_signed_int","_wxPrintQuality",0},
778 { "_signed_int","_EBool",0},
779 { "_signed_int","_wxWindowID",0},
780 { "_signed_int","_int",0},
781 { "_WXTYPE","_short",0},
782 { "_WXTYPE","_signed_short",0},
783 { "_WXTYPE","_unsigned_short",0},
784 { "_unsigned_short","_WXTYPE",0},
785 { "_unsigned_short","_short",0},
786 { "_signed_short","_WXTYPE",0},
787 { "_signed_short","_short",0},
788 { "_unsigned_char","_byte",0},
789 { "_unsigned_int","_wxCoord",0},
790 { "_unsigned_int","_wxPrintQuality",0},
791 { "_unsigned_int","_time_t",0},
792 { "_unsigned_int","_size_t",0},
793 { "_unsigned_int","_uint",0},
794 { "_unsigned_int","_wxWindowID",0},
795 { "_unsigned_int","_int",0},
796 { "_short","_WXTYPE",0},
797 { "_short","_unsigned_short",0},
798 { "_short","_signed_short",0},
799 { "_wxWindowID","_wxCoord",0},
800 { "_wxWindowID","_wxPrintQuality",0},
801 { "_wxWindowID","_time_t",0},
802 { "_wxWindowID","_size_t",0},
803 { "_wxWindowID","_EBool",0},
804 { "_wxWindowID","_uint",0},
805 { "_wxWindowID","_int",0},
806 { "_wxWindowID","_signed_int",0},
807 { "_wxWindowID","_unsigned_int",0},
808 { "_int","_wxCoord",0},
809 { "_int","_wxPrintQuality",0},
810 { "_int","_time_t",0},
811 { "_int","_size_t",0},
812 { "_int","_EBool",0},
814 { "_int","_wxWindowID",0},
815 { "_int","_unsigned_int",0},
816 { "_int","_signed_int",0},
817 { "_time_t","_wxCoord",0},
818 { "_time_t","_wxPrintQuality",0},
819 { "_time_t","_unsigned_int",0},
820 { "_time_t","_int",0},
821 { "_time_t","_wxWindowID",0},
822 { "_time_t","_uint",0},
823 { "_time_t","_size_t",0},
824 { "_wxCoord","_int",0},
825 { "_wxCoord","_signed_int",0},
826 { "_wxCoord","_unsigned_int",0},
827 { "_wxCoord","_wxWindowID",0},
828 { "_wxCoord","_uint",0},
829 { "_wxCoord","_EBool",0},
830 { "_wxCoord","_size_t",0},
831 { "_wxCoord","_time_t",0},
832 { "_wxCoord","_wxPrintQuality",0},
835 static PyObject
*SWIG_globals
;
839 SWIGEXPORT(void) initstreamsc() {
841 SWIG_globals
= SWIG_newvarlink();
842 m
= Py_InitModule("streamsc", streamscMethods
);
843 d
= PyModule_GetDict(m
);
845 wxPyPtrTypeMap_Add("wxInputStream", "wxPyInputStream");
848 for (i
= 0; _swig_mapping
[i
].n1
; i
++)
849 SWIG_RegisterMapping(_swig_mapping
[i
].n1
,_swig_mapping
[i
].n2
,_swig_mapping
[i
].pcnv
);