diff options
| author | Stefan Boberg <[email protected]> | 2023-05-15 17:58:46 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-15 17:58:46 +0200 |
| commit | 121d3fb3d9835ec78a1de7f268e79bf79cbf5865 (patch) | |
| tree | 2f9c9f5c6a1d3ed41a9f3009104002bc5dd94bb8 /src/zenserver/config.cpp | |
| parent | all threads should be named (#304) (diff) | |
| download | zen-121d3fb3d9835ec78a1de7f268e79bf79cbf5865.tar.xz zen-121d3fb3d9835ec78a1de7f268e79bf79cbf5865.zip | |
Remove ATL header usage (#306)
ATL has been used here and there as a convenience. Given that this is a legacy component and not always something which gets installed along with the compiler we hereby remove the dependency altogether in favour of our own simple wrappers
Diffstat (limited to 'src/zenserver/config.cpp')
| -rw-r--r-- | src/zenserver/config.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenserver/config.cpp b/src/zenserver/config.cpp index 592de0f7f..5b635b89d 100644 --- a/src/zenserver/config.cpp +++ b/src/zenserver/config.cpp @@ -29,6 +29,7 @@ ZEN_THIRD_PARTY_INCLUDES_END // Used for getting My Documents for default data directory # include <ShlObj.h> # pragma comment(lib, "shell32.lib") +# pragma comment(lib, "ole32.lib") std::filesystem::path PickDefaultStateDirectory() |