From 05158de6a4b8aba799edef2cc714bf90dff97e2a Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sat, 5 Dec 2020 23:25:05 -0500 Subject: [PATCH] Minor changes --- ServiceExample/Main.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ServiceExample/Main.cpp b/ServiceExample/Main.cpp index 5f51261..ea4eda5 100644 --- a/ServiceExample/Main.cpp +++ b/ServiceExample/Main.cpp @@ -7,20 +7,22 @@ #include #include -#pragma comment(lib, "advapi32.lib") -#pragma comment(lib, "kernel32.lib") - #include "Models.h" #include "ServiceEntryPoint.hpp" +#pragma comment(lib, "advapi32.lib") +#pragma comment(lib, "kernel32.lib") + template VOID ServiceInstall(void); -template VOID ServiceReportEvent(LPTSTR); -std::shared_ptr> service_info(new models::ServiceInfo<>(L"Service Example")); +std::shared_ptr> +service_info(new models::ServiceInfo<>(L"Service Example")); #undef main