Skip to content

Commit

Permalink
Update for SKSE 2.2.4 and Skyrim AE 1.6.1130 (#109)
Browse files Browse the repository at this point in the history
Update for SKSE 2.2.4 and Skyrim AE 1.6.1130, see #108
  • Loading branch information
ryobg authored Dec 6, 2023
1 parent 9b334c2 commit 74cb4b8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
image: Visual Studio 2019
version: '4.2.6.{build}'
version: '4.2.7.{build}'
platform: x64
branches:
only:
- master
- devel
- develop

configuration:
Expand All @@ -12,7 +13,7 @@ configuration:
- ReleaseGOG

environment:
PYTHON: "C:\\Python35-x64"
PYTHON: "C:\\Python312-x64"
matrix:
- JC_SKSE: "64"
- JC_SKSE: "VR"
Expand Down
Binary file modified dep/skse64/skse64.7z
Binary file not shown.
2 changes: 1 addition & 1 deletion src/JContainers/src/jcontainers_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace collections {

# define JC_API_VERSION 4
# define JC_FEATURE_VERSION 2
# define JC_PATCH_VERSION 6
# define JC_PATCH_VERSION 7

# define JC_FILE_VERSION JC_API_VERSION, JC_FEATURE_VERSION, JC_PATCH_VERSION, 0

Expand Down
6 changes: 3 additions & 3 deletions src/JContainers/src/skse/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ namespace skse {
DEFINE_MEMBER_FN(Set, string_ref *, 0x00C60C50, const char * buf);
DEFINE_MEMBER_FN(Release, void, 0x00C61E90);
#else
DEFINE_MEMBER_FN(ctor, string_ref *, 0x00C61360, const char * buf);
DEFINE_MEMBER_FN(Set, string_ref *, 0x00C614F0, const char * buf);
DEFINE_MEMBER_FN(Release, void, 0x00C62730);
DEFINE_MEMBER_FN(ctor, string_ref *, 0x00CE7D90, const char * buf);
DEFINE_MEMBER_FN(Set, string_ref *, 0x00CE7F20, const char * buf);
DEFINE_MEMBER_FN(Release, void, 0x00CE9160);
#endif

public:
Expand Down
3 changes: 1 addition & 2 deletions tools/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,10 @@ class JCLib(object):

def __init__(self, location):
import ctypes
from ctypes import cdll

print ('Load:', os.path.relpath (location, ROOT))
self.location = location
self.lib = cdll.LoadLibrary(location);
self.lib = ctypes.CDLL (location);
self.lib.JC_versionString.restype = ctypes.c_char_p
self.lib.JC_produceCode.argtypes = [ctypes.c_char_p]

Expand Down

0 comments on commit 74cb4b8

Please sign in to comment.