diff options
| author | Liam Mitchell <[email protected]> | 2025-08-22 15:51:32 -0700 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-08-22 15:51:32 -0700 |
| commit | 623f5bbd39e24a8a26203c02bafc3800d74d1db0 (patch) | |
| tree | 440f47c23b2d2d9c4afb53b06d732bf5228fcfbe /src/zenserver/main.cpp | |
| parent | Move ReportServiceStatus to zenutil and remove extraneous logging (diff) | |
| download | zen-623f5bbd39e24a8a26203c02bafc3800d74d1db0.tar.xz zen-623f5bbd39e24a8a26203c02bafc3800d74d1db0.zip | |
Move windows service utilities to zenutil and fix clang-format errors
Diffstat (limited to 'src/zenserver/main.cpp')
| -rw-r--r-- | src/zenserver/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/zenserver/main.cpp b/src/zenserver/main.cpp index e3c88f8bb..6b22e1a0f 100644 --- a/src/zenserver/main.cpp +++ b/src/zenserver/main.cpp @@ -31,7 +31,7 @@ #if ZEN_PLATFORM_WINDOWS # include <zencore/windows.h> -# include "windows/service.h" +# include <zenutil/windows/service.h> #endif ////////////////////////////////////////////////////////////////////////// @@ -90,7 +90,6 @@ ZenEntryPoint::ZenEntryPoint(ZenServerOptions& ServerOptions) : m_ServerOptions( { } - int ZenEntryPoint::Run() { |