mirror of
https://github.com/R2Northstar/NorthstarLauncher
synced 2024-10-30 11:26:40 +01:00
9b1e2a0f48
* 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
7 lines
96 B
C
7 lines
96 B
C
#pragma once
|
|
|
|
extern char version[16];
|
|
extern char NSUserAgent[256];
|
|
|
|
void InitialiseVersion();
|