Disable async startup code on Windows

Need a custom pipe function for Windows to work
https://github.com/Hamlib/Hamlib/issues/902
pull/910/head
Mike Black W9MDB 2021-12-25 12:33:32 -06:00
rodzic 5a18808933
commit 72dac9a573
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -1020,7 +1020,10 @@ int HAMLIB_API rig_open(RIG *rig)
RETURNFUNC(status);
}
#if !defined(WIN32)
status = async_data_handler_start(rig);
#endif
if (status < 0)
{
port_close(&rs->rigport, rs->rigport.type.rig);