tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

winlib.h (488B)


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