aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CMakeLists.txt5
-rw-r--r--src/error.hpp5
-rw-r--r--src/handle.hpp5
-rw-r--r--src/main.cpp5
-rw-r--r--src/os.hpp5
-rw-r--r--src/process.hpp5
-rw-r--r--src/resource.hpp5
-rw-r--r--src/sid.hpp5
-rw-r--r--src/token.hpp5
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"
diff --git a/src/os.hpp b/src/os.hpp
index 1a3c52d..546e6e0 100644
--- a/src/os.hpp
+++ b/src/os.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"