commonlibsse_ng\skse/
version.rs

1// C++ Original code
2// - ref: https://github.com/SARDONYX-forks/CommonLibVR/blob/ng/include/SKSE/Version.h
3// SPDX-FileCopyrightText: (C) 2018 Ryan-rsm-McKenzie
4// SPDX-License-Identifier: MIT
5//
6// SPDX-FileCopyrightText: (C) 2025 SARDONYX
7// SPDX-License-Identifier: Apache-2.0 OR MIT
8
9use crate::rel::version::Version;
10
11pub const RUNTIME_SSE_1_1_47: Version = Version::new(1, 1, 47, 0);
12pub const RUNTIME_SSE_1_1_51: Version = Version::new(1, 1, 51, 0);
13pub const RUNTIME_SSE_1_2_36: Version = Version::new(1, 2, 36, 0);
14pub const RUNTIME_SSE_1_2_39: Version = Version::new(1, 2, 39, 0);
15pub const RUNTIME_SSE_1_3_5: Version = Version::new(1, 3, 5, 0);
16pub const RUNTIME_SSE_1_3_9: Version = Version::new(1, 3, 9, 0);
17pub const RUNTIME_SSE_1_4_2: Version = Version::new(1, 4, 2, 0);
18pub const RUNTIME_SSE_1_5_3: Version = Version::new(1, 5, 3, 0);
19pub const RUNTIME_SSE_1_5_16: Version = Version::new(1, 5, 16, 0);
20pub const RUNTIME_SSE_1_5_23: Version = Version::new(1, 5, 23, 0);
21pub const RUNTIME_SSE_1_5_39: Version = Version::new(1, 5, 39, 0);
22pub const RUNTIME_SSE_1_5_50: Version = Version::new(1, 5, 50, 0);
23pub const RUNTIME_SSE_1_5_53: Version = Version::new(1, 5, 53, 0);
24pub const RUNTIME_SSE_1_5_62: Version = Version::new(1, 5, 62, 0);
25pub const RUNTIME_SSE_1_5_73: Version = Version::new(1, 5, 73, 0);
26pub const RUNTIME_SSE_1_5_80: Version = Version::new(1, 5, 80, 0);
27pub const RUNTIME_SSE_1_5_97: Version = Version::new(1, 5, 97, 0);
28pub const RUNTIME_SSE_1_6_317: Version = Version::new(1, 6, 317, 0);
29pub const RUNTIME_SSE_1_6_318: Version = Version::new(1, 6, 318, 0);
30pub const RUNTIME_SSE_1_6_323: Version = Version::new(1, 6, 323, 0);
31pub const RUNTIME_SSE_1_6_342: Version = Version::new(1, 6, 342, 0);
32pub const RUNTIME_SSE_1_6_353: Version = Version::new(1, 6, 353, 0);
33pub const RUNTIME_SSE_1_6_629: Version = Version::new(1, 6, 629, 0);
34pub const RUNTIME_SSE_1_6_640: Version = Version::new(1, 6, 640, 0);
35pub const RUNTIME_SSE_1_6_659: Version = Version::new(1, 6, 659, 0);
36pub const RUNTIME_SSE_1_6_678: Version = Version::new(1, 6, 678, 0);
37pub const RUNTIME_SSE_1_6_1130: Version = Version::new(1, 6, 1130, 0);
38pub const RUNTIME_SSE_1_6_1170: Version = Version::new(1, 6, 1170, 0);
39
40pub const RUNTIME_SSE_LATEST_AE: Version = RUNTIME_SSE_1_6_1170;
41pub const RUNTIME_SSE_LATEST_SE: Version = RUNTIME_SSE_1_5_97;
42/// The latest version of SE, AE.
43pub const RUNTIME_SSE_LATEST: Version = RUNTIME_SSE_LATEST_AE;
44
45pub const RUNTIME_VR_1_4_15: Version = Version::new(1, 4, 15, 0);
46pub const RUNTIME_LATEST_VR: Version = RUNTIME_VR_1_4_15;