mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-30 16:10:44 +08:00
Corrected an error found in 'make check'
This commit is contained in:
parent
1af2b768b0
commit
5746b1e103
@ -368,7 +368,16 @@ extern void NCDAP_urlfree(void* dapurl);
|
||||
extern const char* NCDAP_urllookup(void* dapurl, const char* param);
|
||||
|
||||
/* Test for specific set of servers */
|
||||
#if defined(DLL_NETCDF) /* Defined when library is a DLL */
|
||||
# if defined(DLL_EXPORT) /* Define when building the library. */
|
||||
# define MSC_NCDISPATCH_EXTRA __declspec(dllexport)
|
||||
# else
|
||||
# define MSC_NCDISPATCH_EXTRA __declspec(dllimport)
|
||||
# endif
|
||||
MSC_NCDISPATCH_EXTRA extern const char* NC_findtestserver(const char*);
|
||||
#else
|
||||
extern const char* NC_findtestserver(const char*);
|
||||
#endif
|
||||
/* Ping a specific server */
|
||||
extern int NCDAP_ping(const char*);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user