Skip to content

Commit 750d04a

Browse files
Merge pull request #157 from valgur/bugfix/demo5-windows-shared
Add missing EXPORT to global variables
2 parents 6cf07fe + 74bd178 commit 750d04a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/rtklib.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,13 +1337,13 @@ typedef struct { /* GIS type */
13371337
typedef void fatalfunc_t(const char *); /* fatal callback function type */
13381338

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

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

0 commit comments

Comments
 (0)