Skip to content

Commit df09154

Browse files
committed
Dependency fix
The fix that worked.
1 parent 1537249 commit df09154

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

data/_MemoryLibrary.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ DllCall(MemLib.GetProcAddress("ahkterminate")), MemLib.Free()
2424
DllCall(NewMemLib.GetProcAddress("ahkterminate")), NewMemLib.Free()
2525
MsgBox AutoHotkey.dll threads terminated and memory freed
2626
*/
27-
#include %a_scriptDir%\_Struct.ahk
27+
#include %a_scriptDir%\data\_Struct.ahk
2828
Class _MemoryLibrary {
2929
static MEMORYMODULE :=(A_PtrSize=8?"
3030
(LTrim

data/_Struct.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
; Example:
3939
; file:Struct_Example.ahk
4040
;
41-
#include %a_scriptDir%\sizeof.ahk
41+
#include %a_scriptDir%\data\sizeof.ahk
4242
Class _Struct {
4343
; Data Sizes
4444
static PTR:=A_PtrSize,UPTR:=A_PtrSize,SHORT:=2,USHORT:=2,INT:=4,UINT:=4,__int64:=8,INT64:=8,UINT64:=8,DOUBLE:=8,FLOAT:=4,CHAR:=1,UCHAR:=1,VOID:=A_PtrSize

data/threadMan.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include %a_scriptDir%\_MemoryLibrary.ahk
1+
#include %a_scriptDir%\data\_MemoryLibrary.ahk
22

33
class threadMan {
44
ahkDllPath:=

0 commit comments

Comments
 (0)