EgtUILib 3.1d1 :
- aggiunta interfaccia per funzione EgtRedraw.
This commit is contained in:
@@ -14093,6 +14093,20 @@ End Function
|
||||
End If
|
||||
End Function
|
||||
|
||||
<DllImport(EgtIntDll32, CharSet:=CharSet.Unicode, EntryPoint:="EgtRedraw"), SuppressUnmanagedCodeSecurity()>
|
||||
Private Function EgtRedraw_32() As Boolean
|
||||
End Function
|
||||
<DllImport(EgtIntDll64, CharSet:=CharSet.Unicode, EntryPoint:="EgtRedraw"), SuppressUnmanagedCodeSecurity()>
|
||||
Private Function EgtRedraw_64() As Boolean
|
||||
End Function
|
||||
Public Function EgtRedraw() As Boolean
|
||||
If IntPtr.Size = 4 Then
|
||||
Return EgtRedraw_32()
|
||||
Else
|
||||
Return EgtRedraw_64()
|
||||
End If
|
||||
End Function
|
||||
|
||||
<DllImport(EgtIntDll32, CharSet:=CharSet.Unicode, EntryPoint:="EgtSelect"), SuppressUnmanagedCodeSecurity()>
|
||||
Private Function EgtSelect_32(nWinX As Integer, nWinY As Integer,
|
||||
nSelW As Integer, nSelH As Integer, ByRef nSel As Integer) As Boolean
|
||||
|
||||
@@ -35,5 +35,5 @@ Imports System.Runtime.InteropServices
|
||||
' È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
|
||||
' utilizzando l'asterisco (*) come descritto di seguito:
|
||||
|
||||
<Assembly: AssemblyVersion("3.1.3.2")>
|
||||
<Assembly: AssemblyFileVersion("3.1.3.2")>
|
||||
<Assembly: AssemblyVersion("3.1.4.1")>
|
||||
<Assembly: AssemblyFileVersion("3.1.4.1")>
|
||||
|
||||
Reference in New Issue
Block a user