nsprpub/pr/include/md/_win32_errors.h

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

     1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #ifndef nspr_win32_errors_h___
     7 #define nspr_win32_errors_h___
     9 #include <windows.h>
    10 #include <winsock.h>
    11 #include <errno.h>
    14 extern void _MD_win32_map_default_error(PRInt32 err);
    15 #define _PR_MD_MAP_DEFAULT_ERROR	_MD_win32_map_default_error
    17 extern void _MD_win32_map_opendir_error(PRInt32 err);
    18 #define	_PR_MD_MAP_OPENDIR_ERROR	_MD_win32_map_opendir_error
    20 extern void _MD_win32_map_closedir_error(PRInt32 err);
    21 #define	_PR_MD_MAP_CLOSEDIR_ERROR	_MD_win32_map_closedir_error
    23 extern void _MD_unix_readdir_error(PRInt32 err);
    24 #define	_PR_MD_MAP_READDIR_ERROR	_MD_unix_readdir_error
    26 extern void _MD_win32_map_delete_error(PRInt32 err);
    27 #define	_PR_MD_MAP_DELETE_ERROR	_MD_win32_map_delete_error
    29 extern void _MD_win32_map_stat_error(PRInt32 err);
    30 #define	_PR_MD_MAP_STAT_ERROR	_MD_win32_map_stat_error
    32 extern void _MD_win32_map_fstat_error(PRInt32 err);
    33 #define	_PR_MD_MAP_FSTAT_ERROR	_MD_win32_map_fstat_error
    35 extern void _MD_win32_map_rename_error(PRInt32 err);
    36 #define	_PR_MD_MAP_RENAME_ERROR	_MD_win32_map_rename_error
    38 extern void _MD_win32_map_access_error(PRInt32 err);
    39 #define	_PR_MD_MAP_ACCESS_ERROR	_MD_win32_map_access_error
    41 extern void _MD_win32_map_mkdir_error(PRInt32 err);
    42 #define	_PR_MD_MAP_MKDIR_ERROR	_MD_win32_map_mkdir_error
    44 extern void _MD_win32_map_rmdir_error(PRInt32 err);
    45 #define	_PR_MD_MAP_RMDIR_ERROR	_MD_win32_map_rmdir_error
    47 extern void _MD_win32_map_read_error(PRInt32 err);
    48 #define	_PR_MD_MAP_READ_ERROR	_MD_win32_map_read_error
    50 extern void _MD_win32_map_transmitfile_error(PRInt32 err);
    51 #define	_PR_MD_MAP_TRANSMITFILE_ERROR	_MD_win32_map_transmitfile_error
    53 extern void _MD_win32_map_write_error(PRInt32 err);
    54 #define	_PR_MD_MAP_WRITE_ERROR	_MD_win32_map_write_error
    56 extern void _MD_win32_map_lseek_error(PRInt32 err);
    57 #define	_PR_MD_MAP_LSEEK_ERROR	_MD_win32_map_lseek_error
    59 extern void _MD_win32_map_fsync_error(PRInt32 err);
    60 #define	_PR_MD_MAP_FSYNC_ERROR	_MD_win32_map_fsync_error
    62 extern void _MD_win32_map_close_error(PRInt32 err);
    63 #define	_PR_MD_MAP_CLOSE_ERROR	_MD_win32_map_close_error
    65 extern void _MD_win32_map_socket_error(PRInt32 err);
    66 #define	_PR_MD_MAP_SOCKET_ERROR	_MD_win32_map_socket_error
    68 extern void _MD_win32_map_recv_error(PRInt32 err);
    69 #define	_PR_MD_MAP_RECV_ERROR	_MD_win32_map_recv_error
    71 extern void _MD_win32_map_recvfrom_error(PRInt32 err);
    72 #define	_PR_MD_MAP_RECVFROM_ERROR	_MD_win32_map_recvfrom_error
    74 extern void _MD_win32_map_send_error(PRInt32 err);
    75 #define	_PR_MD_MAP_SEND_ERROR	_MD_win32_map_send_error
    77 extern void _MD_win32_map_sendto_error(PRInt32 err);
    78 #define	_PR_MD_MAP_SENDTO_ERROR	_MD_win32_map_sendto_error
    80 extern void _MD_win32_map_accept_error(PRInt32 err);
    81 #define	_PR_MD_MAP_ACCEPT_ERROR	_MD_win32_map_accept_error
    83 extern void _MD_win32_map_acceptex_error(PRInt32 err);
    84 #define	_PR_MD_MAP_ACCEPTEX_ERROR	_MD_win32_map_acceptex_error
    86 extern PRInt32 _MD_win32_map_connect_error(PRInt32 err);
    87 #define	_PR_MD_MAP_CONNECT_ERROR	_MD_win32_map_connect_error
    89 extern void _MD_win32_map_bind_error(PRInt32 err);
    90 #define	_PR_MD_MAP_BIND_ERROR	_MD_win32_map_bind_error
    92 extern void _MD_win32_map_listen_error(PRInt32 err);
    93 #define	_PR_MD_MAP_LISTEN_ERROR	_MD_win32_map_listen_error
    95 extern void _MD_win32_map_shutdown_error(PRInt32 err);
    96 #define	_PR_MD_MAP_SHUTDOWN_ERROR	_MD_win32_map_shutdown_error
    98 extern void _MD_win32_map_getsockname_error(PRInt32 err);
    99 #define	_PR_MD_MAP_GETSOCKNAME_ERROR	_MD_win32_map_getsockname_error
   101 extern void _MD_win32_map_getpeername_error(PRInt32 err);
   102 #define	_PR_MD_MAP_GETPEERNAME_ERROR	_MD_win32_map_getpeername_error
   104 extern void _MD_win32_map_getsockopt_error(PRInt32 err);
   105 #define	_PR_MD_MAP_GETSOCKOPT_ERROR	_MD_win32_map_getsockopt_error
   107 extern void _MD_win32_map_setsockopt_error(PRInt32 err);
   108 #define	_PR_MD_MAP_SETSOCKOPT_ERROR	_MD_win32_map_setsockopt_error
   110 extern void _MD_win32_map_open_error(PRInt32 err);
   111 #define	_PR_MD_MAP_OPEN_ERROR	_MD_win32_map_open_error
   113 extern void _MD_win32_map_gethostname_error(PRInt32 err);
   114 #define	_PR_MD_MAP_GETHOSTNAME_ERROR	_MD_win32_map_gethostname_error
   116 extern void _MD_win32_map_select_error(PRInt32 err);
   117 #define	_PR_MD_MAP_SELECT_ERROR	_MD_win32_map_select_error
   119 extern void _MD_win32_map_lockf_error(int err);
   120 #define _PR_MD_MAP_LOCKF_ERROR  _MD_win32_map_lockf_error
   122 #endif /* nspr_win32_errors_h___ */

mercurial