added dll export keywords
This commit is contained in:
@@ -250,8 +250,8 @@ epicsShareFunc void epicsShareAPI epicsTimeShow (
|
||||
|
||||
/* OS dependent reentrant versions of the ANSI C interface because */
|
||||
/* vxWorks gmtime_r interface does not match POSIX standards */
|
||||
int epicsTime_localtime ( const time_t * clock, struct tm * result );
|
||||
int epicsTime_gmtime ( const time_t * clock, struct tm * result );
|
||||
epicsShareFunc int epicsShareAPI epicsTime_localtime ( const time_t * clock, struct tm * result );
|
||||
epicsShareFunc int epicsShareAPI epicsTime_gmtime ( const time_t * clock, struct tm * result );
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
||||
@@ -173,7 +173,7 @@ static int dayOfYear ( DWORD day, DWORD month, DWORD year )
|
||||
}
|
||||
|
||||
// synthesize a reentrant gmtime on WIN32
|
||||
int epicsTime_gmtime ( const time_t *pAnsiTime, struct tm *pTM )
|
||||
int epicsShareAPI epicsTime_gmtime ( const time_t *pAnsiTime, struct tm *pTM )
|
||||
{
|
||||
FILETIME ft;
|
||||
UnixTimeToFileTime ( pAnsiTime, &ft );
|
||||
@@ -201,7 +201,7 @@ int epicsTime_gmtime ( const time_t *pAnsiTime, struct tm *pTM )
|
||||
}
|
||||
|
||||
// synthesize a reentrant localtime on WIN32
|
||||
int epicsTime_localtime (
|
||||
int epicsShareAPI epicsTime_localtime (
|
||||
const time_t * pAnsiTime, struct tm * pTM )
|
||||
{
|
||||
FILETIME ft;
|
||||
|
||||
Reference in New Issue
Block a user