win32err.h (487B)
1 /* Copyright (c) 2003-2004, 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 win32err.h 8 * \brief Header for win32err.c 9 **/ 10 11 #ifndef TOR_WIN32ERR_H 12 #define TOR_WIN32ERR_H 13 14 #include "orconfig.h" 15 16 /* Platform-specific helpers. */ 17 #ifdef _WIN32 18 #include <windef.h> 19 char *format_win32_error(DWORD err); 20 #endif 21 22 #endif /* !defined(TOR_WIN32ERR_H) */