diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-09-17 05:25:10 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-09-17 05:25:10 +0300 |
commit | ce6a984461b0e53c7e6789a519c2bbab7cb494db (patch) | |
tree | 0bf87f89141ff72de520d5b7feb62584a878f606 | |
parent | refactoring (diff) | |
download | privilege-check-ce6a984461b0e53c7e6789a519c2bbab7cb494db.tar.gz privilege-check-ce6a984461b0e53c7e6789a519c2bbab7cb494db.zip |
add copyright notices to source files
-rw-r--r-- | CMakeLists.txt | 5 | ||||
-rw-r--r-- | src/error.hpp | 5 | ||||
-rw-r--r-- | src/handle.hpp | 5 | ||||
-rw-r--r-- | src/main.cpp | 5 | ||||
-rw-r--r-- | src/os.hpp | 5 | ||||
-rw-r--r-- | src/process.hpp | 5 | ||||
-rw-r--r-- | src/resource.hpp | 5 | ||||
-rw-r--r-- | src/sid.hpp | 5 | ||||
-rw-r--r-- | src/token.hpp | 5 |
9 files changed, 45 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b9aabf..148e28c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,8 @@ +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "Privilege test" project. +# For details, see https://github.com/egor-tensin/privilege-test. +# Distributed under the MIT License. + project(privilege_test) file(GLOB ${PROJECT_NAME}_source_files "src/*.cpp") diff --git a/src/error.hpp b/src/error.hpp index ad43307..e8f47a4 100644 --- a/src/error.hpp +++ b/src/error.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include <Windows.h> diff --git a/src/handle.hpp b/src/handle.hpp index 5f83f24..415541b 100644 --- a/src/handle.hpp +++ b/src/handle.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include <Windows.h> diff --git a/src/main.cpp b/src/main.cpp index 4e31e9f..be8d5e7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #include "error.hpp" #include "os.hpp" #include "process.hpp" @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/process.hpp b/src/process.hpp index 864d452..8279c3c 100644 --- a/src/process.hpp +++ b/src/process.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/resource.hpp b/src/resource.hpp index 602541f..bd97c82 100644 --- a/src/resource.hpp +++ b/src/resource.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/sid.hpp b/src/sid.hpp index 15ce73b..a8ee3aa 100644 --- a/src/sid.hpp +++ b/src/sid.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/token.hpp b/src/token.hpp index bc5083f..e44ab00 100644 --- a/src/token.hpp +++ b/src/token.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" |