Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed faxe/faxe.dll
Binary file not shown.
1 change: 0 additions & 1 deletion faxe/faxe.dll.hash

This file was deleted.

1 change: 1 addition & 0 deletions ndll/Windows/faxe.dll.hash
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
d1ebe785ce52bb8aab5c40eec40223a4
Binary file modified ndll/Windows/faxe.hdll
Binary file not shown.
26 changes: 26 additions & 0 deletions update-hashlink-hdll.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@echo off
IF NOT EXIST "update-hashlink-hdll.bat" (
echo This script can only be run from inside the same directory
pause
exit -1
)

echo.
cd faxe
echo Building faxe dll
:: -DHASHLINK needs to point to the local 1.10 HashLink installation
haxelib run hxcpp Build.xml -DHASHLINK=C:\HaxeToolkit\HashLink
echo.

cd ..
echo removing old dll
del "ndll\Windows\faxe.hdll"
del "ndll\Windows\faxe.dll.hash"
echo.

echo moving dll and hash file into hashlink directory
move "faxe\faxe.dll" "ndll\Windows\faxe.hdll"
move "faxe\faxe.dll.hash" "ndll\Windows\"
echo.

pause