diff --git a/build/VStudio/installer/CustomActions/CustomActions.cpp b/build/VStudio/installer/CustomActions/CustomActions.cpp
index 43c99ded..9055c3f8 100644
--- a/build/VStudio/installer/CustomActions/CustomActions.cpp
+++ b/build/VStudio/installer/CustomActions/CustomActions.cpp
@@ -1,7 +1,7 @@
/**
* @file CustomActions.cpp
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/doc/WinFsp-API-launch.h.md b/doc/WinFsp-API-launch.h.md
index aacf2e7d..40ee84d9 100644
--- a/doc/WinFsp-API-launch.h.md
+++ b/doc/WinFsp-API-launch.h.md
@@ -416,7 +416,7 @@ typedef struct _FSP_LAUNCH_REG_RECORD {
-Copyright © 2015-2021 Bill Zissimopoulos
+Copyright © 2015-2026 Bill Zissimopoulos
Generated with prettydoc
diff --git a/doc/WinFsp-API-winfsp.h.md b/doc/WinFsp-API-winfsp.h.md
index bb8a825e..e71e2e2f 100644
--- a/doc/WinFsp-API-winfsp.h.md
+++ b/doc/WinFsp-API-winfsp.h.md
@@ -404,6 +404,59 @@ NTSTATUS ( *DeleteReparsePoint)(
STATUS\_SUCCESS or error code.
+
+
+
+
+
+DispatcherStopped - Inform the file system that its dispatcher has been stopped.
+
+
+
+
+```c
+VOID ( *DispatcherStopped)(
+ FSP_FILE_SYSTEM *FileSystem,
+ BOOLEAN Normally);
+```
+
+**Parameters**
+
+- _FileSystem_ \- The file system on which this request is posted.
+- _Normally_ \- TRUE if the file system is being stopped via FspFileSystemStopDispatcher.
+FALSE if the file system is being stopped because of another reason such
+as driver unload/uninstall.
+
+**Discussion**
+
+Prior to WinFsp v2.0 the FSD would never unmount a file system volume unless
+the user mode file system requested the unmount. Since WinFsp v2.0 it is possible
+for the FSD to unmount a file system volume without an explicit user mode file system
+request. For example, this happens when the FSD is being uninstalled.
+
+A user mode file system can use this operation to determine when its dispatcher
+has been stopped. The Normally parameter can be used to determine why the dispatcher
+was stopped: it is TRUE when the file system is being stopped via
+FspFileSystemStopDispatcher and FALSE otherwise.
+
+When the file system receives a request with Normally == TRUE it need not take any
+extra steps. This case is the same as for pre-v2.0 versions: since the file system
+stopped the dispatcher via FspFileSystemStopDispatcher, it will likely exit its
+process soon.
+
+When the file system receives a request with Normally == FALSE it may need to take
+extra steps to exit its process as this is not done by default.
+
+A file system that uses the FspService infrastructure may use the
+FspFileSystemStopServiceIfNecessary API to correctly handle all cases.
+
+This operation is the last one that a file system will receive.
+
+**See Also**
+
+- FspFileSystemStopServiceIfNecessary
+
+
@@ -1655,7 +1708,7 @@ FSP_API NTSTATUS FspFileSystemCreate(
- _DevicePath_ \- The name of the control device for this file system. This must be either
FSP\_FSCTL\_DISK\_DEVICE\_NAME or FSP\_FSCTL\_NET\_DEVICE\_NAME.
- _VolumeParams_ \- Volume parameters for the newly created file system.
-- _Interface_ \- A pointer to the actual operations that actually implement this user mode file system.
+- _Interface_ \- A pointer to the operations that implement this user mode file system.
- _PFileSystem_ \- [out]
Pointer that will receive the file system object created on successful return from this
call.
@@ -2309,6 +2362,39 @@ FSP_API VOID FspFileSystemStopDispatcher(
- _FileSystem_ \- The file system object.
+
+
+
+
+
+FspFileSystemStopServiceIfNecessary - Stop a file system service, if any.
+
+
+
+
+```c
+FSP_API VOID FspFileSystemStopServiceIfNecessary(
+ FSP_FILE_SYSTEM *FileSystem,
+ BOOLEAN Normally);
+```
+
+**Parameters**
+
+- _FileSystem_ \- The file system object.
+- _Normally_ \- TRUE if the file system is being stopped via FspFileSystemStopDispatcher.
+FALSE if the file system is being stopped because of another reason such
+as driver unload/uninstall.
+
+**Discussion**
+
+This is a helper for implementing the DispatcherStopped operation, but only for file systems
+that use the FspService infrastructure.
+
+**See Also**
+
+- DispatcherStopped
+
+
@@ -2651,6 +2737,8 @@ This function starts and runs a service. It executes the Windows StartServiceCtr
to connect the service process to the Service Control Manager. If the Service Control Manager is
not available (and console mode is allowed) it will enter console mode.
+This function should be called once per process.
+
@@ -2775,7 +2863,7 @@ in a clean manner by calling this function.
-Copyright © 2015-2021 Bill Zissimopoulos
+Copyright © 2015-2026 Bill Zissimopoulos
Generated with prettydoc
diff --git a/ext/tlib/callstack.c b/ext/tlib/callstack.c
index e2a30125..1371b2ba 100644
--- a/ext/tlib/callstack.c
+++ b/ext/tlib/callstack.c
@@ -1,7 +1,7 @@
/**
* @file tlib/callstack.c
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#include
diff --git a/ext/tlib/callstack.h b/ext/tlib/callstack.h
index 95db067d..7bbbb220 100644
--- a/ext/tlib/callstack.h
+++ b/ext/tlib/callstack.h
@@ -1,7 +1,7 @@
/**
* @file tlib/callstack.h
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#ifndef TLIB_CALLSTACK_H_INCLUDED
diff --git a/ext/tlib/injected/allfunc.h b/ext/tlib/injected/allfunc.h
index 4533d49e..7809ee8b 100644
--- a/ext/tlib/injected/allfunc.h
+++ b/ext/tlib/injected/allfunc.h
@@ -1,7 +1,7 @@
/**
* @file tlib/injected/allfunc.h
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#ifndef TLIB_INJECTED_ALLFUNC_H_INCLUDED
diff --git a/ext/tlib/injected/curlfunc.c b/ext/tlib/injected/curlfunc.c
index f1aac3fd..b032c84a 100644
--- a/ext/tlib/injected/curlfunc.c
+++ b/ext/tlib/injected/curlfunc.c
@@ -1,7 +1,7 @@
/**
* @file tlib/injected/curlfunc.c
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#include
diff --git a/ext/tlib/injected/curlfunc.h b/ext/tlib/injected/curlfunc.h
index edb5dc8c..50abc7a3 100644
--- a/ext/tlib/injected/curlfunc.h
+++ b/ext/tlib/injected/curlfunc.h
@@ -1,7 +1,7 @@
/**
* @file tlib/injected/curlfunc.h
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#ifndef TLIB_INJECTED_CURLFUNC_H_INCLUDED
diff --git a/ext/tlib/injected/stdfunc.c b/ext/tlib/injected/stdfunc.c
index 95cf96ae..5e328a4d 100644
--- a/ext/tlib/injected/stdfunc.c
+++ b/ext/tlib/injected/stdfunc.c
@@ -1,7 +1,7 @@
/**
* @file tlib/injected/stdfunc.c
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#include
diff --git a/ext/tlib/injected/stdfunc.h b/ext/tlib/injected/stdfunc.h
index 27058552..5c9381ee 100644
--- a/ext/tlib/injected/stdfunc.h
+++ b/ext/tlib/injected/stdfunc.h
@@ -1,7 +1,7 @@
/**
* @file tlib/injected/stdfunc.h
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#ifndef TLIB_INJECTED_STDFUNC_H_INCLUDED
diff --git a/ext/tlib/injection.c b/ext/tlib/injection.c
index 1e3181ed..fbec256a 100644
--- a/ext/tlib/injection.c
+++ b/ext/tlib/injection.c
@@ -1,7 +1,7 @@
/**
* @file tlib/injection.c
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#include
diff --git a/ext/tlib/injection.h b/ext/tlib/injection.h
index 22140e28..59b84711 100644
--- a/ext/tlib/injection.h
+++ b/ext/tlib/injection.h
@@ -1,7 +1,7 @@
/**
* @file tlib/injection.h
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
/* NOTE: This header may usefully be included multiple times.
diff --git a/ext/tlib/testsuite.c b/ext/tlib/testsuite.c
index 719a7cf7..4f5298d0 100644
--- a/ext/tlib/testsuite.c
+++ b/ext/tlib/testsuite.c
@@ -1,7 +1,7 @@
/**
* @file tlib/testsuite.c
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#include
diff --git a/ext/tlib/testsuite.h b/ext/tlib/testsuite.h
index 200edfa0..fb13bc41 100644
--- a/ext/tlib/testsuite.h
+++ b/ext/tlib/testsuite.h
@@ -1,7 +1,7 @@
/**
* @file tlib/testsuite.h
*
- * @copyright 2014-2025 Bill Zissimopoulos
+ * @copyright 2014-2026 Bill Zissimopoulos
*/
#ifndef TLIB_TESTSUITE_H_INCLUDED
diff --git a/inc/fuse/fuse.h b/inc/fuse/fuse.h
index e84d656b..7f54ab95 100644
--- a/inc/fuse/fuse.h
+++ b/inc/fuse/fuse.h
@@ -6,7 +6,7 @@
* FUSE: Filesystem in Userspace
* Copyright (C) 2001-2007 Miklos Szeredi
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/fuse/fuse_common.h b/inc/fuse/fuse_common.h
index 6c6e7e5f..9b28f92e 100644
--- a/inc/fuse/fuse_common.h
+++ b/inc/fuse/fuse_common.h
@@ -6,7 +6,7 @@
* FUSE: Filesystem in Userspace
* Copyright (C) 2001-2007 Miklos Szeredi
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/fuse/fuse_opt.h b/inc/fuse/fuse_opt.h
index 6767a93b..629daa46 100644
--- a/inc/fuse/fuse_opt.h
+++ b/inc/fuse/fuse_opt.h
@@ -6,7 +6,7 @@
* FUSE: Filesystem in Userspace
* Copyright (C) 2001-2007 Miklos Szeredi
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/fuse/winfsp_fuse.h b/inc/fuse/winfsp_fuse.h
index f41dd431..edabf710 100644
--- a/inc/fuse/winfsp_fuse.h
+++ b/inc/fuse/winfsp_fuse.h
@@ -2,7 +2,7 @@
* @file fuse/winfsp_fuse.h
* WinFsp FUSE compatible API.
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/fuse3/fuse.h b/inc/fuse3/fuse.h
index 66dc594e..5ab33b18 100644
--- a/inc/fuse3/fuse.h
+++ b/inc/fuse3/fuse.h
@@ -6,7 +6,7 @@
* FUSE: Filesystem in Userspace
* Copyright (C) 2001-2007 Miklos Szeredi
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/fuse3/fuse_common.h b/inc/fuse3/fuse_common.h
index c7eb170d..c6cd5091 100644
--- a/inc/fuse3/fuse_common.h
+++ b/inc/fuse3/fuse_common.h
@@ -6,7 +6,7 @@
* FUSE: Filesystem in Userspace
* Copyright (C) 2001-2007 Miklos Szeredi
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/fuse3/fuse_opt.h b/inc/fuse3/fuse_opt.h
index 9ffe10f7..d2e7018d 100644
--- a/inc/fuse3/fuse_opt.h
+++ b/inc/fuse3/fuse_opt.h
@@ -2,7 +2,7 @@
* @file fuse3/fuse_opt.h
* WinFsp FUSE3 compatible API.
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/fuse3/winfsp_fuse.h b/inc/fuse3/winfsp_fuse.h
index bae9aa74..992bd5c6 100644
--- a/inc/fuse3/winfsp_fuse.h
+++ b/inc/fuse3/winfsp_fuse.h
@@ -2,7 +2,7 @@
* @file fuse3/winfsp_fuse.h
* WinFsp FUSE3 compatible API.
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/winfsp/fsctl.h b/inc/winfsp/fsctl.h
index 94ade4a9..a648537b 100644
--- a/inc/winfsp/fsctl.h
+++ b/inc/winfsp/fsctl.h
@@ -1,7 +1,7 @@
/**
* @file winfsp/fsctl.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/winfsp/launch.h b/inc/winfsp/launch.h
index a07b916a..c41f5523 100644
--- a/inc/winfsp/launch.h
+++ b/inc/winfsp/launch.h
@@ -5,7 +5,7 @@
* In order to use the WinFsp Launch API a program must include <winfsp/launch.h>
* and link with the winfsp_x64.dll (or winfsp_x86.dll) library.
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/winfsp/winfsp.h b/inc/winfsp/winfsp.h
index c0cd62ca..0bfa8a25 100644
--- a/inc/winfsp/winfsp.h
+++ b/inc/winfsp/winfsp.h
@@ -5,7 +5,7 @@
* In order to use the WinFsp API the user mode file system must include <winfsp/winfsp.h>
* and link with the winfsp_x64.dll (or winfsp_x86.dll) library.
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/inc/winfsp/winfsp.hpp b/inc/winfsp/winfsp.hpp
index 33bb494b..ae92d49a 100644
--- a/inc/winfsp/winfsp.hpp
+++ b/inc/winfsp/winfsp.hpp
@@ -2,7 +2,7 @@
* @file winfsp/winfsp.hpp
* WinFsp C++ Layer.
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/opt/cygfuse/fuse/cygfuse.c b/opt/cygfuse/fuse/cygfuse.c
index 2eda5d5c..d7c2721b 100644
--- a/opt/cygfuse/fuse/cygfuse.c
+++ b/opt/cygfuse/fuse/cygfuse.c
@@ -1,7 +1,7 @@
/**
* @file fuse/cygfuse.c
*
- * @copyright 2015-2022 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/opt/cygfuse/fuse3/cygfuse.c b/opt/cygfuse/fuse3/cygfuse.c
index 7da566ef..f9044118 100644
--- a/opt/cygfuse/fuse3/cygfuse.c
+++ b/opt/cygfuse/fuse3/cygfuse.c
@@ -1,7 +1,7 @@
/**
* @file fuse3/cygfuse.c
*
- * @copyright 2015-2022 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/opt/fsext/inc/winfsp/fsext.h b/opt/fsext/inc/winfsp/fsext.h
index e91bb239..e3ef3360 100644
--- a/opt/fsext/inc/winfsp/fsext.h
+++ b/opt/fsext/inc/winfsp/fsext.h
@@ -1,7 +1,7 @@
/**
* @file winfsp/fsext.h
*
- * @copyright 2015-2022 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/debug.c b/src/dll/debug.c
index d0a29b60..bc499516 100644
--- a/src/dll/debug.c
+++ b/src/dll/debug.c
@@ -1,7 +1,7 @@
/**
* @file dll/debug.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/debuglog.c b/src/dll/debuglog.c
index 0d052d3b..31e616d7 100644
--- a/src/dll/debuglog.c
+++ b/src/dll/debuglog.c
@@ -1,7 +1,7 @@
/**
* @file dll/debuglog.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/dirbuf.c b/src/dll/dirbuf.c
index d88fd21e..fe82150e 100644
--- a/src/dll/dirbuf.c
+++ b/src/dll/dirbuf.c
@@ -1,7 +1,7 @@
/**
* @file dll/dirbuf.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/eventlog.c b/src/dll/eventlog.c
index 2a994470..de27c97b 100644
--- a/src/dll/eventlog.c
+++ b/src/dll/eventlog.c
@@ -1,7 +1,7 @@
/**
* @file dll/eventlog.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fs.c b/src/dll/fs.c
index a3549df4..8dfd46f8 100644
--- a/src/dll/fs.c
+++ b/src/dll/fs.c
@@ -1,7 +1,7 @@
/**
* @file dll/fs.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fsctl.c b/src/dll/fsctl.c
index b8df1473..7621e69c 100644
--- a/src/dll/fsctl.c
+++ b/src/dll/fsctl.c
@@ -1,7 +1,7 @@
/**
* @file dll/fsctl.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fsop.c b/src/dll/fsop.c
index da1977ed..fbef63c0 100644
--- a/src/dll/fsop.c
+++ b/src/dll/fsop.c
@@ -1,7 +1,7 @@
/**
* @file dll/fsop.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse/fuse.c b/src/dll/fuse/fuse.c
index cb60c7ae..d59afb01 100644
--- a/src/dll/fuse/fuse.c
+++ b/src/dll/fuse/fuse.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse/fuse.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse/fuse_compat.c b/src/dll/fuse/fuse_compat.c
index 8cb0d3b1..39167eb1 100644
--- a/src/dll/fuse/fuse_compat.c
+++ b/src/dll/fuse/fuse_compat.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse/fuse_compat.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse/fuse_intf.c b/src/dll/fuse/fuse_intf.c
index 7dcf39a3..5dc6100f 100644
--- a/src/dll/fuse/fuse_intf.c
+++ b/src/dll/fuse/fuse_intf.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse/fuse_intf.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse/fuse_loop.c b/src/dll/fuse/fuse_loop.c
index 7eafe414..e9b35c05 100644
--- a/src/dll/fuse/fuse_loop.c
+++ b/src/dll/fuse/fuse_loop.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse/fuse_loop.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse/fuse_main.c b/src/dll/fuse/fuse_main.c
index fc07b79c..7eccacf5 100644
--- a/src/dll/fuse/fuse_main.c
+++ b/src/dll/fuse/fuse_main.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse/fuse_main.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse/fuse_opt.c b/src/dll/fuse/fuse_opt.c
index d5b90ebf..9c7284ae 100644
--- a/src/dll/fuse/fuse_opt.c
+++ b/src/dll/fuse/fuse_opt.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse/fuse_opt.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse/library.h b/src/dll/fuse/library.h
index 3f39b72e..a05d364d 100644
--- a/src/dll/fuse/library.h
+++ b/src/dll/fuse/library.h
@@ -1,7 +1,7 @@
/**
* @file dll/fuse/library.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse3/fuse2to3.c b/src/dll/fuse3/fuse2to3.c
index 16082017..3382822f 100644
--- a/src/dll/fuse3/fuse2to3.c
+++ b/src/dll/fuse3/fuse2to3.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse3/fuse2to3.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse3/fuse3.c b/src/dll/fuse3/fuse3.c
index f2c841e3..9e783f4c 100644
--- a/src/dll/fuse3/fuse3.c
+++ b/src/dll/fuse3/fuse3.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse3/fuse3.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse3/fuse3_compat.c b/src/dll/fuse3/fuse3_compat.c
index 3b19dd33..c2baada7 100644
--- a/src/dll/fuse3/fuse3_compat.c
+++ b/src/dll/fuse3/fuse3_compat.c
@@ -1,7 +1,7 @@
/**
* @file dll/fuse/fuse3_compat.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/fuse3/library.h b/src/dll/fuse3/library.h
index b1cf9b82..ef2fc532 100644
--- a/src/dll/fuse3/library.h
+++ b/src/dll/fuse3/library.h
@@ -1,7 +1,7 @@
/**
* @file dll/fuse3/library.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/launch.c b/src/dll/launch.c
index e839a6bd..1098fcca 100644
--- a/src/dll/launch.c
+++ b/src/dll/launch.c
@@ -1,7 +1,7 @@
/**
* @file dll/launch.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/ldap.c b/src/dll/ldap.c
index 45c17942..7f26f8cf 100644
--- a/src/dll/ldap.c
+++ b/src/dll/ldap.c
@@ -1,7 +1,7 @@
/**
* @file dll/ldap.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/library.c b/src/dll/library.c
index 253b958a..1fdc49b2 100644
--- a/src/dll/library.c
+++ b/src/dll/library.c
@@ -1,7 +1,7 @@
/**
* @file dll/library.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/library.h b/src/dll/library.h
index cdd6baf7..7e0b1288 100644
--- a/src/dll/library.h
+++ b/src/dll/library.h
@@ -1,7 +1,7 @@
/**
* @file dll/library.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/mount.c b/src/dll/mount.c
index c7b94e81..5467cf10 100644
--- a/src/dll/mount.c
+++ b/src/dll/mount.c
@@ -1,7 +1,7 @@
/**
* @file dll/mount.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/np.c b/src/dll/np.c
index 7f2038ec..f6bc0972 100644
--- a/src/dll/np.c
+++ b/src/dll/np.c
@@ -1,7 +1,7 @@
/**
* @file dll/np.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/ntstatus.c b/src/dll/ntstatus.c
index 43be1b43..ea0c4417 100644
--- a/src/dll/ntstatus.c
+++ b/src/dll/ntstatus.c
@@ -1,7 +1,7 @@
/**
* @file dll/ntstatus.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/path.c b/src/dll/path.c
index 66e50e70..16de26a0 100644
--- a/src/dll/path.c
+++ b/src/dll/path.c
@@ -1,7 +1,7 @@
/**
* @file dll/path.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/security.c b/src/dll/security.c
index 371a800e..73d4e470 100644
--- a/src/dll/security.c
+++ b/src/dll/security.c
@@ -1,7 +1,7 @@
/**
* @file dll/security.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/service.c b/src/dll/service.c
index 5e3a528d..e25c3fcc 100644
--- a/src/dll/service.c
+++ b/src/dll/service.c
@@ -1,7 +1,7 @@
/**
* @file dll/service.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/sxs.c b/src/dll/sxs.c
index e2c29952..412a34fb 100644
--- a/src/dll/sxs.c
+++ b/src/dll/sxs.c
@@ -1,7 +1,7 @@
/**
* @file dll/sxs.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/util.c b/src/dll/util.c
index a8c1851b..8ac7f784 100644
--- a/src/dll/util.c
+++ b/src/dll/util.c
@@ -1,7 +1,7 @@
/**
* @file dll/util.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dll/wksid.c b/src/dll/wksid.c
index c0cfb63c..69e5d548 100644
--- a/src/dll/wksid.c
+++ b/src/dll/wksid.c
@@ -1,7 +1,7 @@
/**
* @file dll/wksid.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dotnet/FileSystemBase+Const.cs b/src/dotnet/FileSystemBase+Const.cs
index a730c0d7..b14c50a3 100644
--- a/src/dotnet/FileSystemBase+Const.cs
+++ b/src/dotnet/FileSystemBase+Const.cs
@@ -1,7 +1,7 @@
/*
* dotnet/FileSystemBase+Const.cs
*
- * Copyright 2015-2025 Bill Zissimopoulos
+ * Copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dotnet/FileSystemBase.cs b/src/dotnet/FileSystemBase.cs
index 99f2293a..f962b9af 100644
--- a/src/dotnet/FileSystemBase.cs
+++ b/src/dotnet/FileSystemBase.cs
@@ -1,7 +1,7 @@
/*
* dotnet/FileSystemBase.cs
*
- * Copyright 2015-2025 Bill Zissimopoulos
+ * Copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dotnet/FileSystemHost.cs b/src/dotnet/FileSystemHost.cs
index f4d0646e..3255beaa 100644
--- a/src/dotnet/FileSystemHost.cs
+++ b/src/dotnet/FileSystemHost.cs
@@ -1,7 +1,7 @@
/*
* dotnet/FileSystemHost.cs
*
- * Copyright 2015-2025 Bill Zissimopoulos
+ * Copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dotnet/Interop.cs b/src/dotnet/Interop.cs
index 0d8f61bc..a6343d87 100644
--- a/src/dotnet/Interop.cs
+++ b/src/dotnet/Interop.cs
@@ -1,7 +1,7 @@
/*
* dotnet/Interop.cs
*
- * Copyright 2015-2025 Bill Zissimopoulos
+ * Copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/dotnet/Service.cs b/src/dotnet/Service.cs
index 4e9bdd01..9b2f576a 100644
--- a/src/dotnet/Service.cs
+++ b/src/dotnet/Service.cs
@@ -1,7 +1,7 @@
/*
* dotnet/Service.cs
*
- * Copyright 2015-2025 Bill Zissimopoulos
+ * Copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/fsptool/fsptool.c b/src/fsptool/fsptool.c
index 3888b263..5c39aa50 100644
--- a/src/fsptool/fsptool.c
+++ b/src/fsptool/fsptool.c
@@ -1,7 +1,7 @@
/**
* @file fsptool/fsptool.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/launcher/launchctl.c b/src/launcher/launchctl.c
index 63bb82fd..883d1f99 100644
--- a/src/launcher/launchctl.c
+++ b/src/launcher/launchctl.c
@@ -1,7 +1,7 @@
/**
* @file launcher/launchctl.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/launcher/launcher.c b/src/launcher/launcher.c
index 1b5f8571..93838eeb 100644
--- a/src/launcher/launcher.c
+++ b/src/launcher/launcher.c
@@ -1,7 +1,7 @@
/**
* @file launcher/launcher.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/launcher/ptrans.c b/src/launcher/ptrans.c
index fd874364..27f00d62 100644
--- a/src/launcher/ptrans.c
+++ b/src/launcher/ptrans.c
@@ -1,7 +1,7 @@
/**
* @file launcher/ptrans.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/shared/ku/config.h b/src/shared/ku/config.h
index ea30ef44..4cf93ddf 100644
--- a/src/shared/ku/config.h
+++ b/src/shared/ku/config.h
@@ -4,7 +4,7 @@
* Shared kernel/user configuration. This file is to be included by the
* FSD and DLL components ONLY!
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/shared/ku/library.h b/src/shared/ku/library.h
index 22e05bb4..48bb278c 100644
--- a/src/shared/ku/library.h
+++ b/src/shared/ku/library.h
@@ -1,7 +1,7 @@
/**
* @file shared/ku/library.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/shared/ku/mountmgr.c b/src/shared/ku/mountmgr.c
index 2c72ed0a..52ce06db 100644
--- a/src/shared/ku/mountmgr.c
+++ b/src/shared/ku/mountmgr.c
@@ -1,7 +1,7 @@
/**
* @file shared/ku/mountmgr.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/shared/ku/posix.c b/src/shared/ku/posix.c
index 5dd5fe57..68fe1048 100644
--- a/src/shared/ku/posix.c
+++ b/src/shared/ku/posix.c
@@ -14,7 +14,7 @@
* [SNAME]
* https://www.cygwin.com/cygwin-ug-net/using-specialnames.html
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/shared/ku/uuid5.c b/src/shared/ku/uuid5.c
index 3493d858..2913f869 100644
--- a/src/shared/ku/uuid5.c
+++ b/src/shared/ku/uuid5.c
@@ -1,7 +1,7 @@
/**
* @file shared/ku/uuid5.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/shared/um/minimal.h b/src/shared/um/minimal.h
index 377ef4dc..345c9843 100644
--- a/src/shared/um/minimal.h
+++ b/src/shared/um/minimal.h
@@ -1,7 +1,7 @@
/**
* @file shared/um/minimal.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/callbacks.c b/src/sys/callbacks.c
index 1426ea22..4037808c 100644
--- a/src/sys/callbacks.c
+++ b/src/sys/callbacks.c
@@ -2,7 +2,7 @@
* @file sys/callbacks.c
* Fast I/O and resource acquisition callbacks.
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/cleanup.c b/src/sys/cleanup.c
index 5ac3ffa0..6022e5dd 100644
--- a/src/sys/cleanup.c
+++ b/src/sys/cleanup.c
@@ -1,7 +1,7 @@
/**
* @file sys/cleanup.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/close.c b/src/sys/close.c
index b6999f0d..59e92e3b 100644
--- a/src/sys/close.c
+++ b/src/sys/close.c
@@ -1,7 +1,7 @@
/**
* @file sys/close.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/create.c b/src/sys/create.c
index eb89dc4f..30b60198 100644
--- a/src/sys/create.c
+++ b/src/sys/create.c
@@ -1,7 +1,7 @@
/**
* @file sys/create.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/debug.c b/src/sys/debug.c
index ff30de1b..d5768ac8 100644
--- a/src/sys/debug.c
+++ b/src/sys/debug.c
@@ -1,7 +1,7 @@
/**
* @file sys/debug.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/devctl.c b/src/sys/devctl.c
index 968b4146..d2d95947 100644
--- a/src/sys/devctl.c
+++ b/src/sys/devctl.c
@@ -1,7 +1,7 @@
/**
* @file sys/devctl.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/device.c b/src/sys/device.c
index 0098d112..b9aa587c 100644
--- a/src/sys/device.c
+++ b/src/sys/device.c
@@ -1,7 +1,7 @@
/**
* @file sys/device.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/devtimer.c b/src/sys/devtimer.c
index 84b44c6f..b6da43c8 100644
--- a/src/sys/devtimer.c
+++ b/src/sys/devtimer.c
@@ -1,7 +1,7 @@
/**
* @file sys/devtimer.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/dirctl.c b/src/sys/dirctl.c
index f28f0cc5..42f32604 100644
--- a/src/sys/dirctl.c
+++ b/src/sys/dirctl.c
@@ -1,7 +1,7 @@
/**
* @file sys/dirctl.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/driver.c b/src/sys/driver.c
index cca261af..6af7acb3 100644
--- a/src/sys/driver.c
+++ b/src/sys/driver.c
@@ -1,7 +1,7 @@
/**
* @file sys/driver.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/driver.h b/src/sys/driver.h
index 0822d3df..f800d563 100644
--- a/src/sys/driver.h
+++ b/src/sys/driver.h
@@ -1,7 +1,7 @@
/**
* @file sys/driver.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/ea.c b/src/sys/ea.c
index 06e97d7f..5b843b44 100644
--- a/src/sys/ea.c
+++ b/src/sys/ea.c
@@ -1,7 +1,7 @@
/**
* @file sys/ea.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/file.c b/src/sys/file.c
index 34539052..3231943b 100644
--- a/src/sys/file.c
+++ b/src/sys/file.c
@@ -1,7 +1,7 @@
/**
* @file sys/file.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/fileinfo.c b/src/sys/fileinfo.c
index a5b74bde..8bd4709a 100644
--- a/src/sys/fileinfo.c
+++ b/src/sys/fileinfo.c
@@ -1,7 +1,7 @@
/**
* @file sys/fileinfo.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/flush.c b/src/sys/flush.c
index 7ac86134..81135f22 100644
--- a/src/sys/flush.c
+++ b/src/sys/flush.c
@@ -1,7 +1,7 @@
/**
* @file sys/flush.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/fsctl.c b/src/sys/fsctl.c
index 37cdf899..febddbb0 100644
--- a/src/sys/fsctl.c
+++ b/src/sys/fsctl.c
@@ -1,7 +1,7 @@
/**
* @file sys/fsctl.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/fsext.c b/src/sys/fsext.c
index 40a6ffdb..6be65a0a 100644
--- a/src/sys/fsext.c
+++ b/src/sys/fsext.c
@@ -1,7 +1,7 @@
/**
* @file sys/fsext.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/iop.c b/src/sys/iop.c
index c00ac277..274385c3 100644
--- a/src/sys/iop.c
+++ b/src/sys/iop.c
@@ -1,7 +1,7 @@
/**
* @file sys/iop.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/ioq.c b/src/sys/ioq.c
index a7820bbf..4783c305 100644
--- a/src/sys/ioq.c
+++ b/src/sys/ioq.c
@@ -1,7 +1,7 @@
/**
* @file sys/ioq.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/lockctl.c b/src/sys/lockctl.c
index 8270c5a7..336e6b09 100644
--- a/src/sys/lockctl.c
+++ b/src/sys/lockctl.c
@@ -1,7 +1,7 @@
/**
* @file sys/lockctl.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/meta.c b/src/sys/meta.c
index 444849c9..feff67db 100644
--- a/src/sys/meta.c
+++ b/src/sys/meta.c
@@ -1,7 +1,7 @@
/**
* @file sys/meta.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/mountdev.c b/src/sys/mountdev.c
index e80d5d8e..e66d2ea7 100644
--- a/src/sys/mountdev.c
+++ b/src/sys/mountdev.c
@@ -1,7 +1,7 @@
/**
* @file sys/mountdev.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/mup.c b/src/sys/mup.c
index e3016dbf..e7aa8fab 100644
--- a/src/sys/mup.c
+++ b/src/sys/mup.c
@@ -1,7 +1,7 @@
/**
* @file sys/mup.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/name.c b/src/sys/name.c
index f3517f5f..2b0d1e5f 100644
--- a/src/sys/name.c
+++ b/src/sys/name.c
@@ -1,7 +1,7 @@
/**
* @file sys/name.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/psbuffer.c b/src/sys/psbuffer.c
index 49a5b600..a3047b90 100644
--- a/src/sys/psbuffer.c
+++ b/src/sys/psbuffer.c
@@ -1,7 +1,7 @@
/**
* @file sys/psbuffer.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/read.c b/src/sys/read.c
index 98fb730c..870a7df6 100644
--- a/src/sys/read.c
+++ b/src/sys/read.c
@@ -1,7 +1,7 @@
/**
* @file sys/read.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/security.c b/src/sys/security.c
index 3075db45..ab69e5b0 100644
--- a/src/sys/security.c
+++ b/src/sys/security.c
@@ -1,7 +1,7 @@
/**
* @file sys/security.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/shutdown.c b/src/sys/shutdown.c
index b1901e5d..114b1af2 100644
--- a/src/sys/shutdown.c
+++ b/src/sys/shutdown.c
@@ -1,7 +1,7 @@
/**
* @file sys/shutdown.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/silo.c b/src/sys/silo.c
index 08b96857..8fdc4c61 100644
--- a/src/sys/silo.c
+++ b/src/sys/silo.c
@@ -1,7 +1,7 @@
/**
* @file sys/silo.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/statistics.c b/src/sys/statistics.c
index 8d6b4bb1..89c678a7 100644
--- a/src/sys/statistics.c
+++ b/src/sys/statistics.c
@@ -1,7 +1,7 @@
/**
* @file sys/statistics.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/sxs.c b/src/sys/sxs.c
index eb8674bd..05648038 100644
--- a/src/sys/sxs.c
+++ b/src/sys/sxs.c
@@ -1,7 +1,7 @@
/**
* @file sys/sxs.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/trace.c b/src/sys/trace.c
index 53237dab..05c27839 100644
--- a/src/sys/trace.c
+++ b/src/sys/trace.c
@@ -1,7 +1,7 @@
/**
* @file sys/trace.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/util.c b/src/sys/util.c
index 82dc2880..996ff898 100644
--- a/src/sys/util.c
+++ b/src/sys/util.c
@@ -1,7 +1,7 @@
/**
* @file sys/util.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/volinfo.c b/src/sys/volinfo.c
index 93d2ec5f..21866380 100644
--- a/src/sys/volinfo.c
+++ b/src/sys/volinfo.c
@@ -1,7 +1,7 @@
/**
* @file sys/volinfo.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/volume.c b/src/sys/volume.c
index 02f15fe6..4f6c2576 100644
--- a/src/sys/volume.c
+++ b/src/sys/volume.c
@@ -1,7 +1,7 @@
/**
* @file sys/volume.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/wq.c b/src/sys/wq.c
index e0adeea2..f02d9511 100644
--- a/src/sys/wq.c
+++ b/src/sys/wq.c
@@ -1,7 +1,7 @@
/**
* @file sys/wq.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/src/sys/write.c b/src/sys/write.c
index d99ce95f..2ebe5074 100644
--- a/src/sys/write.c
+++ b/src/sys/write.c
@@ -1,7 +1,7 @@
/**
* @file sys/write.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tools/parselog.nim b/tools/parselog.nim
index b60d115c..4bc22198 100644
--- a/tools/parselog.nim
+++ b/tools/parselog.nim
@@ -2,7 +2,7 @@
#
# parse WinFsp debug logs
#
-# @copyright 2015-2022 Bill Zissimopoulos
+# @copyright 2015-2026 Bill Zissimopoulos
import algorithm
import macros
diff --git a/tst/airfs/airfs.cpp b/tst/airfs/airfs.cpp
index 43b72e9a..cfb0ebb9 100644
--- a/tst/airfs/airfs.cpp
+++ b/tst/airfs/airfs.cpp
@@ -1,7 +1,7 @@
/**
* @file airfs.cpp
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/airfs/common.h b/tst/airfs/common.h
index 499cd766..c61f1c74 100644
--- a/tst/airfs/common.h
+++ b/tst/airfs/common.h
@@ -1,7 +1,7 @@
/**
* @file common.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/airfs/persistence.cpp b/tst/airfs/persistence.cpp
index 2a650b80..1ff0b045 100644
--- a/tst/airfs/persistence.cpp
+++ b/tst/airfs/persistence.cpp
@@ -1,7 +1,7 @@
/**
* @file persistence.cpp
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/fsbench/fsbench.c b/tst/fsbench/fsbench.c
index 0ce5e071..5ffceb8d 100644
--- a/tst/fsbench/fsbench.c
+++ b/tst/fsbench/fsbench.c
@@ -1,7 +1,7 @@
/**
* @file fsbench.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/fscrash/fscrash-main.c b/tst/fscrash/fscrash-main.c
index 35283c57..f2434ca2 100644
--- a/tst/fscrash/fscrash-main.c
+++ b/tst/fscrash/fscrash-main.c
@@ -1,7 +1,7 @@
/**
* @file fscrash-main.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/fscrash/fscrash.c b/tst/fscrash/fscrash.c
index 6dcbe4f3..37f9ed2f 100644
--- a/tst/fscrash/fscrash.c
+++ b/tst/fscrash/fscrash.c
@@ -1,7 +1,7 @@
/**
* @file fscrash.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/fscrash/fscrash.h b/tst/fscrash/fscrash.h
index ed9e56d1..c6070672 100644
--- a/tst/fscrash/fscrash.h
+++ b/tst/fscrash/fscrash.h
@@ -1,7 +1,7 @@
/**
* @file fscrash.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs-dotnet/Program.cs b/tst/memfs-dotnet/Program.cs
index 24b3b9d8..90838d35 100644
--- a/tst/memfs-dotnet/Program.cs
+++ b/tst/memfs-dotnet/Program.cs
@@ -1,7 +1,7 @@
/**
* @file Program.cs
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs-fuse/compat.h b/tst/memfs-fuse/compat.h
index 91bdf6ef..f3137090 100644
--- a/tst/memfs-fuse/compat.h
+++ b/tst/memfs-fuse/compat.h
@@ -1,7 +1,7 @@
/**
* @file compat.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs-fuse/memfs-fuse.cpp b/tst/memfs-fuse/memfs-fuse.cpp
index 4652f933..f9557a01 100644
--- a/tst/memfs-fuse/memfs-fuse.cpp
+++ b/tst/memfs-fuse/memfs-fuse.cpp
@@ -1,7 +1,7 @@
/**
* @file memfs-fuse.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs-fuse3/compat.h b/tst/memfs-fuse3/compat.h
index 91bdf6ef..f3137090 100644
--- a/tst/memfs-fuse3/compat.h
+++ b/tst/memfs-fuse3/compat.h
@@ -1,7 +1,7 @@
/**
* @file compat.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs-fuse3/memfs-fuse3.cpp b/tst/memfs-fuse3/memfs-fuse3.cpp
index cb22d4a4..2792a2c3 100644
--- a/tst/memfs-fuse3/memfs-fuse3.cpp
+++ b/tst/memfs-fuse3/memfs-fuse3.cpp
@@ -1,7 +1,7 @@
/**
* @file memfs-fuse3.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs/memfs-main-old.c b/tst/memfs/memfs-main-old.c
index d87b8060..d81ed180 100644
--- a/tst/memfs/memfs-main-old.c
+++ b/tst/memfs/memfs-main-old.c
@@ -6,7 +6,7 @@
*
* Please note that this file is no longer maintained.
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs/memfs-main.c b/tst/memfs/memfs-main.c
index c2704841..958a16f8 100644
--- a/tst/memfs/memfs-main.c
+++ b/tst/memfs/memfs-main.c
@@ -1,7 +1,7 @@
/**
* @file memfs-main.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs/memfs.cpp b/tst/memfs/memfs.cpp
index 902f0ea3..b693a9af 100644
--- a/tst/memfs/memfs.cpp
+++ b/tst/memfs/memfs.cpp
@@ -1,7 +1,7 @@
/**
* @file memfs.cpp
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/memfs/memfs.h b/tst/memfs/memfs.h
index 22a7a46f..4fc3f01b 100644
--- a/tst/memfs/memfs.h
+++ b/tst/memfs/memfs.h
@@ -1,7 +1,7 @@
/**
* @file memfs.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/notifyfs-dotnet/Program.cs b/tst/notifyfs-dotnet/Program.cs
index 25686efb..56eca580 100644
--- a/tst/notifyfs-dotnet/Program.cs
+++ b/tst/notifyfs-dotnet/Program.cs
@@ -1,7 +1,7 @@
/**
* @file Program.cs
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/notifyfs/notifyfs.c b/tst/notifyfs/notifyfs.c
index 6a1e6bb8..86c6d76e 100644
--- a/tst/notifyfs/notifyfs.c
+++ b/tst/notifyfs/notifyfs.c
@@ -1,7 +1,7 @@
/**
* @file notifyfs.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/ntptfs/lfs.c b/tst/ntptfs/lfs.c
index b13544c6..474f2868 100644
--- a/tst/ntptfs/lfs.c
+++ b/tst/ntptfs/lfs.c
@@ -1,7 +1,7 @@
/**
* @file lfs.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/ntptfs/ptfs-main.c b/tst/ntptfs/ptfs-main.c
index 4f6a3fb2..0fb2e6e0 100644
--- a/tst/ntptfs/ptfs-main.c
+++ b/tst/ntptfs/ptfs-main.c
@@ -1,7 +1,7 @@
/**
* @file ptfs-main.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/ntptfs/ptfs.c b/tst/ntptfs/ptfs.c
index 7843c083..6644de2b 100644
--- a/tst/ntptfs/ptfs.c
+++ b/tst/ntptfs/ptfs.c
@@ -1,7 +1,7 @@
/**
* @file ptfs.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/ntptfs/ptfs.h b/tst/ntptfs/ptfs.h
index 32e55e41..6c0fd8a8 100644
--- a/tst/ntptfs/ptfs.h
+++ b/tst/ntptfs/ptfs.h
@@ -1,7 +1,7 @@
/**
* @file ptfs.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough-cpp/passthrough-cpp.cpp b/tst/passthrough-cpp/passthrough-cpp.cpp
index c0bad620..a260e9d7 100644
--- a/tst/passthrough-cpp/passthrough-cpp.cpp
+++ b/tst/passthrough-cpp/passthrough-cpp.cpp
@@ -1,7 +1,7 @@
/**
* @file passthrough-cpp.cpp
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough-dotnet/Program.cs b/tst/passthrough-dotnet/Program.cs
index 6e6a4ac6..6ec98bc9 100644
--- a/tst/passthrough-dotnet/Program.cs
+++ b/tst/passthrough-dotnet/Program.cs
@@ -1,7 +1,7 @@
/**
* @file Program.cs
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough-fuse/passthrough-fuse.c b/tst/passthrough-fuse/passthrough-fuse.c
index 58d93fb6..3e71c3e2 100644
--- a/tst/passthrough-fuse/passthrough-fuse.c
+++ b/tst/passthrough-fuse/passthrough-fuse.c
@@ -1,7 +1,7 @@
/**
* @file passthrough-fuse.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough-fuse/winposix.c b/tst/passthrough-fuse/winposix.c
index 3bdf8151..5d45431c 100644
--- a/tst/passthrough-fuse/winposix.c
+++ b/tst/passthrough-fuse/winposix.c
@@ -1,7 +1,7 @@
/**
* @file winposix.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough-fuse/winposix.h b/tst/passthrough-fuse/winposix.h
index 8067e97c..db1fb5be 100644
--- a/tst/passthrough-fuse/winposix.h
+++ b/tst/passthrough-fuse/winposix.h
@@ -1,7 +1,7 @@
/**
* @file winposix.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough-fuse3/passthrough-fuse3.c b/tst/passthrough-fuse3/passthrough-fuse3.c
index c7459946..89885533 100644
--- a/tst/passthrough-fuse3/passthrough-fuse3.c
+++ b/tst/passthrough-fuse3/passthrough-fuse3.c
@@ -1,7 +1,7 @@
/**
* @file passthrough-fuse.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough-fuse3/winposix.c b/tst/passthrough-fuse3/winposix.c
index dec8ca59..bc8d28e8 100644
--- a/tst/passthrough-fuse3/winposix.c
+++ b/tst/passthrough-fuse3/winposix.c
@@ -1,7 +1,7 @@
/**
* @file winposix.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough-fuse3/winposix.h b/tst/passthrough-fuse3/winposix.h
index c86122dd..33ac2d77 100644
--- a/tst/passthrough-fuse3/winposix.h
+++ b/tst/passthrough-fuse3/winposix.h
@@ -1,7 +1,7 @@
/**
* @file winposix.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/passthrough/passthrough.c b/tst/passthrough/passthrough.c
index 2f945d92..dc9e4df0 100644
--- a/tst/passthrough/passthrough.c
+++ b/tst/passthrough/passthrough.c
@@ -1,7 +1,7 @@
/**
* @file passthrough.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/create-test.c b/tst/winfsp-tests/create-test.c
index 2a907a0d..5f026a03 100644
--- a/tst/winfsp-tests/create-test.c
+++ b/tst/winfsp-tests/create-test.c
@@ -1,7 +1,7 @@
/**
* @file create-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/devctl-test.c b/tst/winfsp-tests/devctl-test.c
index 3254887e..80d9eec9 100644
--- a/tst/winfsp-tests/devctl-test.c
+++ b/tst/winfsp-tests/devctl-test.c
@@ -1,7 +1,7 @@
/**
* @file devctl-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/dirbuf-test.c b/tst/winfsp-tests/dirbuf-test.c
index 570055ad..3a43c899 100644
--- a/tst/winfsp-tests/dirbuf-test.c
+++ b/tst/winfsp-tests/dirbuf-test.c
@@ -1,7 +1,7 @@
/**
* @file dirbuf-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/dirctl-test.c b/tst/winfsp-tests/dirctl-test.c
index 2b90c2f3..1c7fdb8a 100644
--- a/tst/winfsp-tests/dirctl-test.c
+++ b/tst/winfsp-tests/dirctl-test.c
@@ -1,7 +1,7 @@
/**
* @file dirctl-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/ea-test.c b/tst/winfsp-tests/ea-test.c
index f10508c7..d809d8e1 100644
--- a/tst/winfsp-tests/ea-test.c
+++ b/tst/winfsp-tests/ea-test.c
@@ -1,7 +1,7 @@
/**
* @file ea-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/eventlog-test.c b/tst/winfsp-tests/eventlog-test.c
index c38ef0fe..4f6df133 100644
--- a/tst/winfsp-tests/eventlog-test.c
+++ b/tst/winfsp-tests/eventlog-test.c
@@ -1,7 +1,7 @@
/**
* @file eventlog-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/exec-test.c b/tst/winfsp-tests/exec-test.c
index 547d7401..363726f2 100644
--- a/tst/winfsp-tests/exec-test.c
+++ b/tst/winfsp-tests/exec-test.c
@@ -1,7 +1,7 @@
/**
* @file exec-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/flush-test.c b/tst/winfsp-tests/flush-test.c
index 93b50340..7163344a 100644
--- a/tst/winfsp-tests/flush-test.c
+++ b/tst/winfsp-tests/flush-test.c
@@ -1,7 +1,7 @@
/**
* @file flush-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/fuse-opt-test.c b/tst/winfsp-tests/fuse-opt-test.c
index 556c3cd5..61ab9d48 100644
--- a/tst/winfsp-tests/fuse-opt-test.c
+++ b/tst/winfsp-tests/fuse-opt-test.c
@@ -1,7 +1,7 @@
/**
* @file fuse-opt-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/fuse-test.c b/tst/winfsp-tests/fuse-test.c
index 3f299ef5..b1770ef3 100644
--- a/tst/winfsp-tests/fuse-test.c
+++ b/tst/winfsp-tests/fuse-test.c
@@ -1,7 +1,7 @@
/**
* @file fuse-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/helper/winfsp-tests-helper.c b/tst/winfsp-tests/helper/winfsp-tests-helper.c
index 22e46408..b821cd93 100644
--- a/tst/winfsp-tests/helper/winfsp-tests-helper.c
+++ b/tst/winfsp-tests/helper/winfsp-tests-helper.c
@@ -1,7 +1,7 @@
/**
* @file winfsp-tests-helper.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/hooks.c b/tst/winfsp-tests/hooks.c
index 08cb1651..6d0b9c02 100644
--- a/tst/winfsp-tests/hooks.c
+++ b/tst/winfsp-tests/hooks.c
@@ -1,7 +1,7 @@
/**
* @file hooks.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/info-test.c b/tst/winfsp-tests/info-test.c
index a105458c..223742a1 100644
--- a/tst/winfsp-tests/info-test.c
+++ b/tst/winfsp-tests/info-test.c
@@ -1,7 +1,7 @@
/**
* @file info-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/launch-test.c b/tst/winfsp-tests/launch-test.c
index b1bd6452..3961be4d 100644
--- a/tst/winfsp-tests/launch-test.c
+++ b/tst/winfsp-tests/launch-test.c
@@ -1,7 +1,7 @@
/**
* @file launch-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/launcher-ptrans-test.c b/tst/winfsp-tests/launcher-ptrans-test.c
index 6cfb2167..5cb805bb 100644
--- a/tst/winfsp-tests/launcher-ptrans-test.c
+++ b/tst/winfsp-tests/launcher-ptrans-test.c
@@ -1,7 +1,7 @@
/**
* @file launcher-ptrans-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/loadun-test.c b/tst/winfsp-tests/loadun-test.c
index 2fde0afc..17916b57 100644
--- a/tst/winfsp-tests/loadun-test.c
+++ b/tst/winfsp-tests/loadun-test.c
@@ -1,7 +1,7 @@
/**
* @file loadun-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/lock-test.c b/tst/winfsp-tests/lock-test.c
index 3b3184e7..8cc5d286 100644
--- a/tst/winfsp-tests/lock-test.c
+++ b/tst/winfsp-tests/lock-test.c
@@ -1,7 +1,7 @@
/**
* @file lock-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/memfs-test.c b/tst/winfsp-tests/memfs-test.c
index cb6fc39f..0c35b1c0 100644
--- a/tst/winfsp-tests/memfs-test.c
+++ b/tst/winfsp-tests/memfs-test.c
@@ -1,7 +1,7 @@
/**
* @file memfs-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/mount-test.c b/tst/winfsp-tests/mount-test.c
index 54b70033..d56dbbab 100644
--- a/tst/winfsp-tests/mount-test.c
+++ b/tst/winfsp-tests/mount-test.c
@@ -1,7 +1,7 @@
/**
* @file mount-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/notify-test.c b/tst/winfsp-tests/notify-test.c
index 17dbb9a6..55e6572a 100644
--- a/tst/winfsp-tests/notify-test.c
+++ b/tst/winfsp-tests/notify-test.c
@@ -1,7 +1,7 @@
/**
* @file notify-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/oplock-test.c b/tst/winfsp-tests/oplock-test.c
index 41cf7e14..8860e3be 100644
--- a/tst/winfsp-tests/oplock-test.c
+++ b/tst/winfsp-tests/oplock-test.c
@@ -1,7 +1,7 @@
/**
* @file oplock-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/path-test.c b/tst/winfsp-tests/path-test.c
index 4eeaba9f..c9046830 100644
--- a/tst/winfsp-tests/path-test.c
+++ b/tst/winfsp-tests/path-test.c
@@ -1,7 +1,7 @@
/**
* @file path-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/posix-test.c b/tst/winfsp-tests/posix-test.c
index 736ed406..93fcd343 100644
--- a/tst/winfsp-tests/posix-test.c
+++ b/tst/winfsp-tests/posix-test.c
@@ -1,7 +1,7 @@
/**
* @file posix-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/rdwr-test.c b/tst/winfsp-tests/rdwr-test.c
index dc53df18..29b5ec98 100644
--- a/tst/winfsp-tests/rdwr-test.c
+++ b/tst/winfsp-tests/rdwr-test.c
@@ -1,7 +1,7 @@
/**
* @file rdwr-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/reparse-test.c b/tst/winfsp-tests/reparse-test.c
index 6a2d35b8..e499e7ca 100644
--- a/tst/winfsp-tests/reparse-test.c
+++ b/tst/winfsp-tests/reparse-test.c
@@ -1,7 +1,7 @@
/**
* @file reparse-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/resilient.c b/tst/winfsp-tests/resilient.c
index 6db5175d..ad3636d5 100644
--- a/tst/winfsp-tests/resilient.c
+++ b/tst/winfsp-tests/resilient.c
@@ -1,7 +1,7 @@
/**
* @file resilient.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/security-test.c b/tst/winfsp-tests/security-test.c
index 6c2c58d5..bbd9dcc9 100644
--- a/tst/winfsp-tests/security-test.c
+++ b/tst/winfsp-tests/security-test.c
@@ -1,7 +1,7 @@
/**
* @file security-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/stream-tests.c b/tst/winfsp-tests/stream-tests.c
index c08d07ff..a089caa5 100644
--- a/tst/winfsp-tests/stream-tests.c
+++ b/tst/winfsp-tests/stream-tests.c
@@ -1,7 +1,7 @@
/**
* @file stream-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/timeout-test.c b/tst/winfsp-tests/timeout-test.c
index 3707aa07..5b7b137d 100644
--- a/tst/winfsp-tests/timeout-test.c
+++ b/tst/winfsp-tests/timeout-test.c
@@ -1,7 +1,7 @@
/**
* @file timeout-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/uuid5-test.c b/tst/winfsp-tests/uuid5-test.c
index 04246542..2a842530 100644
--- a/tst/winfsp-tests/uuid5-test.c
+++ b/tst/winfsp-tests/uuid5-test.c
@@ -1,7 +1,7 @@
/**
* @file uuid5-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/version-test.c b/tst/winfsp-tests/version-test.c
index 2ac6ecb0..b117c60c 100644
--- a/tst/winfsp-tests/version-test.c
+++ b/tst/winfsp-tests/version-test.c
@@ -1,7 +1,7 @@
/**
* @file version-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/volpath-test.c b/tst/winfsp-tests/volpath-test.c
index eab67333..77a4e6d1 100644
--- a/tst/winfsp-tests/volpath-test.c
+++ b/tst/winfsp-tests/volpath-test.c
@@ -1,7 +1,7 @@
/**
* @file volpath-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/winfsp-tests.c b/tst/winfsp-tests/winfsp-tests.c
index 2f2e1617..3cb10e1a 100644
--- a/tst/winfsp-tests/winfsp-tests.c
+++ b/tst/winfsp-tests/winfsp-tests.c
@@ -1,7 +1,7 @@
/**
* @file winfsp-tests.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/winfsp-tests.h b/tst/winfsp-tests/winfsp-tests.h
index 450529f3..c13a2828 100644
--- a/tst/winfsp-tests/winfsp-tests.h
+++ b/tst/winfsp-tests/winfsp-tests.h
@@ -1,7 +1,7 @@
/**
* @file winfsp-tests.h
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
diff --git a/tst/winfsp-tests/wsl-test.c b/tst/winfsp-tests/wsl-test.c
index 481f6701..65f72772 100644
--- a/tst/winfsp-tests/wsl-test.c
+++ b/tst/winfsp-tests/wsl-test.c
@@ -1,7 +1,7 @@
/**
* @file wsl-test.c
*
- * @copyright 2015-2025 Bill Zissimopoulos
+ * @copyright 2015-2026 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.