Bump copyright date to 2019
[tor.git] / src / lib / fs / winlib.h
blob64a22439e5d0e3dc6fdb83a2cc1d06362268164c
1 /* Copyright (c) 2003, Roger Dingledine
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2019, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
6 /**
7 * \file winlib.h
9 * \brief Header for winlib.c
10 **/
12 #ifndef TOR_WINLIB_H
13 #define TOR_WINLIB_H
15 #ifdef _WIN32
16 #include <windows.h>
17 #include <tchar.h>
19 HANDLE load_windows_system_library(const TCHAR *library_name);
20 #endif
22 #endif