@@ -4,24 +4,24 @@ Option Explicit
44
55# If VBA7 Then
66 # If win64 Then
7- Const XLPyDLLName As String = "xlpython64-2.0.7 .dll"
8- Declare PtrSafe Function XLPyDLLActivate Lib "xlpython64-2.0.7 .dll" ( ByRef result As Variant , Optional ByVal config As String = "" ) As Long
9- Declare PtrSafe Function XLPyDLLNDims Lib "xlpython64-2.0.7 .dll" ( ByRef src As Variant , ByRef dims As Long , ByRef transpose As Boolean , ByRef dest As Variant ) As Long
7+ Const XLPyDLLName As String = "xlpython64-2.0.8 .dll"
8+ Declare PtrSafe Function XLPyDLLActivate Lib "xlpython64-2.0.8 .dll" ( ByRef result As Variant , Optional ByVal config As String = "" ) As Long
9+ Declare PtrSafe Function XLPyDLLNDims Lib "xlpython64-2.0.8 .dll" ( ByRef src As Variant , ByRef dims As Long , ByRef transpose As Boolean , ByRef dest As Variant ) As Long
1010 # Else
11- Private Const XLPyDLLName As String = "xlpython32-2.0.7 .dll"
12- Private Declare PtrSafe Function XLPyDLLActivate Lib "xlpython32-2.0.7 .dll" ( ByRef result As Variant , Optional ByVal config As String = "" ) As Long
13- Private Declare PtrSafe Function XLPyDLLNDims Lib "xlpython32-2.0.7 .dll" ( ByRef src As Variant , ByRef dims As Long , ByRef transpose As Boolean , ByRef dest As Variant ) As Long
11+ Private Const XLPyDLLName As String = "xlpython32-2.0.8 .dll"
12+ Private Declare PtrSafe Function XLPyDLLActivate Lib "xlpython32-2.0.8 .dll" ( ByRef result As Variant , Optional ByVal config As String = "" ) As Long
13+ Private Declare PtrSafe Function XLPyDLLNDims Lib "xlpython32-2.0.8 .dll" ( ByRef src As Variant , ByRef dims As Long , ByRef transpose As Boolean , ByRef dest As Variant ) As Long
1414 # End If
1515 Private Declare PtrSafe Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" ( ByVal lpLibFileName As String ) As Long
1616# Else
1717 # If win64 Then
18- Const XLPyDLLName As String = "xlpython64-2.0.7 .dll"
19- Declare Function XLPyDLLActivate Lib "xlpython64-2.0.7 .dll" ( ByRef result As Variant , Optional ByVal config As String = "" ) As Long
20- Declare Function XLPyDLLNDims Lib "xlpython64-2.0.7 .dll" ( ByRef src As Variant , ByRef dims As Long , ByRef transpose As Boolean , ByRef dest As Variant ) As Long
18+ Const XLPyDLLName As String = "xlpython64-2.0.8 .dll"
19+ Declare Function XLPyDLLActivate Lib "xlpython64-2.0.8 .dll" ( ByRef result As Variant , Optional ByVal config As String = "" ) As Long
20+ Declare Function XLPyDLLNDims Lib "xlpython64-2.0.8 .dll" ( ByRef src As Variant , ByRef dims As Long , ByRef transpose As Boolean , ByRef dest As Variant ) As Long
2121 # Else
22- Private Const XLPyDLLName As String = "xlpython32-2.0.7 .dll"
23- Private Declare Function XLPyDLLActivate Lib "xlpython32-2.0.7 .dll" ( ByRef result As Variant , Optional ByVal config As String = "" ) As Long
24- Private Declare Function XLPyDLLNDims Lib "xlpython32-2.0.7 .dll" ( ByRef src As Variant , ByRef dims As Long , ByRef transpose As Boolean , ByRef dest As Variant ) As Long
22+ Private Const XLPyDLLName As String = "xlpython32-2.0.8 .dll"
23+ Private Declare Function XLPyDLLActivate Lib "xlpython32-2.0.8 .dll" ( ByRef result As Variant , Optional ByVal config As String = "" ) As Long
24+ Private Declare Function XLPyDLLNDims Lib "xlpython32-2.0.8 .dll" ( ByRef src As Variant , ByRef dims As Long , ByRef transpose As Boolean , ByRef dest As Variant ) As Long
2525 # End If
2626 Private Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" ( ByVal lpLibFileName As String ) As Long
2727# EndIf
0 commit comments