mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 16:50:54 +01:00
32 lines
746 B
C++
32 lines
746 B
C++
// 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
|