Skip to content

Commit

Permalink
Bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
ericremoreynolds committed Sep 1, 2014
1 parent 65cd324 commit ec081b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions addin/xlpython/xlpython.bas
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Option Private Module
Option Explicit

#If win64 Then
Const XLPyDLLName As String = "xlpython64-2.0.4.dll"
Declare Function XLPyDLLActivate Lib "xlpython64-2.0.4.dll" (ByRef result As Variant, Optional ByVal config As String = "") As Long
Declare Function XLPyDLLNDims Lib "xlpython64-2.0.4.dll" (ByRef src As Variant, ByRef dims As Long, ByRef transpose As Boolean, ByRef dest As Variant) As Long
Const XLPyDLLName As String = "xlpython64-2.0.5.dll"
Declare Function XLPyDLLActivate Lib "xlpython64-2.0.5.dll" (ByRef result As Variant, Optional ByVal config As String = "") As Long
Declare Function XLPyDLLNDims Lib "xlpython64-2.0.5.dll" (ByRef src As Variant, ByRef dims As Long, ByRef transpose As Boolean, ByRef dest As Variant) As Long
#Else
Private Const XLPyDLLName As String = "xlpython32-2.0.4.dll"
Private Declare Function XLPyDLLActivate Lib "xlpython32-2.0.4.dll" (ByRef result As Variant, Optional ByVal config As String = "") As Long
Private Declare Function XLPyDLLNDims Lib "xlpython32-2.0.4.dll" (ByRef src As Variant, ByRef dims As Long, ByRef transpose As Boolean, ByRef dest As Variant) As Long
Private Const XLPyDLLName As String = "xlpython32-2.0.5.dll"
Private Declare Function XLPyDLLActivate Lib "xlpython32-2.0.5.dll" (ByRef result As Variant, Optional ByVal config As String = "") As Long
Private Declare Function XLPyDLLNDims Lib "xlpython32-2.0.5.dll" (ByRef src As Variant, ByRef dims As Long, ByRef transpose As Boolean, ByRef dest As Variant) As Long
#End If
Private Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As Long

Expand Down
8 changes: 4 additions & 4 deletions xlpython/xlpython.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,25 +66,25 @@
<LinkIncremental>true</LinkIncremental>
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(Platform)\$(Configuration)\</IntDir>
<TargetName>$(ProjectName)$(PlatformArchitecture)-2.0.4</TargetName>
<TargetName>$(ProjectName)$(PlatformArchitecture)-2.0.5</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(Platform)\$(Configuration)\</IntDir>
<TargetName>$(ProjectName)$(PlatformArchitecture)-2.0.4</TargetName>
<TargetName>$(ProjectName)$(PlatformArchitecture)-2.0.5</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(Platform)\$(Configuration)\</IntDir>
<TargetName>$(ProjectName)$(PlatformArchitecture)-2.0.4</TargetName>
<TargetName>$(ProjectName)$(PlatformArchitecture)-2.0.5</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(Platform)\$(Configuration)\</IntDir>
<TargetName>$(ProjectName)$(PlatformArchitecture)-2.0.4</TargetName>
<TargetName>$(ProjectName)$(PlatformArchitecture)-2.0.5</TargetName>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand Down

0 comments on commit ec081b6

Please sign in to comment.