forked from tiltedphoques/TiltedEvolution
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTargetConfig.h
More file actions
32 lines (26 loc) · 746 Bytes
/
Copy pathTargetConfig.h
File metadata and controls
32 lines (26 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2021 TiltedPhoques SRL.
// For licensing information see LICENSE at the root of this distribution.
#pragma once
#include <cstdint>
#include <limits>
#include <BuildInfo.h>
#define CLIENT_DLL 0
struct TargetConfig
{
const wchar_t* dllClientName;
const wchar_t* fullGameName;
uint32_t steamAppId;
uint32_t exeLoadSz;
// Needs to be kept up to date.
uint32_t exeDiskSz;
};
// clang-format off
static constexpr TargetConfig CurrentTarget{
L"SkyrimTogether.dll",
L"Skyrim Special Edition",
489830, 0x40000000, 35410264};
#define TARGET_NAME L"SkyrimSE"
#define TARGET_NAME_A "SkyrimSE"
#define PRODUCT_NAME L"Skyrim Together"
#define SHORT_NAME L"Skyrim Special Edition"
// clang-format on