diff options
Diffstat (limited to 'NorthstarDedicatedTest/version.cpp')
-rw-r--r-- | NorthstarDedicatedTest/version.cpp | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/NorthstarDedicatedTest/version.cpp b/NorthstarDedicatedTest/version.cpp index dfeb9670..a0bcee20 100644 --- a/NorthstarDedicatedTest/version.cpp +++ b/NorthstarDedicatedTest/version.cpp @@ -4,7 +4,8 @@ char version[16]; char NSUserAgent[32]; -void InitialiseVersion() { +void InitialiseVersion() +{ HRSRC hResInfo; DWORD dwSize; HGLOBAL hResData; @@ -14,13 +15,16 @@ void InitialiseVersion() { HINSTANCE hInst = ::GetModuleHandle(NULL); hResInfo = FindResourceW(hInst, MAKEINTRESOURCE(1), RT_VERSION); - if (hResInfo != NULL) { + if (hResInfo != NULL) + { dwSize = SizeofResource(hInst, hResInfo); hResData = LoadResource(hInst, hResInfo); - if (hResData != NULL) { + if (hResData != NULL) + { pRes = LockResource(hResData); pResCopy = LocalAlloc(LMEM_FIXED, dwSize); - if (pResCopy != 0) { + if (pResCopy != 0) + { CopyMemory(pResCopy, pRes, dwSize); VerQueryValueW(pResCopy, L"\\", (LPVOID*)&lpFfi, &uLen); @@ -35,11 +39,13 @@ void InitialiseVersion() { // We actually use the rightmost integer do determine whether or not we're a debug/dev build // If it is set to 1 (as in resources.rc), we are a dev build // On github CI, we set this 1 to a 0 automatically as we replace the 0.0.0.1 with the real version number - if (dwRightMost == 1) { + if (dwRightMost == 1) + { sprintf(version, "%d.%d.%d.%d+dev", dwLeftMost, dwSecondLeft, dwSecondRight, dwRightMost); sprintf(NSUserAgent, "R2Northstar/%d.%d.%d+dev", dwLeftMost, dwSecondLeft, dwSecondRight); } - else { + else + { sprintf(version, "%d.%d.%d.%d", dwLeftMost, dwSecondLeft, dwSecondRight, dwRightMost); sprintf(NSUserAgent, "R2Northstar/%d.%d.%d", dwLeftMost, dwSecondLeft, dwSecondRight); } |