summaryrefslogtreecommitdiffstats
path: root/src/H5win32defs.h
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-08-01 16:55:54 (GMT)
committerGitHub <noreply@github.com>2022-08-01 16:55:54 (GMT)
commitecab3d9c2afbf1b838634317b45876802182983c (patch)
tree677ccd29cc405d39b5f6865d0d4d137852cd9aad /src/H5win32defs.h
parent47fee5bfd711dd73b15c25abd962ab539e731ebe (diff)
downloadhdf5-ecab3d9c2afbf1b838634317b45876802182983c.zip
hdf5-ecab3d9c2afbf1b838634317b45876802182983c.tar.gz
hdf5-ecab3d9c2afbf1b838634317b45876802182983c.tar.bz2
Removes Windows getlogin() equivalents (#1958)
This function is no longer used in the library
Diffstat (limited to 'src/H5win32defs.h')
-rw-r--r--src/H5win32defs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/H5win32defs.h b/src/H5win32defs.h
index df4b0ee..9e8945f 100644
--- a/src/H5win32defs.h
+++ b/src/H5win32defs.h
@@ -53,7 +53,6 @@ struct timezone {
#define HDgetcwd(S, Z) _getcwd(S, Z)
#define HDgetdcwd(D, S, Z) _getdcwd(D, S, Z)
#define HDgetdrive() _getdrive()
-#define HDgetlogin() Wgetlogin()
#define HDgettimeofday(V, Z) Wgettimeofday(V, Z)
#define HDisatty(F) _isatty(F)
#define HDlseek(F, O, W) _lseeki64(F, O, W)
@@ -101,7 +100,6 @@ extern "C" {
H5_DLL int Wgettimeofday(struct timeval *tv, struct timezone *tz);
H5_DLL int Wsetenv(const char *name, const char *value, int overwrite);
H5_DLL int Wflock(int fd, int operation);
-H5_DLL char *Wgetlogin(void);
H5_DLL herr_t H5_expand_windows_env_vars(char **env_var);
H5_DLL wchar_t *H5_get_utf16_str(const char *s);
H5_DLL int Wopen_utf8(const char *path, int oflag, ...);