Qt5 MingW: Missing zlib bindings, build fix for qextserialport

This commit is contained in:
Mark Watkins 2013-07-28 15:46:23 +10:00
parent 729e3d198a
commit db0835cbee
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ macx {
win32 {
SOURCES += qextserialport/win_qextserialport.cpp qextserialport/qextserialenumerator_win.cpp
DEFINES += WINVER=0x0501 # needed for mingw to pull in appropriate dbt business...probably a better way to do this
LIBS += -lsetupapi
LIBS += -lsetupapi -lz
}

View File

@ -124,7 +124,7 @@ void QextSerialEnumerator::setUpNotifications( )
dbh.dbcc_size = sizeof(dbh);
dbh.dbcc_devicetype = DBT_DEVTYP_DEVICEINTERFACE;
CopyMemory(&dbh.dbcc_classguid, &GUID_DEVCLASS_PORTS, sizeof(GUID));
if( RegisterDeviceNotification( notificationWidget->winId( ), &dbh, DEVICE_NOTIFY_WINDOW_HANDLE ) == NULL)
if( RegisterDeviceNotification( (HANDLE)notificationWidget->winId( ), &dbh, DEVICE_NOTIFY_WINDOW_HANDLE ) == NULL)
qWarning() << "RegisterDeviceNotification failed:" << GetLastError();
// setting up notifications doesn't tell us about devices already connected
// so get those manually