diff options
Diffstat (limited to 'src/H5win32defs.h')
-rw-r--r-- | src/H5win32defs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5win32defs.h b/src/H5win32defs.h index a428899..743ceaa 100644 --- a/src/H5win32defs.h +++ b/src/H5win32defs.h @@ -53,11 +53,13 @@ struct timezone { #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ -H5_DLL int Wgettimeofday(struct timeval *tv, struct timezone *tz); + H5_DLL int Wgettimeofday(struct timeval *tv, struct timezone *tz); + H5_DLL char* Wgetlogin(); #ifdef __cplusplus } #endif /* __cplusplus */ #define HDgettimeofday(V,Z) Wgettimeofday(V,Z) +#define HDgetlogin() Wgetlogin() #define HDgetdrive() _getdrive() #define HDlseek(F,O,W) _lseeki64(F,O,W) |