Skip to content
This repository has been archived by the owner on Mar 29, 2019. It is now read-only.

Commit

Permalink
64-bit support, volume control, and general restructuring by [JAZ]
Browse files Browse the repository at this point in the history
  • Loading branch information
kode54 committed Aug 26, 2012
1 parent a555dd1 commit 9771d37
Show file tree
Hide file tree
Showing 42 changed files with 3,376 additions and 364 deletions.
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
/bassmididrv_source/Release
/bassmididrv_source/Debug
/bassmididrv_source/out
/bassmididrv_source/*.dll
/bassmididrv_source/*.exe
/drivercfg/*.opensdf
/drivercfg/*.sdf
/drivercfg/*.vcxproj.user
Expand All @@ -15,6 +17,8 @@
/drivercfg/ipch
/drivercfg/Release
/drivercfg/Debug
/drivercfg/*.dll
/drivercfg/*.exe
/sfpacker/*.opensdf
/sfpacker/*.sdf
/sfpacker/*.vcxproj.user
Expand All @@ -23,6 +27,7 @@
/sfpacker/ipch
/sfpacker/Release
/sfpacker/Debug
*.dll
*.exe
/sfpacker/*.dll
/sfpacker/*.exe
/output/
git_ver.h
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
3.8
winmm driver
* 64-bit support, volume control, and general restructuring by [JAZ]
3.7
winmm driver
* fixed volume control
Expand Down
28 changes: 14 additions & 14 deletions bassmididrv.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ Section "Needed (required)"
DetailPrint "Copying driver and synth..."
${If} ${RunningX64}
SetOutPath "$WINDIR\SysWow64\bassmididrv"
File bass.dll
File bassflac.dll
File basswv.dll
File bassopus.dll
File bass_mpc.dll
File bassmidi.dll
File bassmididrv.dll
File output\bass.dll
File output\bassflac.dll
File output\basswv.dll
File output\bassopus.dll
File output\bass_mpc.dll
File output\bassmidi.dll
File output\bassmididrv.dll
File bassmididrvcfg.exe
File sfpacker.exe
;check if already installed
Expand All @@ -98,13 +98,13 @@ NEXT1:
StrCmp $1 "9" 0 LOOP1
${Else}
SetOutPath "$WINDIR\System32\bassmididrv"
File bass.dll
File bassflac.dll
File basswv.dll
File bassopus.dll
File bass_mpc.dll
File bassmidi.dll
File bassmididrv.dll
File output\bass.dll
File output\bassflac.dll
File output\basswv.dll
File output\bassopus.dll
File output\bass_mpc.dll
File output\bassmidi.dll
File output\bassmididrv.dll
File bassmididrvcfg.exe
File sfpacker.exe
;check if already installed
Expand Down
Loading

0 comments on commit 9771d37

Please sign in to comment.