Change the grid function to be local instead of exporting to DLL -- was causing DLL incompatility

pull/910/head
Mike Black W9MDB 2021-12-26 10:13:21 -06:00
rodzic 3da4a9ea74
commit 3a79e125c4
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -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));