diff --git a/Constants/ConstIni.vb b/Constants/ConstIni.vb index b24c803..efabbd1 100644 --- a/Constants/ConstIni.vb +++ b/Constants/ConstIni.vb @@ -43,6 +43,7 @@ Module ConstIni Public Const S_LUA As String = "Lua" Public Const K_LIBSDIR As String = "LibsDir" + Public Const K_LIBSDIR64 As String = "LibsDir64" Public Const K_BASELIB As String = "BaseLib" Public Const S_GEOMDB As String = "GeomDB" diff --git a/MainWindow/MainWindowVM.vb b/MainWindow/MainWindowVM.vb index c166ef2..0b716f0 100644 --- a/MainWindow/MainWindowVM.vb +++ b/MainWindow/MainWindowVM.vb @@ -366,6 +366,9 @@ Public Class MainWindowVM ' imposto dir di default per libreria Lua e lancio libreria di base Dim sLuaLibsDir As String = String.Empty GetPrivateProfileString(S_LUA, K_LIBSDIR, "", sLuaLibsDir) + #If PLATFORM = "x64" Then + GetPrivateProfileString(S_LUA, K_LIBSDIR64, sLuaLibsDir, sLuaLibsDir) + #End If EgtSetLuaLibs(sLuaLibsDir) Dim sLuaBaseLib As String = String.Empty GetPrivateProfileString(S_LUA, K_BASELIB, "EgtBase", sLuaBaseLib) diff --git a/My Project/AssemblyInfo.vb b/My Project/AssemblyInfo.vb index cf2ab5e..4ee3b15 100644 --- a/My Project/AssemblyInfo.vb +++ b/My Project/AssemblyInfo.vb @@ -70,5 +70,5 @@ Imports System.Windows ' by using the '*' as shown below: ' - - + +