diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-28 13:37:51 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-28 13:37:51 -0400 |
commit | 02bb701bba5fb6b5eb6ce5716b8fff9fd2c5e028 (patch) | |
tree | 03b336e462f1f7d23db6aa89a1fbff9f754505ec /src/common/util.h | |
parent | 8fc15e4861b37f7799abde6b9d6ec63fdceb55da (diff) | |
download | tor-02bb701bba5fb6b5eb6ce5716b8fff9fd2c5e028.tar.gz tor-02bb701bba5fb6b5eb6ce5716b8fff9fd2c5e028.zip |
Move DLL support to lib/fs
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/common/util.h b/src/common/util.h index f174cd3667..ffd958c42c 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -40,6 +40,7 @@ #include "lib/fs/path.h" #include "lib/encoding/time_fmt.h" #include "lib/encoding/cstring.h" +#include "lib/fs/winlib.h" void tor_log_mallinfo(int severity); @@ -76,8 +77,4 @@ void tor_log_mallinfo(int severity); ((isSock) ? read_all_from_socket((fd), (buf), (count)) \ : read_all_from_fd((int)(fd), (buf), (count))) -#ifdef _WIN32 -HANDLE load_windows_system_library(const TCHAR *library_name); -#endif - #endif /* !defined(TOR_UTIL_H) */ |