aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--LICENSE.txt10
-rw-r--r--README.md3
-rw-r--r--add_cert.bat7
-rw-r--r--build_driver.bat7
-rw-r--r--build_drivers.bat7
-rw-r--r--check_ddk.bat7
-rw-r--r--check_env.bat7
-rw-r--r--clean_driver.bat7
-rw-r--r--clean_drivers.bat7
-rw-r--r--setenv.bat7
-rw-r--r--sign.bat7
-rw-r--r--src/nt_path_converter/control_codes.h11
-rw-r--r--src/nt_path_converter/device.c11
-rw-r--r--src/nt_path_converter/device.h11
-rw-r--r--src/nt_path_converter/main.c11
-rw-r--r--src/nt_path_converter/nt2dos.c11
-rw-r--r--src/nt_path_converter/nt2dos.h11
-rw-r--r--src/sysenter/main.c11
-rw-r--r--src/test/device.c11
-rw-r--r--src/test/device.h11
-rw-r--r--src/test/main.c11
-rw-r--r--utils/README.md2
-rw-r--r--utils/libnt_path_converter/include/libnt_path_converter/all.hpp11
-rw-r--r--utils/libnt_path_converter/include/libnt_path_converter/device.hpp11
-rw-r--r--utils/libnt_path_converter/src/device.cpp11
-rw-r--r--utils/libnt_path_converter/utils/convert_nt_path.cpp11
-rw-r--r--utils/libservice/include/libservice/all.hpp11
-rw-r--r--utils/libservice/include/libservice/common.hpp11
-rw-r--r--utils/libservice/include/libservice/device.hpp11
-rw-r--r--utils/libservice/include/libservice/handle.hpp11
-rw-r--r--utils/libservice/include/libservice/service.hpp11
-rw-r--r--utils/libservice/include/libservice/service_handle.hpp11
-rw-r--r--utils/libservice/include/libservice/service_manager.hpp11
-rw-r--r--utils/libservice/include/libservice/singleton.hpp11
-rw-r--r--utils/libservice/include/libservice/windows_error.hpp11
-rw-r--r--utils/libservice/src/device.cpp11
-rw-r--r--utils/libservice/src/handle.cpp11
-rw-r--r--utils/libservice/src/service.cpp11
-rw-r--r--utils/libservice/src/service_handle.cpp11
-rw-r--r--utils/libservice/src/service_manager.cpp11
-rw-r--r--utils/libservice/src/windows_error.cpp11
-rw-r--r--utils/libservice/test/windows_error.cpp11
-rw-r--r--utils/libservice/utils/install_service.cpp11
-rw-r--r--utils/libservice/utils/start_service.cpp11
-rw-r--r--utils/libservice/utils/stop_service.cpp11
-rw-r--r--utils/libservice/utils/uninstall_service.cpp11
-rw-r--r--utils/libtest/include/libtest/all.hpp11
-rw-r--r--utils/libtest/include/libtest/device.hpp11
-rw-r--r--utils/libtest/src/device.cpp11
-rw-r--r--utils/libtest/utils/exchange_ints.cpp11
50 files changed, 205 insertions, 291 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index fbbdd68..62c44fd 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,4 +1,4 @@
-The MIT License (MIT)
+MIT License
Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index e6a5592..8c31f8b 100644
--- a/README.md
+++ b/README.md
@@ -138,8 +138,7 @@ For details, see [Utilities].
License
-------
-This project, including all of the files and their contents, is licensed under
-the terms of the MIT License.
+Distributed under the MIT License.
See [LICENSE.txt] for details.
[LICENSE.txt]: LICENSE.txt
diff --git a/add_cert.bat b/add_cert.bat
index 0b3a01e..8b4adce 100644
--- a/add_cert.bat
+++ b/add_cert.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@setlocal enabledelayedexpansion
@echo off
diff --git a/build_driver.bat b/build_driver.bat
index 7eeaa24..85e08ac 100644
--- a/build_driver.bat
+++ b/build_driver.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@setlocal enabledelayedexpansion
@echo off
diff --git a/build_drivers.bat b/build_drivers.bat
index 2229f7d..2440e85 100644
--- a/build_drivers.bat
+++ b/build_drivers.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@setlocal enabledelayedexpansion
@echo off
diff --git a/check_ddk.bat b/check_ddk.bat
index 00d5bfb..6782770 100644
--- a/check_ddk.bat
+++ b/check_ddk.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@setlocal enabledelayedexpansion
@echo off
diff --git a/check_env.bat b/check_env.bat
index f5f63a8..be19909 100644
--- a/check_env.bat
+++ b/check_env.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@setlocal enabledelayedexpansion
@echo off
diff --git a/clean_driver.bat b/clean_driver.bat
index d189de6..d3f40d8 100644
--- a/clean_driver.bat
+++ b/clean_driver.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@setlocal enabledelayedexpansion
@echo off
diff --git a/clean_drivers.bat b/clean_drivers.bat
index 544b7a0..6ec8e49 100644
--- a/clean_drivers.bat
+++ b/clean_drivers.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@setlocal enabledelayedexpansion
@echo off
diff --git a/setenv.bat b/setenv.bat
index 23e506e..f8e5073 100644
--- a/setenv.bat
+++ b/setenv.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@echo off
diff --git a/sign.bat b/sign.bat
index 0bf7c38..853cc79 100644
--- a/sign.bat
+++ b/sign.bat
@@ -1,6 +1,7 @@
-@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is licensed under the terms of the MIT License.
-@rem See LICENSE.txt for details.
+@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+@rem This file is part of the "Windows 7 drivers" project.
+@rem For details, see https://github.com/egor-tensin/windows7-drivers.
+@rem Distributed under the MIT License.
@setlocal enabledelayedexpansion
@echo off
diff --git a/src/nt_path_converter/control_codes.h b/src/nt_path_converter/control_codes.h
index ff41b35..3fb2aff 100644
--- a/src/nt_path_converter/control_codes.h
+++ b/src/nt_path_converter/control_codes.h
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#pragma once
diff --git a/src/nt_path_converter/device.c b/src/nt_path_converter/device.c
index 5ee0d3e..ae93f15 100644
--- a/src/nt_path_converter/device.c
+++ b/src/nt_path_converter/device.c
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#include "control_codes.h"
diff --git a/src/nt_path_converter/device.h b/src/nt_path_converter/device.h
index 58f9371..4f117e9 100644
--- a/src/nt_path_converter/device.h
+++ b/src/nt_path_converter/device.h
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#pragma once
diff --git a/src/nt_path_converter/main.c b/src/nt_path_converter/main.c
index 7d12e54..a781a82 100644
--- a/src/nt_path_converter/main.c
+++ b/src/nt_path_converter/main.c
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#include "device.h"
diff --git a/src/nt_path_converter/nt2dos.c b/src/nt_path_converter/nt2dos.c
index e001fda..d1bdb3d 100644
--- a/src/nt_path_converter/nt2dos.c
+++ b/src/nt_path_converter/nt2dos.c
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#include <ntifs.h>
diff --git a/src/nt_path_converter/nt2dos.h b/src/nt_path_converter/nt2dos.h
index baff0e5..ce0b690 100644
--- a/src/nt_path_converter/nt2dos.h
+++ b/src/nt_path_converter/nt2dos.h
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#pragma once
diff --git a/src/sysenter/main.c b/src/sysenter/main.c
index c2ad1cb..58ecddb 100644
--- a/src/sysenter/main.c
+++ b/src/sysenter/main.c
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#include <ntddk.h>
diff --git a/src/test/device.c b/src/test/device.c
index 3baadbd..dcd6f1b 100644
--- a/src/test/device.c
+++ b/src/test/device.c
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#include "device.h"
diff --git a/src/test/device.h b/src/test/device.h
index 58f9371..4f117e9 100644
--- a/src/test/device.h
+++ b/src/test/device.h
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#pragma once
diff --git a/src/test/main.c b/src/test/main.c
index bc3e705..22600ee 100644
--- a/src/test/main.c
+++ b/src/test/main.c
@@ -1,9 +1,8 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
+/*
+ * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+ * This file is part of the "Windows 7 drivers" project.
+ * For details, see https://github.com/egor-tensin/windows7-drivers.
+ * Distributed under the MIT License.
*/
#include "device.h"
diff --git a/utils/README.md b/utils/README.md
index b03c4c1..5d03428 100644
--- a/utils/README.md
+++ b/utils/README.md
@@ -22,7 +22,7 @@ For example, using Visual Studio 2013 Update 4 for Windows Desktop (targetting
x86):
> cd
- C:\workspace\personal\build\windows7-drivers\utils
+ C:\workspace\build\windows7-drivers
> cmake -G "Visual Studio 12 2013" C:\workspace\personal\windows7-drivers\utils
...
diff --git a/utils/libnt_path_converter/include/libnt_path_converter/all.hpp b/utils/libnt_path_converter/include/libnt_path_converter/all.hpp
index 899fc3d..474b802 100644
--- a/utils/libnt_path_converter/include/libnt_path_converter/all.hpp
+++ b/utils/libnt_path_converter/include/libnt_path_converter/all.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libnt_path_converter/include/libnt_path_converter/device.hpp b/utils/libnt_path_converter/include/libnt_path_converter/device.hpp
index 2269316..e1d75fb 100644
--- a/utils/libnt_path_converter/include/libnt_path_converter/device.hpp
+++ b/utils/libnt_path_converter/include/libnt_path_converter/device.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libnt_path_converter/src/device.cpp b/utils/libnt_path_converter/src/device.cpp
index 386b63f..90cd12f 100644
--- a/utils/libnt_path_converter/src/device.cpp
+++ b/utils/libnt_path_converter/src/device.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libnt_path_converter/device.hpp"
diff --git a/utils/libnt_path_converter/utils/convert_nt_path.cpp b/utils/libnt_path_converter/utils/convert_nt_path.cpp
index 158395d..0055db2 100644
--- a/utils/libnt_path_converter/utils/convert_nt_path.cpp
+++ b/utils/libnt_path_converter/utils/convert_nt_path.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libnt_path_converter/all.hpp"
diff --git a/utils/libservice/include/libservice/all.hpp b/utils/libservice/include/libservice/all.hpp
index e68439b..a5761e0 100644
--- a/utils/libservice/include/libservice/all.hpp
+++ b/utils/libservice/include/libservice/all.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/include/libservice/common.hpp b/utils/libservice/include/libservice/common.hpp
index 3c32966..a1c46fb 100644
--- a/utils/libservice/include/libservice/common.hpp
+++ b/utils/libservice/include/libservice/common.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/include/libservice/device.hpp b/utils/libservice/include/libservice/device.hpp
index 9a6f278..ac292c8 100644
--- a/utils/libservice/include/libservice/device.hpp
+++ b/utils/libservice/include/libservice/device.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/include/libservice/handle.hpp b/utils/libservice/include/libservice/handle.hpp
index 26aba77..5e351d2 100644
--- a/utils/libservice/include/libservice/handle.hpp
+++ b/utils/libservice/include/libservice/handle.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/include/libservice/service.hpp b/utils/libservice/include/libservice/service.hpp
index 6e4d268..089f790 100644
--- a/utils/libservice/include/libservice/service.hpp
+++ b/utils/libservice/include/libservice/service.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/include/libservice/service_handle.hpp b/utils/libservice/include/libservice/service_handle.hpp
index 0f2cf59..2883ff3 100644
--- a/utils/libservice/include/libservice/service_handle.hpp
+++ b/utils/libservice/include/libservice/service_handle.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/include/libservice/service_manager.hpp b/utils/libservice/include/libservice/service_manager.hpp
index 8d8b862..80e6f12 100644
--- a/utils/libservice/include/libservice/service_manager.hpp
+++ b/utils/libservice/include/libservice/service_manager.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/include/libservice/singleton.hpp b/utils/libservice/include/libservice/singleton.hpp
index 81e6445..1c7b1a7 100644
--- a/utils/libservice/include/libservice/singleton.hpp
+++ b/utils/libservice/include/libservice/singleton.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/include/libservice/windows_error.hpp b/utils/libservice/include/libservice/windows_error.hpp
index 430705a..f7ac90e 100644
--- a/utils/libservice/include/libservice/windows_error.hpp
+++ b/utils/libservice/include/libservice/windows_error.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libservice/src/device.cpp b/utils/libservice/src/device.cpp
index 825c2bc..5643106 100644
--- a/utils/libservice/src/device.cpp
+++ b/utils/libservice/src/device.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/src/handle.cpp b/utils/libservice/src/handle.cpp
index bc3dc35..7567781 100644
--- a/utils/libservice/src/handle.cpp
+++ b/utils/libservice/src/handle.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/src/service.cpp b/utils/libservice/src/service.cpp
index 57bb568..8b5e043 100644
--- a/utils/libservice/src/service.cpp
+++ b/utils/libservice/src/service.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/src/service_handle.cpp b/utils/libservice/src/service_handle.cpp
index ab85bc8..adce7f0 100644
--- a/utils/libservice/src/service_handle.cpp
+++ b/utils/libservice/src/service_handle.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/src/service_manager.cpp b/utils/libservice/src/service_manager.cpp
index d815089..61662de 100644
--- a/utils/libservice/src/service_manager.cpp
+++ b/utils/libservice/src/service_manager.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/src/windows_error.cpp b/utils/libservice/src/windows_error.cpp
index 2a54366..f27018b 100644
--- a/utils/libservice/src/windows_error.cpp
+++ b/utils/libservice/src/windows_error.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/test/windows_error.cpp b/utils/libservice/test/windows_error.cpp
index 464fd90..b909670 100644
--- a/utils/libservice/test/windows_error.cpp
+++ b/utils/libservice/test/windows_error.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/utils/install_service.cpp b/utils/libservice/utils/install_service.cpp
index fd9e339..f36af75 100644
--- a/utils/libservice/utils/install_service.cpp
+++ b/utils/libservice/utils/install_service.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/utils/start_service.cpp b/utils/libservice/utils/start_service.cpp
index 09b5b35..fafee53 100644
--- a/utils/libservice/utils/start_service.cpp
+++ b/utils/libservice/utils/start_service.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/utils/stop_service.cpp b/utils/libservice/utils/stop_service.cpp
index 48b4c92..800c7a9 100644
--- a/utils/libservice/utils/stop_service.cpp
+++ b/utils/libservice/utils/stop_service.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libservice/utils/uninstall_service.cpp b/utils/libservice/utils/uninstall_service.cpp
index 8497fbf..395bb51 100644
--- a/utils/libservice/utils/uninstall_service.cpp
+++ b/utils/libservice/utils/uninstall_service.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libservice/all.hpp"
diff --git a/utils/libtest/include/libtest/all.hpp b/utils/libtest/include/libtest/all.hpp
index 899fc3d..474b802 100644
--- a/utils/libtest/include/libtest/all.hpp
+++ b/utils/libtest/include/libtest/all.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libtest/include/libtest/device.hpp b/utils/libtest/include/libtest/device.hpp
index 365088d..591d215 100644
--- a/utils/libtest/include/libtest/device.hpp
+++ b/utils/libtest/include/libtest/device.hpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#pragma once
diff --git a/utils/libtest/src/device.cpp b/utils/libtest/src/device.cpp
index 4093c04..f06a22a 100644
--- a/utils/libtest/src/device.cpp
+++ b/utils/libtest/src/device.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libtest/all.hpp"
diff --git a/utils/libtest/utils/exchange_ints.cpp b/utils/libtest/utils/exchange_ints.cpp
index 0f54879..f70badf 100644
--- a/utils/libtest/utils/exchange_ints.cpp
+++ b/utils/libtest/utils/exchange_ints.cpp
@@ -1,10 +1,7 @@
-/**
- * \file
- * \author Egor Tensin <Egor.Tensin@gmail.com>
- * \date 2015
- * \copyright This file is licensed under the terms of the MIT License.
- * See LICENSE.txt for details.
- */
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
#include "libtest/all.hpp"