From 3a79e125c468d9aa1aacf789f6edf22cee8a7452 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sun, 26 Dec 2021 10:13:21 -0600 Subject: [PATCH] Change the grid function to be local instead of exporting to DLL -- was causing DLL incompatility --- include/hamlib/rig.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/hamlib/rig.h b/include/hamlib/rig.h index 7be20ef5e..f4798396c 100644 --- a/include/hamlib/rig.h +++ b/include/hamlib/rig.h @@ -3232,14 +3232,14 @@ extern HAMLIB_EXPORT(int) hl_usleep(rig_useconds_t msec); extern HAMLIB_EXPORT(int) rig_cookie(RIG *rig, enum cookie_e cookie_cmd, char *cookie, int cookie_len); -extern HAMLIB_EXPORT(int) -longlat2locator HAMLIB_PARAMS((double longitude, +//extern HAMLIB_EXPORT(int) +int longlat2locator HAMLIB_PARAMS((double longitude, double latitude, char *locator_res, int pair_count)); -extern HAMLIB_EXPORT(int) -locator2longlat HAMLIB_PARAMS((double *longitude, +//extern HAMLIB_EXPORT(int) +int locator2longlat HAMLIB_PARAMS((double *longitude, double *latitude, const char *locator));