Tor 0.4.9.0-alpha-dev
win32err.h
Go to the documentation of this file.
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>
19char *format_win32_error(DWORD err);
20#endif
21
22#endif /* !defined(TOR_WIN32ERR_H) */