From 77e946c118182cc74fcc8775c9fed45c393d9225 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Mon, 24 Jan 2022 12:14:24 -0600 Subject: [PATCH] Remove ASYNC definitions from deprecated hamlib_port_t --- include/hamlib/rig.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/hamlib/rig.h b/include/hamlib/rig.h index 4e4a2e648..c96de2c2c 100644 --- a/include/hamlib/rig.h +++ b/include/hamlib/rig.h @@ -2301,18 +2301,6 @@ typedef struct hamlib_port_deprecated { int client_port; /*!< client socket port for tcp connection */ RIG *rig; /*!< our parent RIG device */ -#ifdef ASYNC_BUG - int _async; /*!< enable asynchronous data handling if true -- async collides with python keyword so _async is used */ -#if defined(_WIN32) - hamlib_async_pipe_t *sync_data_pipe; /*!< pipe data structure for synchronous data */ - hamlib_async_pipe_t *sync_data_error_pipe; /*!< pipe data structure for synchronous data error codes */ -#else - int fd_sync_write; /*!< file descriptor for writing synchronous data */ - int fd_sync_read; /*!< file descriptor for reading synchronous data */ - int fd_sync_error_write; /*!< file descriptor for writing synchronous data error codes */ - int fd_sync_error_read; /*!< file descriptor for reading synchronous data error codes */ -#endif -#endif } hamlib_port_t_deprecated; //! @endcond