added dll export keywords

This commit is contained in:
Jeff Hill
2003-04-22 22:28:24 +00:00
parent 9a991a3765
commit 5bbf7bc341
2 changed files with 4 additions and 4 deletions

View File

@@ -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
}

View File

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