TestEIn 1.6w2 :

- aggiornata interfaccia verso codice nativo.
This commit is contained in:
Dario Sassi
2016-11-07 14:56:52 +00:00
parent cca8015aae
commit f96d1bbf03
2 changed files with 16 additions and 2 deletions
+14
View File
@@ -6892,6 +6892,20 @@ Public Function EgtMoveRawPart(nRawId As Integer, ByRef vtMove As Vector3d) As B
End If
End Function
<DllImport(EgtIntDll32, CharSet:=CharSet.Unicode, EntryPoint:="EgtRotateRawPart"), SuppressUnmanagedCodeSecurity()>
Private Function EgtRotateRawPart_32(nRawId As Integer, ByRef vtAx As Vector3d, dAngDeg As Double) As Boolean
End Function
<DllImport(EgtIntDll64, CharSet:=CharSet.Unicode, EntryPoint:="EgtRotateRawPart"), SuppressUnmanagedCodeSecurity()>
Private Function EgtRotateRawPart_64(nRawId As Integer, ByRef vtAx As Vector3d, dAngDeg As Double) As Boolean
End Function
Public Function EgtRotateRawPart(nRawId As Integer, ByRef vtAx As Vector3d, dAngDeg As Double) As Boolean
If IntPtr.Size = 4 Then
Return EgtRotateRawPart_32(nRawId, vtAx, dAngDeg)
Else
Return EgtRotateRawPart_64(nRawId, vtAx, dAngDeg)
End If
End Function
<DllImport(EgtIntDll32, CharSet:=CharSet.Unicode, EntryPoint:="EgtSplitFlatRawPartWithMachinings"), SuppressUnmanagedCodeSecurity()>
Private Function EgtSplitFlatRawPartWithMachinings_32(nRawId As Integer, nNumMch As Integer, nMchId() As Integer) As Integer
End Function
+2 -2
View File
@@ -46,5 +46,5 @@ Imports System.Runtime.InteropServices
' utilizzando l'asterisco (*) come descritto di seguito:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.6.23.1")>
<Assembly: AssemblyFileVersion("1.6.23.1")>
<Assembly: AssemblyVersion("1.6.23.2")>
<Assembly: AssemblyFileVersion("1.6.23.2")>