TestEIn 1.6r3 :
- aggiornamento.
This commit is contained in:
+5
-5
@@ -6127,16 +6127,16 @@ Public Function EgtAddPhase() As Integer
|
||||
End Function
|
||||
|
||||
<DllImport(EgtIntDll32, CharSet:=CharSet.Unicode, EntryPoint:="EgtSetCurrPhase")>
|
||||
Private Function EgtSetCurrPhase_32(nPhase As Integer) As Boolean
|
||||
Private Function EgtSetCurrPhase_32(nPhase As Integer, bForced As Boolean) As Boolean
|
||||
End Function
|
||||
<DllImport(EgtIntDll64, CharSet:=CharSet.Unicode, EntryPoint:="EgtSetCurrPhase")>
|
||||
Private Function EgtSetCurrPhase_64(nPhase As Integer) As Boolean
|
||||
Private Function EgtSetCurrPhase_64(nPhase As Integer, bForced As Boolean) As Boolean
|
||||
End Function
|
||||
Public Function EgtSetCurrPhase(nPhase As Integer) As Boolean
|
||||
Public Function EgtSetCurrPhase(nPhase As Integer, Optional bForced As Boolean = False) As Boolean
|
||||
If IntPtr.Size = 4 Then
|
||||
Return EgtSetCurrPhase_32(nPhase)
|
||||
Return EgtSetCurrPhase_32(nPhase, bForced)
|
||||
Else
|
||||
Return EgtSetCurrPhase_64(nPhase)
|
||||
Return EgtSetCurrPhase_64(nPhase, bForced)
|
||||
End If
|
||||
End Function
|
||||
|
||||
|
||||
@@ -46,5 +46,5 @@ Imports System.Runtime.InteropServices
|
||||
' utilizzando l'asterisco (*) come descritto di seguito:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.6.18.1")>
|
||||
<Assembly: AssemblyFileVersion("1.6.18.1")>
|
||||
<Assembly: AssemblyVersion("1.6.18.3")>
|
||||
<Assembly: AssemblyFileVersion("1.6.18.3")>
|
||||
|
||||
Reference in New Issue
Block a user