Fix unsigned long wraparound in python binding

This commit is contained in:
Daniel P. Berrange
2006-11-15 19:40:00 +00:00
parent 6d8b20ce85
commit a3cf19e62a
4 changed files with 21 additions and 2 deletions

View File

@@ -41,6 +41,7 @@ typedef struct {
PyObject * libvirt_intWrap(int val);
PyObject * libvirt_longWrap(long val);
PyObject * libvirt_ulongWrap(unsigned long val);
PyObject * libvirt_longlongWrap(long long val);
PyObject * libvirt_charPtrWrap(char *str);
PyObject * libvirt_constcharPtrWrap(const char *str);