win32err.h 394 B

1234567891011121314151617
  1. /* Copyright (c) 2003-2004, 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. #ifndef TOR_WIN32ERR_H
  6. #define TOR_WIN32ERR_H
  7. #include "orconfig.h"
  8. /* Platform-specific helpers. */
  9. #ifdef _WIN32
  10. #include <windef.h>
  11. char *format_win32_error(DWORD err);
  12. #endif
  13. #endif