winlib.h 437 B

12345678910111213141516171819202122
  1. /* Copyright (c) 2003, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file winlib.h
  7. *
  8. * \brief Header for winlib.c
  9. **/
  10. #ifndef TOR_WINLIB_H
  11. #define TOR_WINLIB_H
  12. #ifdef _WIN32
  13. #include <windows.h>
  14. #include <tchar.h>
  15. HANDLE load_windows_system_library(const TCHAR *library_name);
  16. #endif
  17. #endif