diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-09-16 01:08:49 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-09-16 01:08:49 +0300 |
commit | 42f1ad36ef93c98542f9899ada57bd55396a99f5 (patch) | |
tree | d0b10dd617764271db739b608a9d6bfaa63d516b | |
parent | make the 'Elevate' button smaller (diff) | |
download | privilege-check-42f1ad36ef93c98542f9899ada57bd55396a99f5.tar.gz privilege-check-42f1ad36ef93c98542f9899ada57bd55396a99f5.zip |
.hpp instead of .h for C++ headers
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | error.hpp (renamed from error.h) | 0 | ||||
-rw-r--r-- | handle.hpp (renamed from handle.h) | 0 | ||||
-rw-r--r-- | main.cpp | 10 | ||||
-rw-r--r-- | os.hpp (renamed from os.h) | 2 | ||||
-rw-r--r-- | process.hpp (renamed from process.h) | 2 | ||||
-rw-r--r-- | sid.hpp (renamed from sid.h) | 2 | ||||
-rw-r--r-- | token.hpp (renamed from token.h) | 8 |
8 files changed, 13 insertions, 13 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1da2b43..d01997b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ project(privilege_test) file(GLOB ${PROJECT_NAME}_source_files "*.cpp") -file(GLOB ${PROJECT_NAME}_header_files "*.h") +file(GLOB ${PROJECT_NAME}_header_files "*.h" "*.hpp") file(GLOB ${PROJECT_NAME}_resource_files "*.rc") add_executable(${PROJECT_NAME} WIN32 ${${PROJECT_NAME}_source_files} @@ -1,9 +1,9 @@ -#include "error.h" -#include "os.h" -#include "process.h" +#include "error.hpp" +#include "os.hpp" +#include "process.hpp" #include "resource_ids.h" -#include "sid.h" -#include "token.h" +#include "sid.hpp" +#include "token.hpp" #include <Windows.h> #include <CommCtrl.h> @@ -1,6 +1,6 @@ #pragma once -#include "error.h" +#include "error.hpp" #include <Windows.h> @@ -1,6 +1,6 @@ #pragma once -#include "error.h" +#include "error.hpp" #include <Windows.h> #include <shellapi.h> @@ -1,6 +1,6 @@ #pragma once -#include "error.h" +#include "error.hpp" #include <Windows.h> #include <sddl.h> @@ -1,9 +1,9 @@ #pragma once -#include "error.h" -#include "handle.h" -#include "os.h" -#include "sid.h" +#include "error.hpp" +#include "handle.hpp" +#include "os.hpp" +#include "sid.hpp" #include <Windows.h> |