mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Removes Windows getlogin() equivalents (#1958)
This function is no longer used in the library
This commit is contained in:
parent
47fee5bfd7
commit
ecab3d9c2a
@ -136,7 +136,7 @@ foreach $arg (@ARGV) {
|
||||
|
||||
# These are Windows system calls. Ignore them.
|
||||
next if $name =~ /^(_get_osfhandle|GetFileInformationByHandle|SetFilePointer|GetLastError|SetEndOfFile)$/;
|
||||
next if $name =~ /^(FindNextFile|FindClose|_tzset|Wgettimeofday|GetSystemTimeAsFileTime|Wgetlogin|GetUserName)$/;
|
||||
next if $name =~ /^(FindNextFile|FindClose|_tzset|Wgettimeofday|GetSystemTimeAsFileTime|GetUserName)$/;
|
||||
next if $name =~ /^(DeleteCriticalSection|TlsFree|TlsGetValue|CreateThread)$/;
|
||||
next if $name =~ /^(ExpandEnvironmentStringsA|LockFileEx|UnlockFileEx)$/;
|
||||
next if $name =~ /^(DllMain|LocalAlloc|LocalFree)$/;
|
||||
|
@ -948,9 +948,6 @@ H5_DLL H5_ATTR_CONST int Nflock(int fd, int operation);
|
||||
#ifndef HDgethostname
|
||||
#define HDgethostname(N, L) gethostname(N, L)
|
||||
#endif
|
||||
#ifndef HDgetlogin
|
||||
#define HDgetlogin() getlogin()
|
||||
#endif
|
||||
#ifndef HDgetpgrp
|
||||
#define HDgetpgrp() getpgrp()
|
||||
#endif
|
||||
|
@ -443,22 +443,6 @@ H5_get_win32_times(H5_timevals_t *tvs /*in,out*/)
|
||||
} /* end H5_get_win32_times() */
|
||||
#endif
|
||||
|
||||
#define WloginBuffer_count 256
|
||||
static char Wlogin_buffer[WloginBuffer_count];
|
||||
|
||||
char *
|
||||
Wgetlogin(void)
|
||||
{
|
||||
|
||||
#ifdef H5_HAVE_WIN32_API
|
||||
DWORD bufferCount = WloginBuffer_count;
|
||||
if (GetUserName(Wlogin_buffer, &bufferCount) != 0)
|
||||
return (Wlogin_buffer);
|
||||
else
|
||||
#endif
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: Wflock
|
||||
*
|
||||
|
@ -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, ...);
|
||||
|
Loading…
x
Reference in New Issue
Block a user