mirror of
https://github.com/araxiaonline/WoW-Launcher.git
synced 2026-06-13 01:22:21 -04:00
- NO dev mode anymore. A valid certificate is ALWAYS required. - NO Arctium server connection. But do not rename things, thanks. - NO other features than connecting to servers with valid certificates attached. Means: NO mod loading or dev mode. For that use our full-featured launcher at https://arctium.io - NO binary releases. - Only modern versions (all branches) are supported. What you can still do: - Launch modern game clients and connect to servers with a valid certificate attached. - Specify custom version and cdns URLs to be able to launch older clients or data from your own CDN.
29 lines
771 B
C#
29 lines
771 B
C#
// Copyright (c) Arctium.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
namespace Arctium.Game.Launcher.Structures;
|
|
|
|
struct StartupInfo
|
|
{
|
|
public uint Cb;
|
|
public string Reserved;
|
|
public string Desktop;
|
|
public string Title;
|
|
public uint X;
|
|
public uint Y;
|
|
public uint XSize;
|
|
public uint YSize;
|
|
public uint XCountChars;
|
|
public uint YCountChars;
|
|
public uint FillAttribute;
|
|
public uint Flags;
|
|
public short ShowWindow;
|
|
public short Reserved2;
|
|
public nint ReservedHandle;
|
|
public nint StdInputHandle;
|
|
public nint StdOutputHandle;
|
|
public nint StdErrorHandle;
|
|
|
|
public static int Size => Marshal.SizeOf<StartupInfo>();
|
|
}
|