1
mirror of https://github.com/R2Northstar/NorthstarLauncher synced 2024-10-30 11:26:40 +01:00
NorthstarLauncher/NorthstarDLL/util/version.h
p0358 9b1e2a0f48
Force-include pch.h to all files, remove explicit includes (#393)
* force-include "pch.h" in all units, as it will error if it's not included anyways

* remove #include "pch.h" from all files as it's not needed anymore now

* fix size of NSUserAgent to be consistent (it's 256 in version.cpp, caused compile error)

* Re-add explicit pch.h include to pch.cpp (and ran clang-format)

* drop pch.h inclusion from new files
2023-02-14 14:04:42 +00:00

7 lines
96 B
C

#pragma once
extern char version[16];
extern char NSUserAgent[256];
void InitialiseVersion();