1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
-
+
-
+
-
|
/*
* tclWinError.c --
*
* This file contains code for converting from Win32 errors to
* errno errors.
*
* Copyright (c) 1995-1996 by Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* SCCS: @(#) tclWinError.c 1.7 97/10/28 17:30:33
* SCCS: @(#) tclWinError.c 1.8 97/10/29 09:47:13
*/
#include "tclInt.h"
#include "tclWinInt.h"
#include "tclPort.h"
/*
* The following table contains the mapping from Win32 errors to
* errno errors.
*/
static char errorTable[] = {
|