Implemented support to MSG type on windows.

This commit is contained in:
Renato Filho 2011-06-07 11:07:06 -03:00 committed by Hugo Parente Lima
commit 23d1e497d8
6 changed files with 144 additions and 2 deletions

View file

@ -0,0 +1,32 @@
namespace Shiboken {
template <>
struct Converter<HWND__>
{
static bool checkType(PyObject* pyObj)
{
return false;
}
static bool isConvertible(PyObject* pyobj)
{
return PyCObject_Check(pyobj);
}
static inline PyObject* toPython(void* cppobj)
{
// not supported
Q_ASSERT(true);
return 0;
}
static PyObject* toPython(HWND__ cppobj)
{
return PyCObject_FromVoidPtr(&cppobj, 0);
}
static HWND__ toCpp(PyObject* pyobj)
{
return *((HWND__*) PyCObject_AsVoidPtr(pyobj));
}
};
}