Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing EXPORT to global variables #727

Open
wants to merge 1 commit into
base: rtklib_2.4.3
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/rtklib.h
Original file line number Diff line number Diff line change
Expand Up @@ -1293,13 +1293,13 @@ typedef struct { /* GIS type */
typedef void fatalfunc_t(const char *); /* fatal callback function type */

/* global variables ----------------------------------------------------------*/
extern const double chisqr[]; /* chi-sqr(n) table (alpha=0.001) */
extern const prcopt_t prcopt_default; /* default positioning options */
extern const solopt_t solopt_default; /* default solution output options */
extern const sbsigpband_t igpband1[9][8]; /* SBAS IGP band 0-8 */
extern const sbsigpband_t igpband2[2][5]; /* SBAS IGP band 9-10 */
extern const char *formatstrs[]; /* stream format strings */
extern opt_t sysopts[]; /* system options table */
EXPORT extern const double chisqr[]; /* chi-sqr(n) table (alpha=0.001) */
EXPORT extern const prcopt_t prcopt_default; /* default positioning options */
EXPORT extern const solopt_t solopt_default; /* default solution output options */
EXPORT extern const sbsigpband_t igpband1[9][8]; /* SBAS IGP band 0-8 */
EXPORT extern const sbsigpband_t igpband2[2][5]; /* SBAS IGP band 9-10 */
EXPORT extern const char *formatstrs[]; /* stream format strings */
EXPORT extern opt_t sysopts[]; /* system options table */

/* satellites, systems, codes functions --------------------------------------*/
EXPORT int satno (int sys, int prn);
Expand Down