From 968de4689c2c310d57c969a45d300bf4354515ca Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Mon, 25 Apr 2016 14:29:05 -0700 Subject: [PATCH] inc,src,tst: add AGPLv3 notices --- inc/winfsp/fsctl.h | 11 +++++++++++ inc/winfsp/winfsp.h | 11 +++++++++++ src/dll/debug.c | 11 +++++++++++ src/dll/fs.c | 11 +++++++++++ src/dll/fsctl.c | 11 +++++++++++ src/dll/fsop.c | 11 +++++++++++ src/dll/library.c | 11 +++++++++++ src/dll/library.h | 11 +++++++++++ src/dll/np.c | 11 +++++++++++ src/dll/ntstatus.c | 11 +++++++++++ src/dll/path.c | 11 +++++++++++ src/dll/security.c | 11 +++++++++++ src/sys/callbacks.c | 11 +++++++++++ src/sys/cleanup.c | 11 +++++++++++ src/sys/close.c | 11 +++++++++++ src/sys/create.c | 11 +++++++++++ src/sys/debug.c | 11 +++++++++++ src/sys/devctl.c | 11 +++++++++++ src/sys/device.c | 11 +++++++++++ src/sys/dirctl.c | 11 +++++++++++ src/sys/driver.c | 11 +++++++++++ src/sys/driver.h | 11 +++++++++++ src/sys/ea.c | 11 +++++++++++ src/sys/file.c | 11 +++++++++++ src/sys/fileinfo.c | 11 +++++++++++ src/sys/flush.c | 11 +++++++++++ src/sys/fsctl.c | 11 +++++++++++ src/sys/iop.c | 11 +++++++++++ src/sys/ioq.c | 11 +++++++++++ src/sys/lockctl.c | 11 +++++++++++ src/sys/meta.c | 11 +++++++++++ src/sys/read.c | 11 +++++++++++ src/sys/security.c | 11 +++++++++++ src/sys/shutdown.c | 11 +++++++++++ src/sys/util.c | 11 +++++++++++ src/sys/volinfo.c | 11 +++++++++++ src/sys/volume.c | 11 +++++++++++ src/sys/wq.c | 11 +++++++++++ src/sys/write.c | 11 +++++++++++ tst/memfs/memfs-main.c | 11 +++++++++++ tst/memfs/memfs.cpp | 11 +++++++++++ tst/memfs/memfs.h | 11 +++++++++++ 42 files changed, 462 insertions(+) diff --git a/inc/winfsp/fsctl.h b/inc/winfsp/fsctl.h index 8ca152ab..960c3670 100644 --- a/inc/winfsp/fsctl.h +++ b/inc/winfsp/fsctl.h @@ -3,6 +3,17 @@ * * @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 Affero 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. + */ #ifndef WINFSP_FSCTL_H_INCLUDED #define WINFSP_FSCTL_H_INCLUDED diff --git a/inc/winfsp/winfsp.h b/inc/winfsp/winfsp.h index 12eff8fb..e473feac 100644 --- a/inc/winfsp/winfsp.h +++ b/inc/winfsp/winfsp.h @@ -13,6 +13,17 @@ * * @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 Affero 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. + */ #ifndef WINFSP_WINFSP_H_INCLUDED #define WINFSP_WINFSP_H_INCLUDED diff --git a/src/dll/debug.c b/src/dll/debug.c index 6f932043..7c237784 100644 --- a/src/dll/debug.c +++ b/src/dll/debug.c @@ -3,6 +3,17 @@ * * @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 Affero 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/src/dll/fs.c b/src/dll/fs.c index 22f2dffd..9b358936 100644 --- a/src/dll/fs.c +++ b/src/dll/fs.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/dll/fsctl.c b/src/dll/fsctl.c index 72fdd48a..ada85e0d 100644 --- a/src/dll/fsctl.c +++ b/src/dll/fsctl.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/dll/fsop.c b/src/dll/fsop.c index 96eb5baa..ccfc8e1e 100644 --- a/src/dll/fsop.c +++ b/src/dll/fsop.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/dll/library.c b/src/dll/library.c index 84ae9959..ae8a04a9 100644 --- a/src/dll/library.c +++ b/src/dll/library.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/dll/library.h b/src/dll/library.h index 21d019e0..82f32650 100644 --- a/src/dll/library.h +++ b/src/dll/library.h @@ -3,6 +3,17 @@ * * @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 Affero 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. + */ #ifndef WINFSP_DLL_LIBRARY_H_INCLUDED #define WINFSP_DLL_LIBRARY_H_INCLUDED diff --git a/src/dll/np.c b/src/dll/np.c index f4d1de9f..4f756003 100644 --- a/src/dll/np.c +++ b/src/dll/np.c @@ -3,6 +3,17 @@ * * @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 Affero 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/src/dll/ntstatus.c b/src/dll/ntstatus.c index 46b6f556..a37b0eb6 100644 --- a/src/dll/ntstatus.c +++ b/src/dll/ntstatus.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/dll/path.c b/src/dll/path.c index b14e7bdc..549ed652 100644 --- a/src/dll/path.c +++ b/src/dll/path.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/dll/security.c b/src/dll/security.c index 82373374..413d2fad 100644 --- a/src/dll/security.c +++ b/src/dll/security.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/callbacks.c b/src/sys/callbacks.c index d07eee3d..5fab21b3 100644 --- a/src/sys/callbacks.c +++ b/src/sys/callbacks.c @@ -4,6 +4,17 @@ * * @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 Affero 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 diff --git a/src/sys/cleanup.c b/src/sys/cleanup.c index 55ecb77e..dac23a1c 100644 --- a/src/sys/cleanup.c +++ b/src/sys/cleanup.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/close.c b/src/sys/close.c index eb51748e..db8d437b 100644 --- a/src/sys/close.c +++ b/src/sys/close.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/create.c b/src/sys/create.c index fcd46951..7d7f0851 100644 --- a/src/sys/create.c +++ b/src/sys/create.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/debug.c b/src/sys/debug.c index 506172e1..286b2ebf 100644 --- a/src/sys/debug.c +++ b/src/sys/debug.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/devctl.c b/src/sys/devctl.c index a77b365e..12bd1591 100644 --- a/src/sys/devctl.c +++ b/src/sys/devctl.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/device.c b/src/sys/device.c index 755c4880..8254b637 100644 --- a/src/sys/device.c +++ b/src/sys/device.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/dirctl.c b/src/sys/dirctl.c index 0c5fb30a..09b4d538 100644 --- a/src/sys/dirctl.c +++ b/src/sys/dirctl.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/driver.c b/src/sys/driver.c index 762759c5..5bd5a19b 100644 --- a/src/sys/driver.c +++ b/src/sys/driver.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/driver.h b/src/sys/driver.h index 2ae8dd4d..1409b2b9 100644 --- a/src/sys/driver.h +++ b/src/sys/driver.h @@ -3,6 +3,17 @@ * * @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 Affero 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. + */ #ifndef WINFSP_SYS_DRIVER_H_INCLUDED #define WINFSP_SYS_DRIVER_H_INCLUDED diff --git a/src/sys/ea.c b/src/sys/ea.c index 1869cbbb..8d910139 100644 --- a/src/sys/ea.c +++ b/src/sys/ea.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/file.c b/src/sys/file.c index 0a220635..92920763 100644 --- a/src/sys/file.c +++ b/src/sys/file.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/fileinfo.c b/src/sys/fileinfo.c index 2a195ad9..10cffc10 100644 --- a/src/sys/fileinfo.c +++ b/src/sys/fileinfo.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/flush.c b/src/sys/flush.c index 90255991..3f8c02b3 100644 --- a/src/sys/flush.c +++ b/src/sys/flush.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/fsctl.c b/src/sys/fsctl.c index cbd2a90a..bf696dd9 100644 --- a/src/sys/fsctl.c +++ b/src/sys/fsctl.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/iop.c b/src/sys/iop.c index f70a37e1..4060ebac 100644 --- a/src/sys/iop.c +++ b/src/sys/iop.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/ioq.c b/src/sys/ioq.c index 48d327bd..41fba78a 100644 --- a/src/sys/ioq.c +++ b/src/sys/ioq.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/lockctl.c b/src/sys/lockctl.c index 5775385a..8e25efb8 100644 --- a/src/sys/lockctl.c +++ b/src/sys/lockctl.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/meta.c b/src/sys/meta.c index 9290c6f6..f54ed10e 100644 --- a/src/sys/meta.c +++ b/src/sys/meta.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/read.c b/src/sys/read.c index 4681e192..b17a9bcb 100644 --- a/src/sys/read.c +++ b/src/sys/read.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/security.c b/src/sys/security.c index b01397b8..0d76e69d 100644 --- a/src/sys/security.c +++ b/src/sys/security.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/shutdown.c b/src/sys/shutdown.c index 9dfca8da..13c75c89 100644 --- a/src/sys/shutdown.c +++ b/src/sys/shutdown.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/util.c b/src/sys/util.c index 5a1d8fd4..8b2945ce 100644 --- a/src/sys/util.c +++ b/src/sys/util.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/volinfo.c b/src/sys/volinfo.c index 5b144e67..ac15c240 100644 --- a/src/sys/volinfo.c +++ b/src/sys/volinfo.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/volume.c b/src/sys/volume.c index 1ce7a5f2..f0bfc6f4 100644 --- a/src/sys/volume.c +++ b/src/sys/volume.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/wq.c b/src/sys/wq.c index cade0147..b8e7dbe2 100644 --- a/src/sys/wq.c +++ b/src/sys/wq.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/src/sys/write.c b/src/sys/write.c index 7c9cae87..3abba430 100644 --- a/src/sys/write.c +++ b/src/sys/write.c @@ -3,6 +3,17 @@ * * @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 Affero 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 diff --git a/tst/memfs/memfs-main.c b/tst/memfs/memfs-main.c index f799e5fb..8e126a9f 100644 --- a/tst/memfs/memfs-main.c +++ b/tst/memfs/memfs-main.c @@ -3,6 +3,17 @@ * * @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 Affero 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 "memfs.h" diff --git a/tst/memfs/memfs.cpp b/tst/memfs/memfs.cpp index 280c80da..6fa5fbd7 100644 --- a/tst/memfs/memfs.cpp +++ b/tst/memfs/memfs.cpp @@ -3,6 +3,17 @@ * * @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 Affero 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. + */ #undef _DEBUG #include "memfs.h" diff --git a/tst/memfs/memfs.h b/tst/memfs/memfs.h index ca71dd11..9e512c9f 100644 --- a/tst/memfs/memfs.h +++ b/tst/memfs/memfs.h @@ -3,6 +3,17 @@ * * @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 Affero 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. + */ #ifndef MEMFS_H_INCLUDED #define MEMFS_H_INCLUDED