diff options
Diffstat (limited to 'gl/msvc-inval.h')
-rw-r--r-- | gl/msvc-inval.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gl/msvc-inval.h b/gl/msvc-inval.h index dcb0353..ed00461 100644 --- a/gl/msvc-inval.h +++ b/gl/msvc-inval.h | |||
@@ -1,18 +1,18 @@ | |||
1 | /* Invalid parameter handler for MSVC runtime libraries. | 1 | /* Invalid parameter handler for MSVC runtime libraries. |
2 | Copyright (C) 2011-2013 Free Software Foundation, Inc. | 2 | Copyright (C) 2011-2023 Free Software Foundation, Inc. |
3 | 3 | ||
4 | This program is free software; you can redistribute it and/or modify | 4 | This file is free software: you can redistribute it and/or modify |
5 | it under the terms of the GNU General Public License as published by | 5 | it under the terms of the GNU Lesser General Public License as |
6 | the Free Software Foundation; either version 3, or (at your option) | 6 | published by the Free Software Foundation; either version 2.1 of the |
7 | any later version. | 7 | License, or (at your option) any later version. |
8 | 8 | ||
9 | This program is distributed in the hope that it will be useful, | 9 | This file is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | GNU General Public License for more details. | 12 | GNU Lesser General Public License for more details. |
13 | 13 | ||
14 | You should have received a copy of the GNU General Public License along | 14 | You should have received a copy of the GNU Lesser General Public License |
15 | with this program; if not, see <http://www.gnu.org/licenses/>. */ | 15 | along with this program. If not, see <https://www.gnu.org/licenses/>. */ |
16 | 16 | ||
17 | #ifndef _MSVC_INVAL_H | 17 | #ifndef _MSVC_INVAL_H |
18 | #define _MSVC_INVAL_H | 18 | #define _MSVC_INVAL_H |
@@ -95,7 +95,7 @@ extern void gl_msvc_inval_ensure_handler (void); | |||
95 | 95 | ||
96 | /* Gnulib can define its own status codes, as described in the page | 96 | /* Gnulib can define its own status codes, as described in the page |
97 | "Raising Software Exceptions" on microsoft.com | 97 | "Raising Software Exceptions" on microsoft.com |
98 | <http://msdn.microsoft.com/en-us/library/het71c37.aspx>. | 98 | <https://docs.microsoft.com/en-us/cpp/cpp/raising-software-exceptions>. |
99 | Our status codes are composed of | 99 | Our status codes are composed of |
100 | - 0xE0000000, mandatory for all user-defined status codes, | 100 | - 0xE0000000, mandatory for all user-defined status codes, |
101 | - 0x474E550, a API identifier ("GNU"), | 101 | - 0x474E550, a API identifier ("GNU"), |
@@ -106,7 +106,7 @@ extern void gl_msvc_inval_ensure_handler (void); | |||
106 | # if defined _MSC_VER | 106 | # if defined _MSC_VER |
107 | /* A compiler that supports __try/__except, as described in the page | 107 | /* A compiler that supports __try/__except, as described in the page |
108 | "try-except statement" on microsoft.com | 108 | "try-except statement" on microsoft.com |
109 | <http://msdn.microsoft.com/en-us/library/s58ftw19.aspx>. | 109 | <https://docs.microsoft.com/en-us/cpp/cpp/try-except-statement>. |
110 | With __try/__except, we can use the multithread-safe exception handling. */ | 110 | With __try/__except, we can use the multithread-safe exception handling. */ |
111 | 111 | ||
112 | # ifdef __cplusplus | 112 | # ifdef __cplusplus |