From b072a1f0da53855e3355073e95e3850372280876 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Tue, 25 Oct 2016 20:29:05 -0700 Subject: [PATCH] tst: winfsp-tests: add license headers --- tst/winfsp-tests/create-test.c | 17 +++++++++++++++++ tst/winfsp-tests/dirctl-test.c | 17 +++++++++++++++++ tst/winfsp-tests/eventlog-test.c | 17 +++++++++++++++++ tst/winfsp-tests/flush-test.c | 17 +++++++++++++++++ tst/winfsp-tests/fuse-opt-test.c | 17 +++++++++++++++++ tst/winfsp-tests/info-test.c | 17 +++++++++++++++++ tst/winfsp-tests/lock-test.c | 17 +++++++++++++++++ tst/winfsp-tests/memfs-test.c | 17 +++++++++++++++++ tst/winfsp-tests/mount-test.c | 17 +++++++++++++++++ tst/winfsp-tests/path-test.c | 17 +++++++++++++++++ tst/winfsp-tests/posix-test.c | 17 +++++++++++++++++ tst/winfsp-tests/rdwr-test.c | 17 +++++++++++++++++ tst/winfsp-tests/reparse-test.c | 17 +++++++++++++++++ tst/winfsp-tests/resilient.c | 2 +- tst/winfsp-tests/security-test.c | 17 +++++++++++++++++ tst/winfsp-tests/stream-tests.c | 17 +++++++++++++++++ tst/winfsp-tests/timeout-test.c | 17 +++++++++++++++++ tst/winfsp-tests/winfsp-tests.c | 17 +++++++++++++++++ tst/winfsp-tests/winfsp-tests.h | 17 +++++++++++++++++ 19 files changed, 307 insertions(+), 1 deletion(-) diff --git a/tst/winfsp-tests/create-test.c b/tst/winfsp-tests/create-test.c index b9e61666..e5e7cd2c 100644 --- a/tst/winfsp-tests/create-test.c +++ b/tst/winfsp-tests/create-test.c @@ -1,3 +1,20 @@ +/** + * @file create-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/dirctl-test.c b/tst/winfsp-tests/dirctl-test.c index ae350b5d..baf3c797 100644 --- a/tst/winfsp-tests/dirctl-test.c +++ b/tst/winfsp-tests/dirctl-test.c @@ -1,3 +1,20 @@ +/** + * @file dirctl-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/eventlog-test.c b/tst/winfsp-tests/eventlog-test.c index 8b429ec8..25357850 100644 --- a/tst/winfsp-tests/eventlog-test.c +++ b/tst/winfsp-tests/eventlog-test.c @@ -1,3 +1,20 @@ +/** + * @file eventlog-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include diff --git a/tst/winfsp-tests/flush-test.c b/tst/winfsp-tests/flush-test.c index 3a9a6184..44a28609 100644 --- a/tst/winfsp-tests/flush-test.c +++ b/tst/winfsp-tests/flush-test.c @@ -1,3 +1,20 @@ +/** + * @file flush-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/fuse-opt-test.c b/tst/winfsp-tests/fuse-opt-test.c index 19120141..e9683d7d 100644 --- a/tst/winfsp-tests/fuse-opt-test.c +++ b/tst/winfsp-tests/fuse-opt-test.c @@ -1,3 +1,20 @@ +/** + * @file fuse-opt-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/info-test.c b/tst/winfsp-tests/info-test.c index 12c3bbaf..939c20bd 100644 --- a/tst/winfsp-tests/info-test.c +++ b/tst/winfsp-tests/info-test.c @@ -1,3 +1,20 @@ +/** + * @file info-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/lock-test.c b/tst/winfsp-tests/lock-test.c index d8c5030a..16bc797e 100644 --- a/tst/winfsp-tests/lock-test.c +++ b/tst/winfsp-tests/lock-test.c @@ -1,3 +1,20 @@ +/** + * @file lock-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/memfs-test.c b/tst/winfsp-tests/memfs-test.c index 193cea2e..0cdaf5bf 100644 --- a/tst/winfsp-tests/memfs-test.c +++ b/tst/winfsp-tests/memfs-test.c @@ -1,3 +1,20 @@ +/** + * @file memfs-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/mount-test.c b/tst/winfsp-tests/mount-test.c index 65f3cb96..9f2d1aee 100644 --- a/tst/winfsp-tests/mount-test.c +++ b/tst/winfsp-tests/mount-test.c @@ -1,3 +1,20 @@ +/** + * @file mount-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/path-test.c b/tst/winfsp-tests/path-test.c index 309b8e02..0b7c07b9 100644 --- a/tst/winfsp-tests/path-test.c +++ b/tst/winfsp-tests/path-test.c @@ -1,3 +1,20 @@ +/** + * @file path-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include diff --git a/tst/winfsp-tests/posix-test.c b/tst/winfsp-tests/posix-test.c index d717e7a2..8f1d78b1 100644 --- a/tst/winfsp-tests/posix-test.c +++ b/tst/winfsp-tests/posix-test.c @@ -1,3 +1,20 @@ +/** + * @file posix-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/rdwr-test.c b/tst/winfsp-tests/rdwr-test.c index 8bd663dd..efe71942 100644 --- a/tst/winfsp-tests/rdwr-test.c +++ b/tst/winfsp-tests/rdwr-test.c @@ -1,3 +1,20 @@ +/** + * @file rdwr-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/reparse-test.c b/tst/winfsp-tests/reparse-test.c index 2f9d0825..55864211 100644 --- a/tst/winfsp-tests/reparse-test.c +++ b/tst/winfsp-tests/reparse-test.c @@ -1,3 +1,20 @@ +/** + * @file reparse-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/resilient.c b/tst/winfsp-tests/resilient.c index 01667fdd..4333732b 100644 --- a/tst/winfsp-tests/resilient.c +++ b/tst/winfsp-tests/resilient.c @@ -1,5 +1,5 @@ /** - * @file tst/resilient.c + * @file resilient.c * * @copyright 2015-2016 Bill Zissimopoulos */ diff --git a/tst/winfsp-tests/security-test.c b/tst/winfsp-tests/security-test.c index acd7006b..4ba6bd0d 100644 --- a/tst/winfsp-tests/security-test.c +++ b/tst/winfsp-tests/security-test.c @@ -1,3 +1,20 @@ +/** + * @file security-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/stream-tests.c b/tst/winfsp-tests/stream-tests.c index bb164eb2..84e714b2 100644 --- a/tst/winfsp-tests/stream-tests.c +++ b/tst/winfsp-tests/stream-tests.c @@ -1,3 +1,20 @@ +/** + * @file stream-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/timeout-test.c b/tst/winfsp-tests/timeout-test.c index 8a7fa0cd..d7ce68f1 100644 --- a/tst/winfsp-tests/timeout-test.c +++ b/tst/winfsp-tests/timeout-test.c @@ -1,3 +1,20 @@ +/** + * @file timeout-test.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/winfsp-tests.c b/tst/winfsp-tests/winfsp-tests.c index da7c31fe..33cc4cee 100644 --- a/tst/winfsp-tests/winfsp-tests.c +++ b/tst/winfsp-tests/winfsp-tests.c @@ -1,3 +1,20 @@ +/** + * @file winfsp-tests.c + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include #include #include diff --git a/tst/winfsp-tests/winfsp-tests.h b/tst/winfsp-tests/winfsp-tests.h index 032b44e4..d94c6c97 100644 --- a/tst/winfsp-tests/winfsp-tests.h +++ b/tst/winfsp-tests/winfsp-tests.h @@ -1,3 +1,20 @@ +/** + * @file winfsp-tests.h + * + * @copyright 2015-2016 Bill Zissimopoulos + */ +/* + * This file is part of WinFsp. + * + * You can redistribute it and/or modify it under the terms of the GNU + * General Public License version 3 as published by the Free Software + * Foundation. + * + * Licensees holding a valid commercial license may use this file in + * accordance with the commercial license agreement provided with the + * software. + */ + #include void *memfs_start_ex(ULONG Flags, ULONG FileInfoTimeout);