Skip to content

Commit 8f8b990

Browse files
committed
Updated license
1 parent e25f75c commit 8f8b990

File tree

5 files changed

+64
-23
lines changed

5 files changed

+64
-23
lines changed

doc.go

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,31 @@
1-
//
2-
// This file is part of gp-win32-utils package.
3-
//
4-
// Copyright 2018-202e ARDUINO SA (http://www.arduino.cc/)
5-
//
6-
// This software is released under the GNU General Public License version 3,
7-
// which covers the main part of arduino-cli.
8-
// The terms of this license can be found at:
9-
// https://www.gnu.org/licenses/gpl-3.0.en.html
10-
//
11-
// You can be released from the requirements of the above licenses by purchasing
12-
// a commercial license. Buying such a license is mandatory if you want to modify or
13-
// otherwise use the software for commercial activities involving the Arduino
14-
// software without disclosing the source code of your own applications. To purchase
15-
// a commercial license, send an email to license@arduino.cc.
16-
//
1+
/*
2+
* This file is part of go-win32-utils.
3+
*
4+
* Copyright 2018-2023 ARDUINO SA (http://www.arduino.cc/)
5+
*
6+
* arduino-cli is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 2 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program; if not, write to the Free Software
18+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*
20+
* As a special exception, you may use this file as part of a free software
21+
* library without restriction. Specifically, if other files instantiate
22+
* templates or use macros or inline functions from this file, or you compile
23+
* this file and link it with other files to produce an executable, this
24+
* file does not by itself cause the resulting executable to be covered by
25+
* the GNU General Public License. This exception does not however
26+
* invalidate any other reasons why the executable file might be covered by
27+
* the GNU General Public License.
28+
*/
1729

1830
// win32 is a collection of useful bindings to Win32 API that are not available in the standard
1931
// golang windows/syscall package.

examples_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
22
* This file is part of go-win32-utils.
33
*
4+
* Copyright 2018-2023 ARDUINO SA (http://www.arduino.cc/)
5+
*
46
* arduino-cli is free software; you can redistribute it and/or modify
57
* it under the terms of the GNU General Public License as published by
68
* the Free Software Foundation; either version 2 of the License, or
@@ -23,8 +25,6 @@
2325
* the GNU General Public License. This exception does not however
2426
* invalidate any other reasons why the executable file might be covered by
2527
* the GNU General Public License.
26-
*
27-
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
2828
*/
2929

3030
package win32_test

shell32_fallback.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
// +build !windows
1+
//go:build !windows
22

33
/*
44
* This file is part of go-win32-utils.
55
*
6+
* Copyright 2018-2023 ARDUINO SA (http://www.arduino.cc/)
7+
*
68
* arduino-cli is free software; you can redistribute it and/or modify
79
* it under the terms of the GNU General Public License as published by
810
* the Free Software Foundation; either version 2 of the License, or
@@ -25,8 +27,6 @@
2527
* the GNU General Public License. This exception does not however
2628
* invalidate any other reasons why the executable file might be covered by
2729
* the GNU General Public License.
28-
*
29-
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3030
*/
3131

3232
package win32

shell32_windows.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
22
* This file is part of go-win32-utils.
33
*
4+
* Copyright 2018-2023 ARDUINO SA (http://www.arduino.cc/)
5+
*
46
* arduino-cli is free software; you can redistribute it and/or modify
57
* it under the terms of the GNU General Public License as published by
68
* the Free Software Foundation; either version 2 of the License, or
@@ -23,8 +25,6 @@
2325
* the GNU General Public License. This exception does not however
2426
* invalidate any other reasons why the executable file might be covered by
2527
* the GNU General Public License.
26-
*
27-
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
2828
*/
2929

3030
package win32

syscall_windows.go

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
/*
2+
* This file is part of go-win32-utils.
3+
*
4+
* Copyright 2018-2023 ARDUINO SA (http://www.arduino.cc/)
5+
*
6+
* arduino-cli is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 2 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program; if not, write to the Free Software
18+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*
20+
* As a special exception, you may use this file as part of a free software
21+
* library without restriction. Specifically, if other files instantiate
22+
* templates or use macros or inline functions from this file, or you compile
23+
* this file and link it with other files to produce an executable, this
24+
* file does not by itself cause the resulting executable to be covered by
25+
* the GNU General Public License. This exception does not however
26+
* invalidate any other reasons why the executable file might be covered by
27+
* the GNU General Public License.
28+
*/
29+
130
package win32
231

332
import "syscall"

0 commit comments

Comments
 (0)