From 448c12b0f4ba92e10e69fe3b04c09764077da7f2 Mon Sep 17 00:00:00 2001 From: cepthomas Date: Mon, 12 Nov 2018 16:15:48 -0600 Subject: [PATCH] Updated all solution and project files to VS2017. --- .gitignore | 12 +- projects/demo/demo.vcxproj | 27 +- projects/demo/demo.vcxproj.filters | 5 - projects/effects/effects.dsp | 308 ------------------ projects/effects/effects.dsw | 29 -- projects/effects/effects.sln | 25 ++ projects/effects/effects.vcxproj | 188 +++++++++++ projects/eguitar/eguitar.dsp | 298 ------------------ projects/eguitar/eguitar.dsw | 29 -- projects/eguitar/eguitar.sln | 25 ++ projects/eguitar/eguitar.vcxproj | 186 +++++++++++ projects/examples/audioprobe.dsp | 158 ---------- projects/examples/audioprobe.vcxproj | 141 +++++++++ projects/examples/audioprobe.vcxproj.filters | 38 +++ projects/examples/bethree.dsp | 222 ------------- projects/examples/bethree.vcxproj | 165 ++++++++++ projects/examples/bethree.vcxproj.filters | 114 +++++++ projects/examples/controlbee.dsp | 251 --------------- projects/examples/controlbee.vcxproj | 172 ++++++++++ projects/examples/controlbee.vcxproj.filters | 135 ++++++++ projects/examples/crtsine.dsp | 126 -------- projects/examples/crtsine.vcxproj | 141 +++++++++ projects/examples/crtsine.vcxproj.filters | 42 +++ projects/examples/duplex.dsp | 157 ---------- projects/examples/duplex.vcxproj | 141 +++++++++ projects/examples/duplex.vcxproj.filters | 36 +++ projects/examples/examples.dsw | 221 ------------- projects/examples/examples.sln | 121 +++++++ projects/examples/foursine.dsp | 132 -------- projects/examples/foursine.vcxproj | 143 +++++++++ projects/examples/foursine.vcxproj.filters | 48 +++ projects/examples/grains.dsp | 146 --------- projects/examples/grains.vcxproj | 146 +++++++++ projects/examples/grains.vcxproj.filters | 57 ++++ projects/examples/inetIn.dsp | 166 ---------- projects/examples/inetIn.vcxproj | 151 +++++++++ projects/examples/inetIn.vcxproj.filters | 72 +++++ projects/examples/inetOut.dsp | 154 --------- projects/examples/inetOut.vcxproj | 148 +++++++++ projects/examples/inetOut.vcxproj.filters | 63 ++++ projects/examples/midiprobe.dsp | 110 ------- projects/examples/midiprobe.vcxproj | 137 ++++++++ projects/examples/midiprobe.vcxproj.filters | 30 ++ projects/examples/play.dsp | 130 -------- projects/examples/play.vcxproj | 142 +++++++++ projects/examples/play.vcxproj.filters | 45 +++ projects/examples/playsmf.dsp | 126 -------- projects/examples/playsmf.vcxproj | 141 +++++++++ projects/examples/playsmf.vcxproj.filters | 42 +++ projects/examples/record.dsp | 152 --------- projects/examples/record.vcxproj | 147 +++++++++ projects/examples/record.vcxproj.filters | 60 ++++ projects/examples/rtsine.dsp | 142 --------- projects/examples/rtsine.vcxproj | 145 +++++++++ projects/examples/rtsine.vcxproj.filters | 54 ++++ projects/examples/sine.dsp | 134 -------- projects/examples/sine.vcxproj | 143 +++++++++ projects/examples/sine.vcxproj.filters | 48 +++ projects/examples/sineosc.dsp | 157 ---------- projects/examples/sineosc.vcxproj | 149 +++++++++ projects/examples/sineosc.vcxproj.filters | 66 ++++ projects/examples/threebees.dsp | 258 --------------- projects/examples/threebees.vcxproj | 174 ++++++++++ projects/examples/threebees.vcxproj.filters | 141 +++++++++ projects/ragamatic/ragamat.dsp | 314 ------------------- projects/ragamatic/ragamat.vcxproj | 191 +++++++++++ projects/ragamatic/ragamatic.dsw | 29 -- projects/ragamatic/ragamatic.sln | 25 ++ 68 files changed, 4395 insertions(+), 3976 deletions(-) delete mode 100644 projects/effects/effects.dsp delete mode 100644 projects/effects/effects.dsw create mode 100644 projects/effects/effects.sln create mode 100644 projects/effects/effects.vcxproj delete mode 100644 projects/eguitar/eguitar.dsp delete mode 100644 projects/eguitar/eguitar.dsw create mode 100644 projects/eguitar/eguitar.sln create mode 100644 projects/eguitar/eguitar.vcxproj delete mode 100755 projects/examples/audioprobe.dsp create mode 100644 projects/examples/audioprobe.vcxproj create mode 100644 projects/examples/audioprobe.vcxproj.filters delete mode 100755 projects/examples/bethree.dsp create mode 100644 projects/examples/bethree.vcxproj create mode 100644 projects/examples/bethree.vcxproj.filters delete mode 100755 projects/examples/controlbee.dsp create mode 100644 projects/examples/controlbee.vcxproj create mode 100644 projects/examples/controlbee.vcxproj.filters delete mode 100755 projects/examples/crtsine.dsp create mode 100644 projects/examples/crtsine.vcxproj create mode 100644 projects/examples/crtsine.vcxproj.filters delete mode 100755 projects/examples/duplex.dsp create mode 100644 projects/examples/duplex.vcxproj create mode 100644 projects/examples/duplex.vcxproj.filters delete mode 100755 projects/examples/examples.dsw create mode 100644 projects/examples/examples.sln delete mode 100755 projects/examples/foursine.dsp create mode 100644 projects/examples/foursine.vcxproj create mode 100644 projects/examples/foursine.vcxproj.filters delete mode 100755 projects/examples/grains.dsp create mode 100644 projects/examples/grains.vcxproj create mode 100644 projects/examples/grains.vcxproj.filters delete mode 100755 projects/examples/inetIn.dsp create mode 100644 projects/examples/inetIn.vcxproj create mode 100644 projects/examples/inetIn.vcxproj.filters delete mode 100755 projects/examples/inetOut.dsp create mode 100644 projects/examples/inetOut.vcxproj create mode 100644 projects/examples/inetOut.vcxproj.filters delete mode 100755 projects/examples/midiprobe.dsp create mode 100644 projects/examples/midiprobe.vcxproj create mode 100644 projects/examples/midiprobe.vcxproj.filters delete mode 100755 projects/examples/play.dsp create mode 100644 projects/examples/play.vcxproj create mode 100644 projects/examples/play.vcxproj.filters delete mode 100755 projects/examples/playsmf.dsp create mode 100644 projects/examples/playsmf.vcxproj create mode 100644 projects/examples/playsmf.vcxproj.filters delete mode 100755 projects/examples/record.dsp create mode 100644 projects/examples/record.vcxproj create mode 100644 projects/examples/record.vcxproj.filters delete mode 100755 projects/examples/rtsine.dsp create mode 100644 projects/examples/rtsine.vcxproj create mode 100644 projects/examples/rtsine.vcxproj.filters delete mode 100755 projects/examples/sine.dsp create mode 100644 projects/examples/sine.vcxproj create mode 100644 projects/examples/sine.vcxproj.filters delete mode 100755 projects/examples/sineosc.dsp create mode 100644 projects/examples/sineosc.vcxproj create mode 100644 projects/examples/sineosc.vcxproj.filters delete mode 100755 projects/examples/threebees.dsp create mode 100644 projects/examples/threebees.vcxproj create mode 100644 projects/examples/threebees.vcxproj.filters delete mode 100644 projects/ragamatic/ragamat.dsp create mode 100644 projects/ragamatic/ragamat.vcxproj delete mode 100644 projects/ragamatic/ragamatic.dsw create mode 100644 projects/ragamatic/ragamatic.sln diff --git a/.gitignore b/.gitignore index cc01023..16fbb2c 100644 --- a/.gitignore +++ b/.gitignore @@ -190,8 +190,10 @@ src/Makefile #### # Files generated by Visual Studio -projects/demo/.vs/ -projects/demo/demo.exe -projects/demo/demo.ilk -projects/demo/demo.pdb -projects/demo/demo.vcxproj.user +projects/*/.vs/ +projects/*/*.exe +projects/*/*.ilk +projects/*/*.pdb +projects/*/*.vcxproj.user +projects/*/Release/ +projects/*/Debug/ diff --git a/projects/demo/demo.vcxproj b/projects/demo/demo.vcxproj index aa2a1ca..f37151f 100644 --- a/projects/demo/demo.vcxproj +++ b/projects/demo/demo.vcxproj @@ -43,12 +43,12 @@ .\ - .\release\ + .\Release\ false .\ - .\debug\ + .\Debug\ true @@ -62,11 +62,10 @@ Level3 ..\..\include;..\..\src\include;%(AdditionalIncludeDirectories) NDEBUG;__LITTLE_ENDIAN__;__WINDOWS_MM__;WIN32;_CONSOLE;__WINDOWS_DS__;%(PreprocessorDefinitions) - - .\release\ - .\release\demo.pch - .\release\ - .\release\ + .\Release\ + .\Release\demo.pch + .\Release\ + .\Release\ 4996 @@ -99,11 +98,10 @@ ProgramDatabase ..\..\include;..\..\src\include;%(AdditionalIncludeDirectories) _DEBUG;__LITTLE_ENDIAN__;__WINDOWS_MM__;WIN32;_CONSOLE;__WINDOWS_DS__;%(PreprocessorDefinitions) - - .\debug\ - .\debug\demo.pch - .\debug\ - .\debug\ + .\Debug\ + .\Debug\demo.pch + .\Debug\ + .\Debug\ EnableFastChecks 4996 @@ -129,17 +127,14 @@ - - - @@ -211,9 +206,7 @@ - - diff --git a/projects/demo/demo.vcxproj.filters b/projects/demo/demo.vcxproj.filters index e4f6ea8..9caad6e 100644 --- a/projects/demo/demo.vcxproj.filters +++ b/projects/demo/demo.vcxproj.filters @@ -20,7 +20,6 @@ - Source Files @@ -33,7 +32,6 @@ Source Files - asio @@ -46,7 +44,6 @@ asio - Source Files @@ -254,7 +251,6 @@ - Header Files @@ -267,7 +263,6 @@ Header Files - Header Files diff --git a/projects/effects/effects.dsp b/projects/effects/effects.dsp deleted file mode 100644 index bd76c88..0000000 --- a/projects/effects/effects.dsp +++ /dev/null @@ -1,308 +0,0 @@ -# Microsoft Developer Studio Project File - Name="effects" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=effects - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "effects.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "effects.mak" CFG="effects - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "effects - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "effects - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "effects - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Wsock32.lib dsound.lib winmm.lib /nologo /subsystem:console /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "effects - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Wsock32.lib dsound.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "effects - Win32 Release" -# Name "effects - Win32 Debug" -# Begin Source File - -SOURCE=..\..\src\Chorus.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Chorus.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Delay.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Delay.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\DelayL.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\DelayL.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Echo.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Echo.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Effect.h -# End Source File -# Begin Source File - -SOURCE=.\effects.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Envelope.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Envelope.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\OnePole.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\OnePole.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileRead.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Filter.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Generator.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\JCRev.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\JCRev.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Messager.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Messager.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Mutex.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\NRev.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\NRev.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FreeVerb.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FreeVerb.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\PitShift.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\PitShift.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\LentPitShift.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\LentPitShift.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\PRCRev.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\PRCRev.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtMidi.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtMidi.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\SineWave.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\SineWave.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\SKINI.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\SKINI.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Socket.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Socket.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\TcpServer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\TcpServer.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Thread.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Thread.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileLoop.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileLoop.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# End Target -# End Project diff --git a/projects/effects/effects.dsw b/projects/effects/effects.dsw deleted file mode 100644 index 2ebac4a..0000000 --- a/projects/effects/effects.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "effects"=.\effects.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/projects/effects/effects.sln b/projects/effects/effects.sln new file mode 100644 index 0000000..fb9c754 --- /dev/null +++ b/projects/effects/effects.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2046 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "effects", "effects.vcxproj", "{18C1E3D6-08AB-4087-8522-BCAF2E767BA7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {18C1E3D6-08AB-4087-8522-BCAF2E767BA7}.Debug|x86.ActiveCfg = Debug|Win32 + {18C1E3D6-08AB-4087-8522-BCAF2E767BA7}.Debug|x86.Build.0 = Debug|Win32 + {18C1E3D6-08AB-4087-8522-BCAF2E767BA7}.Release|x86.ActiveCfg = Release|Win32 + {18C1E3D6-08AB-4087-8522-BCAF2E767BA7}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC9ECEAF-8EE9-48ED-9F13-E12A6505C643} + EndGlobalSection +EndGlobal diff --git a/projects/effects/effects.vcxproj b/projects/effects/effects.vcxproj new file mode 100644 index 0000000..e9c4acd --- /dev/null +++ b/projects/effects/effects.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {18C1E3D6-08AB-4087-8522-BCAF2E767BA7} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\ + true + + + .\ + .\Release\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ..\..\include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + 4996 + + + .\effects.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\effects.bsc + + + true + true + Console + .\effects.exe + odbc32.lib;odbccp32.lib;Wsock32.lib;dsound.lib;winmm.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ..\..\include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\effects.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\effects.bsc + + + true + Console + .\effects.exe + odbc32.lib;odbccp32.lib;Wsock32.lib;dsound.lib;winmm.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/eguitar/eguitar.dsp b/projects/eguitar/eguitar.dsp deleted file mode 100644 index ad5c134..0000000 --- a/projects/eguitar/eguitar.dsp +++ /dev/null @@ -1,298 +0,0 @@ -# Microsoft Developer Studio Project File - Name="eguitar" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=eguitar - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ragamat.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ragamat.mak" CFG="eguitar - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "eguitar - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "eguitar - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "eguitar - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Wsock32.lib dsound.lib winmm.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "eguitar - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Wsock32.lib dsound.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "eguitar - Win32 Release" -# Name "eguitar - Win32 Debug" -# Begin Source File - -SOURCE=..\..\src\Fir.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Fir.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Delay.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Delay.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\DelayA.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\DelayA.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\DelayL.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\DelayL.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Effect.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Twang.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Twang.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Guitar.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Guitar.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileRead.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWrite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWrite.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Filter.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Generator.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\JCRev.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\JCRev.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Messager.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Messager.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Mutex.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Noise.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Noise.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Cubic.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\OnePole.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\OnePole.h -# End Source File -# Begin Source File - -SOURCE=.\eguitar.cpp -# End Source File -# Begin Source File - -SOURCE=.\utilities.cpp -# End Source File -# Begin Source File - -SOURCE=.\utilities.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtMidi.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtMidi.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\SKINI.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\SKINI.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Socket.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Socket.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\TcpServer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\TcpServer.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Thread.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Thread.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Target -# End Project diff --git a/projects/eguitar/eguitar.dsw b/projects/eguitar/eguitar.dsw deleted file mode 100644 index c474623..0000000 --- a/projects/eguitar/eguitar.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "eguitar"=.\eguitar.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/projects/eguitar/eguitar.sln b/projects/eguitar/eguitar.sln new file mode 100644 index 0000000..55bc731 --- /dev/null +++ b/projects/eguitar/eguitar.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2046 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "eguitar", "eguitar.vcxproj", "{7714F3D3-F28C-4BEF-827B-78B2756890C9}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7714F3D3-F28C-4BEF-827B-78B2756890C9}.Debug|x86.ActiveCfg = Debug|Win32 + {7714F3D3-F28C-4BEF-827B-78B2756890C9}.Debug|x86.Build.0 = Debug|Win32 + {7714F3D3-F28C-4BEF-827B-78B2756890C9}.Release|x86.ActiveCfg = Release|Win32 + {7714F3D3-F28C-4BEF-827B-78B2756890C9}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8FADFDB1-0C46-48DA-BE7F-592DC5BA7B9F} + EndGlobalSection +EndGlobal diff --git a/projects/eguitar/eguitar.vcxproj b/projects/eguitar/eguitar.vcxproj new file mode 100644 index 0000000..812be2c --- /dev/null +++ b/projects/eguitar/eguitar.vcxproj @@ -0,0 +1,186 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {7714F3D3-F28C-4BEF-827B-78B2756890C9} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\ + true + + + .\ + .\Release\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ..\..\include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + 4996 + + + .\eguitar.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\eguitar.bsc + + + true + true + Console + .\eguitar.exe + odbc32.lib;odbccp32.lib;Wsock32.lib;dsound.lib;winmm.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ..\..\include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\eguitar.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\eguitar.bsc + + + true + Console + .\eguitar.exe + odbc32.lib;odbccp32.lib;Wsock32.lib;dsound.lib;winmm.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/audioprobe.dsp b/projects/examples/audioprobe.dsp deleted file mode 100755 index 452f2e7..0000000 --- a/projects/examples/audioprobe.dsp +++ /dev/null @@ -1,158 +0,0 @@ -# Microsoft Developer Studio Project File - Name="audioprobe" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=audioprobe - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "audioprobe.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "audioprobe.mak" CFG="audioprobe - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "audioprobe - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "audioprobe - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "audioprobe - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "audioprobe___Win32_Release" -# PROP BASE Intermediate_Dir "audioprobe___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "__WINDOWS_ASIO__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "audioprobe - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "audioprobe___Win32_Debug" -# PROP BASE Intermediate_Dir "audioprobe___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__WINDOWS_ASIO__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "audioprobe - Win32 Release" -# Name "audioprobe - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\include\asio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiodrivers.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiolist.cpp -# End Source File -# Begin Source File - -SOURCE=.\audioprobe.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\iasiothiscallresolver.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\src\include\asio.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiodrivers.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiodrvr.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiolist.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiosys.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\ginclude.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\iasiodrv.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\iasiothiscallresolver.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/projects/examples/audioprobe.vcxproj b/projects/examples/audioprobe.vcxproj new file mode 100644 index 0000000..46c73e3 --- /dev/null +++ b/projects/examples/audioprobe.vcxproj @@ -0,0 +1,141 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {A7D3935D-C971-4C3A-A171-CF03323CD65F} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__WINDOWS_ASIO__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\audioprobe.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\audioprobe.bsc + + + true + true + Console + .\audioprobe.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;__WINDOWS_DS__;__WINDOWS_ASIO__;WIN32;_CONSOLE;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\audioprobe.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\audioprobe.bsc + + + true + Console + .\audioprobe.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/audioprobe.vcxproj.filters b/projects/examples/audioprobe.vcxproj.filters new file mode 100644 index 0000000..47e45a7 --- /dev/null +++ b/projects/examples/audioprobe.vcxproj.filters @@ -0,0 +1,38 @@ + + + + + {3ead9678-8354-4498-93d3-e834328937f5} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {b628491f-dca8-4c24-b290-3216afda20c5} + h;hpp;hxx;hm;inl + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/bethree.dsp b/projects/examples/bethree.dsp deleted file mode 100755 index 56d55dc..0000000 --- a/projects/examples/bethree.dsp +++ /dev/null @@ -1,222 +0,0 @@ -# Microsoft Developer Studio Project File - Name="bethree" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=bethree - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "bethree.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "bethree.mak" CFG="bethree - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "bethree - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "bethree - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "bethree - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "bethree___Win32_Release" -# PROP BASE Intermediate_Dir "bethree___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "bethree - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "bethree___Win32_Debug" -# PROP BASE Intermediate_Dir "bethree___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "bethree - Win32 Release" -# Name "bethree - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\ADSR.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\BeeThree.cpp -# End Source File -# Begin Source File - -SOURCE=.\bethree.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Envelope.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FM.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SineWave.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\TwoZero.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileLoop.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\ADSR.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\BeeThree.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Envelope.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileRead.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Filter.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FM.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Generator.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Instrmnt.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\SineWave.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\TwoZero.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileLoop.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/bethree.vcxproj b/projects/examples/bethree.vcxproj new file mode 100644 index 0000000..4976ee9 --- /dev/null +++ b/projects/examples/bethree.vcxproj @@ -0,0 +1,165 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {111A5F15-D431-4401-91D6-2EC2219F2466} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Release\$(ProjectName)\ + false + + + .\ + .\Debug\$(ProjectName)\ + true + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\bethree.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\bethree.bsc + + + true + Console + .\bethree.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\bethree.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\bethree.bsc + + + true + true + Console + .\bethree.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/bethree.vcxproj.filters b/projects/examples/bethree.vcxproj.filters new file mode 100644 index 0000000..e073338 --- /dev/null +++ b/projects/examples/bethree.vcxproj.filters @@ -0,0 +1,114 @@ + + + + + {c72d43b7-1796-48fe-8419-2defb0f7dc93} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {174a9a8a-df96-4f13-b00b-542e86a663bc} + h;hpp;hxx;hm;inl + + + {1a1ee98f-a385-4d33-abfc-462a4752ab96} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/controlbee.dsp b/projects/examples/controlbee.dsp deleted file mode 100755 index 6b41d03..0000000 --- a/projects/examples/controlbee.dsp +++ /dev/null @@ -1,251 +0,0 @@ -# Microsoft Developer Studio Project File - Name="controlbee" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=controlbee - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "controlbee.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "controlbee.mak" CFG="controlbee - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "controlbee - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "controlbee - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "controlbee - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "controlbee___Win32_Release" -# PROP BASE Intermediate_Dir "controlbee___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib Wsock32.lib winmm.lib /nologo /subsystem:console /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "controlbee - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "controlbee___Win32_Debug" -# PROP BASE Intermediate_Dir "controlbee___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib Wsock32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "controlbee - Win32 Release" -# Name "controlbee - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\ADSR.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\BeeThree.cpp -# End Source File -# Begin Source File - -SOURCE=.\controlbee.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Envelope.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FM.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Messager.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtMidi.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SineWave.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SKINI.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Socket.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\TcpServer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Thread.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\TwoZero.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileLoop.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\ADSR.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\BeeThree.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Envelope.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Filter.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FM.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Instrmnt.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Messager.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Mutex.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtMidi.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtWvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\SKINI.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\TcpServer.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\TwoZero.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileLoop.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/controlbee.vcxproj b/projects/examples/controlbee.vcxproj new file mode 100644 index 0000000..a4a3ea8 --- /dev/null +++ b/projects/examples/controlbee.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {C1F9A770-ADCD-48B9-B755-6485B72EF737} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\controlbee.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\controlbee.bsc + + + true + Console + .\controlbee.exe + odbc32.lib;odbccp32.lib;dsound.lib;Wsock32.lib;winmm.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\controlbee.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\controlbee.bsc + + + true + true + Console + .\controlbee.exe + winmm.lib;odbc32.lib;odbccp32.lib;dsound.lib;Wsock32.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/controlbee.vcxproj.filters b/projects/examples/controlbee.vcxproj.filters new file mode 100644 index 0000000..0f784a0 --- /dev/null +++ b/projects/examples/controlbee.vcxproj.filters @@ -0,0 +1,135 @@ + + + + + {828a6351-1801-4168-9f4c-c0217a4784f1} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {898e12b6-fc48-48e7-bcd1-f3491afe8bba} + h;hpp;hxx;hm;inl + + + {dd6b8ccb-bee2-45c2-9519-42860f9900bf} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/crtsine.dsp b/projects/examples/crtsine.dsp deleted file mode 100755 index f56b8ae..0000000 --- a/projects/examples/crtsine.dsp +++ /dev/null @@ -1,126 +0,0 @@ -# Microsoft Developer Studio Project File - Name="crtsine" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=crtsine - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "crtsine.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "crtsine.mak" CFG="crtsine - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "crtsine - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "crtsine - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "crtsine - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "crtsine___Win32_Release" -# PROP BASE Intermediate_Dir "crtsine___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_DS__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "crtsine - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "crtsine___Win32_Debug" -# PROP BASE Intermediate_Dir "crtsine___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_DS__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "crtsine - Win32 Release" -# Name "crtsine - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\crtsine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SineWave.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Generator.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/crtsine.vcxproj b/projects/examples/crtsine.vcxproj new file mode 100644 index 0000000..7800c32 --- /dev/null +++ b/projects/examples/crtsine.vcxproj @@ -0,0 +1,141 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {606013A5-B154-4719-BE6B-7F538E35472B} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\crtsine.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\crtsine.bsc + + + true + true + Console + .\crtsine.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\crtsine.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\crtsine.bsc + + + true + Console + .\crtsine.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/crtsine.vcxproj.filters b/projects/examples/crtsine.vcxproj.filters new file mode 100644 index 0000000..da5b661 --- /dev/null +++ b/projects/examples/crtsine.vcxproj.filters @@ -0,0 +1,42 @@ + + + + + {095692d5-cac5-43e2-8ddc-68dc17318426} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {fd8a8bb9-aa6c-4625-b1d0-638775adf4ff} + h;hpp;hxx;hm;inl + + + {a8934afd-f390-431c-be23-40b7ce501c09} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/duplex.dsp b/projects/examples/duplex.dsp deleted file mode 100755 index 020d9b7..0000000 --- a/projects/examples/duplex.dsp +++ /dev/null @@ -1,157 +0,0 @@ -# Microsoft Developer Studio Project File - Name="duplex" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=duplex - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "duplex.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "duplex.mak" CFG="duplex - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "duplex - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "duplex - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "duplex - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "duplex___Win32_Release" -# PROP BASE Intermediate_Dir "duplex___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__WINDOWS_ASIO__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "duplex - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "duplex___Win32_Debug" -# PROP BASE Intermediate_Dir "duplex___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__WINDOWS_ASIO__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "duplex - Win32 Release" -# Name "duplex - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\include\asio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiodrivers.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiolist.cpp -# End Source File -# Begin Source File - -SOURCE=.\duplex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\iasiothiscallresolver.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\src\include\asio.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiodrivers.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiodrvr.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiolist.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\asiosys.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\ginclude.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\iasiodrv.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\include\iasiothiscallresolver.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/duplex.vcxproj b/projects/examples/duplex.vcxproj new file mode 100644 index 0000000..343ab06 --- /dev/null +++ b/projects/examples/duplex.vcxproj @@ -0,0 +1,141 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {DA79F83E-22B8-40E0-AA53-4A11509CA03B} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__WINDOWS_ASIO__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\duplex.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\duplex.bsc + + + true + Console + .\duplex.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__WINDOWS_ASIO__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\duplex.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\duplex.bsc + + + true + true + Console + .\duplex.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/duplex.vcxproj.filters b/projects/examples/duplex.vcxproj.filters new file mode 100644 index 0000000..fe45532 --- /dev/null +++ b/projects/examples/duplex.vcxproj.filters @@ -0,0 +1,36 @@ + + + + + {814114c0-fab4-4cc1-ae27-89ba6123b604} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {aa39f84f-28ef-40f0-a37a-bf42b59993e4} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + + \ No newline at end of file diff --git a/projects/examples/examples.dsw b/projects/examples/examples.dsw deleted file mode 100755 index d81dccf..0000000 --- a/projects/examples/examples.dsw +++ /dev/null @@ -1,221 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "audioprobe"=".\audioprobe.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "bethree"=".\bethree.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "controlbee"=".\controlbee.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "crtsine"=".\crtsine.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "duplex"=".\duplex.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "foursine"=".\foursine.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "grains"=".\grains.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "inetIn"=".\inetIn.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "inetOut"=".\inetOut.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "midiprobe"=".\midiprobe.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "play"=".\play.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "playsmf"=".\playsmf.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "record"=".\record.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "rtsine"=".\rtsine.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "sine"=".\sine.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "sineosc"=".\sineosc.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "threebees"=".\threebees.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/projects/examples/examples.sln b/projects/examples/examples.sln new file mode 100644 index 0000000..49b79b5 --- /dev/null +++ b/projects/examples/examples.sln @@ -0,0 +1,121 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2046 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{059D6162-CD51-11D0-AE1F-00A0C90FFFC3}") = "audioprobe", "audioprobe.vcxproj", "{A7D3935D-C971-4C3A-A171-CF03323CD65F}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bethree", "bethree.vcxproj", "{111A5F15-D431-4401-91D6-2EC2219F2466}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "controlbee", "controlbee.vcxproj", "{C1F9A770-ADCD-48B9-B755-6485B72EF737}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "crtsine", "crtsine.vcxproj", "{606013A5-B154-4719-BE6B-7F538E35472B}" +EndProject +Project("{059D6162-CD51-11D0-AE1F-00A0C90FFFC3}") = "duplex", "duplex.vcxproj", "{DA79F83E-22B8-40E0-AA53-4A11509CA03B}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "foursine", "foursine.vcxproj", "{8128023E-E073-443F-B88C-0B238969B5A2}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grains", "grains.vcxproj", "{464E5873-95B3-479F-B6F6-A2DB1BE80217}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "inetIn", "inetIn.vcxproj", "{5462CB78-72EF-492C-87E9-84ECD413BA73}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "inetOut", "inetOut.vcxproj", "{8EFC8A64-23BB-43B6-B67C-EBD800D27813}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "midiprobe", "midiprobe.vcxproj", "{FEC8BDBE-77B2-440B-9C52-C1E120F7DE38}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "play", "play.vcxproj", "{36735A10-1965-4FAA-AE80-FE669A20ACF0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "playsmf", "playsmf.vcxproj", "{D672D100-ABE2-42D0-9F3C-F3908C966F76}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "record", "record.vcxproj", "{A16966B3-2E87-4502-8BE9-9CD2429734FB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "rtsine", "rtsine.vcxproj", "{4F6BC2B9-B03C-4268-B35E-3AA1D7C72BC7}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sine", "sine.vcxproj", "{1BF0909B-5188-4845-8996-9B16DA390460}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sineosc", "sineosc.vcxproj", "{39A7BB67-CF82-47BA-A5D2-DABB850752ED}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "threebees", "threebees.vcxproj", "{18A8A20F-E561-4081-9F96-6AB3D5DC8AC5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A7D3935D-C971-4C3A-A171-CF03323CD65F}.Debug|x86.ActiveCfg = Debug|Win32 + {A7D3935D-C971-4C3A-A171-CF03323CD65F}.Debug|x86.Build.0 = Debug|Win32 + {A7D3935D-C971-4C3A-A171-CF03323CD65F}.Release|x86.ActiveCfg = Release|Win32 + {A7D3935D-C971-4C3A-A171-CF03323CD65F}.Release|x86.Build.0 = Release|Win32 + {111A5F15-D431-4401-91D6-2EC2219F2466}.Debug|x86.ActiveCfg = Debug|Win32 + {111A5F15-D431-4401-91D6-2EC2219F2466}.Debug|x86.Build.0 = Debug|Win32 + {111A5F15-D431-4401-91D6-2EC2219F2466}.Release|x86.ActiveCfg = Release|Win32 + {111A5F15-D431-4401-91D6-2EC2219F2466}.Release|x86.Build.0 = Release|Win32 + {C1F9A770-ADCD-48B9-B755-6485B72EF737}.Debug|x86.ActiveCfg = Debug|Win32 + {C1F9A770-ADCD-48B9-B755-6485B72EF737}.Debug|x86.Build.0 = Debug|Win32 + {C1F9A770-ADCD-48B9-B755-6485B72EF737}.Release|x86.ActiveCfg = Release|Win32 + {C1F9A770-ADCD-48B9-B755-6485B72EF737}.Release|x86.Build.0 = Release|Win32 + {606013A5-B154-4719-BE6B-7F538E35472B}.Debug|x86.ActiveCfg = Debug|Win32 + {606013A5-B154-4719-BE6B-7F538E35472B}.Debug|x86.Build.0 = Debug|Win32 + {606013A5-B154-4719-BE6B-7F538E35472B}.Release|x86.ActiveCfg = Release|Win32 + {606013A5-B154-4719-BE6B-7F538E35472B}.Release|x86.Build.0 = Release|Win32 + {DA79F83E-22B8-40E0-AA53-4A11509CA03B}.Debug|x86.ActiveCfg = Debug|Win32 + {DA79F83E-22B8-40E0-AA53-4A11509CA03B}.Debug|x86.Build.0 = Debug|Win32 + {DA79F83E-22B8-40E0-AA53-4A11509CA03B}.Release|x86.ActiveCfg = Release|Win32 + {DA79F83E-22B8-40E0-AA53-4A11509CA03B}.Release|x86.Build.0 = Release|Win32 + {8128023E-E073-443F-B88C-0B238969B5A2}.Debug|x86.ActiveCfg = Debug|Win32 + {8128023E-E073-443F-B88C-0B238969B5A2}.Debug|x86.Build.0 = Debug|Win32 + {8128023E-E073-443F-B88C-0B238969B5A2}.Release|x86.ActiveCfg = Release|Win32 + {8128023E-E073-443F-B88C-0B238969B5A2}.Release|x86.Build.0 = Release|Win32 + {464E5873-95B3-479F-B6F6-A2DB1BE80217}.Debug|x86.ActiveCfg = Debug|Win32 + {464E5873-95B3-479F-B6F6-A2DB1BE80217}.Debug|x86.Build.0 = Debug|Win32 + {464E5873-95B3-479F-B6F6-A2DB1BE80217}.Release|x86.ActiveCfg = Release|Win32 + {464E5873-95B3-479F-B6F6-A2DB1BE80217}.Release|x86.Build.0 = Release|Win32 + {5462CB78-72EF-492C-87E9-84ECD413BA73}.Debug|x86.ActiveCfg = Debug|Win32 + {5462CB78-72EF-492C-87E9-84ECD413BA73}.Debug|x86.Build.0 = Debug|Win32 + {5462CB78-72EF-492C-87E9-84ECD413BA73}.Release|x86.ActiveCfg = Release|Win32 + {5462CB78-72EF-492C-87E9-84ECD413BA73}.Release|x86.Build.0 = Release|Win32 + {8EFC8A64-23BB-43B6-B67C-EBD800D27813}.Debug|x86.ActiveCfg = Debug|Win32 + {8EFC8A64-23BB-43B6-B67C-EBD800D27813}.Debug|x86.Build.0 = Debug|Win32 + {8EFC8A64-23BB-43B6-B67C-EBD800D27813}.Release|x86.ActiveCfg = Release|Win32 + {8EFC8A64-23BB-43B6-B67C-EBD800D27813}.Release|x86.Build.0 = Release|Win32 + {FEC8BDBE-77B2-440B-9C52-C1E120F7DE38}.Debug|x86.ActiveCfg = Debug|Win32 + {FEC8BDBE-77B2-440B-9C52-C1E120F7DE38}.Debug|x86.Build.0 = Debug|Win32 + {FEC8BDBE-77B2-440B-9C52-C1E120F7DE38}.Release|x86.ActiveCfg = Release|Win32 + {FEC8BDBE-77B2-440B-9C52-C1E120F7DE38}.Release|x86.Build.0 = Release|Win32 + {36735A10-1965-4FAA-AE80-FE669A20ACF0}.Debug|x86.ActiveCfg = Debug|Win32 + {36735A10-1965-4FAA-AE80-FE669A20ACF0}.Debug|x86.Build.0 = Debug|Win32 + {36735A10-1965-4FAA-AE80-FE669A20ACF0}.Release|x86.ActiveCfg = Release|Win32 + {36735A10-1965-4FAA-AE80-FE669A20ACF0}.Release|x86.Build.0 = Release|Win32 + {D672D100-ABE2-42D0-9F3C-F3908C966F76}.Debug|x86.ActiveCfg = Debug|Win32 + {D672D100-ABE2-42D0-9F3C-F3908C966F76}.Debug|x86.Build.0 = Debug|Win32 + {D672D100-ABE2-42D0-9F3C-F3908C966F76}.Release|x86.ActiveCfg = Release|Win32 + {D672D100-ABE2-42D0-9F3C-F3908C966F76}.Release|x86.Build.0 = Release|Win32 + {A16966B3-2E87-4502-8BE9-9CD2429734FB}.Debug|x86.ActiveCfg = Debug|Win32 + {A16966B3-2E87-4502-8BE9-9CD2429734FB}.Debug|x86.Build.0 = Debug|Win32 + {A16966B3-2E87-4502-8BE9-9CD2429734FB}.Release|x86.ActiveCfg = Release|Win32 + {A16966B3-2E87-4502-8BE9-9CD2429734FB}.Release|x86.Build.0 = Release|Win32 + {4F6BC2B9-B03C-4268-B35E-3AA1D7C72BC7}.Debug|x86.ActiveCfg = Debug|Win32 + {4F6BC2B9-B03C-4268-B35E-3AA1D7C72BC7}.Debug|x86.Build.0 = Debug|Win32 + {4F6BC2B9-B03C-4268-B35E-3AA1D7C72BC7}.Release|x86.ActiveCfg = Release|Win32 + {4F6BC2B9-B03C-4268-B35E-3AA1D7C72BC7}.Release|x86.Build.0 = Release|Win32 + {1BF0909B-5188-4845-8996-9B16DA390460}.Debug|x86.ActiveCfg = Debug|Win32 + {1BF0909B-5188-4845-8996-9B16DA390460}.Debug|x86.Build.0 = Debug|Win32 + {1BF0909B-5188-4845-8996-9B16DA390460}.Release|x86.ActiveCfg = Release|Win32 + {1BF0909B-5188-4845-8996-9B16DA390460}.Release|x86.Build.0 = Release|Win32 + {39A7BB67-CF82-47BA-A5D2-DABB850752ED}.Debug|x86.ActiveCfg = Debug|Win32 + {39A7BB67-CF82-47BA-A5D2-DABB850752ED}.Debug|x86.Build.0 = Debug|Win32 + {39A7BB67-CF82-47BA-A5D2-DABB850752ED}.Release|x86.ActiveCfg = Release|Win32 + {39A7BB67-CF82-47BA-A5D2-DABB850752ED}.Release|x86.Build.0 = Release|Win32 + {18A8A20F-E561-4081-9F96-6AB3D5DC8AC5}.Debug|x86.ActiveCfg = Debug|Win32 + {18A8A20F-E561-4081-9F96-6AB3D5DC8AC5}.Debug|x86.Build.0 = Debug|Win32 + {18A8A20F-E561-4081-9F96-6AB3D5DC8AC5}.Release|x86.ActiveCfg = Release|Win32 + {18A8A20F-E561-4081-9F96-6AB3D5DC8AC5}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4ACE5A20-B8A8-4A1D-ADE7-96D4364063DE} + EndGlobalSection +EndGlobal diff --git a/projects/examples/foursine.dsp b/projects/examples/foursine.dsp deleted file mode 100755 index 9fcd11a..0000000 --- a/projects/examples/foursine.dsp +++ /dev/null @@ -1,132 +0,0 @@ -# Microsoft Developer Studio Project File - Name="foursine" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=foursine - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "foursine.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "foursine.mak" CFG="foursine - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "foursine - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "foursine - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "foursine - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "foursine___Win32_Release" -# PROP BASE Intermediate_Dir "foursine___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /D "__WINDOWS_DS__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "foursine - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "foursine___Win32_Debug" -# PROP BASE Intermediate_Dir "foursine___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /D "__WINDOWS_DS__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "foursine - Win32 Release" -# Name "foursine - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FileWrite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=.\foursine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SineWave.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\FileWrite.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/foursine.vcxproj b/projects/examples/foursine.vcxproj new file mode 100644 index 0000000..f434745 --- /dev/null +++ b/projects/examples/foursine.vcxproj @@ -0,0 +1,143 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {8128023E-E073-443F-B88C-0B238969B5A2} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\foursine.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\foursine.bsc + + + true + Console + .\foursine.exe + odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\foursine.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\foursine.bsc + + + true + true + Console + .\foursine.exe + odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/foursine.vcxproj.filters b/projects/examples/foursine.vcxproj.filters new file mode 100644 index 0000000..413c1e5 --- /dev/null +++ b/projects/examples/foursine.vcxproj.filters @@ -0,0 +1,48 @@ + + + + + {b4d64f6d-a57d-4d85-8efe-24faba18ead8} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {bf2bfdb7-dd4a-43b6-bc8c-bce966b4861a} + h;hpp;hxx;hm;inl + + + {6557afcc-d351-4c05-ad0f-954add1fc12d} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/grains.dsp b/projects/examples/grains.dsp deleted file mode 100755 index 9f5af8d..0000000 --- a/projects/examples/grains.dsp +++ /dev/null @@ -1,146 +0,0 @@ -# Microsoft Developer Studio Project File - Name="grains" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=grains - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "grains.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "grains.mak" CFG="grains - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "grains - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "grains - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "grains - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "grains___Win32_Release" -# PROP BASE Intermediate_Dir "grains___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_DS__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "grains - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "grains___Win32_Debug" -# PROP BASE Intermediate_Dir "grains___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_DS__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "grains - Win32 Release" -# Name "grains - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=.\grains.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Granulate.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Noise.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\FileRead.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Generator.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Granulate.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Noise.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/grains.vcxproj b/projects/examples/grains.vcxproj new file mode 100644 index 0000000..07c7b46 --- /dev/null +++ b/projects/examples/grains.vcxproj @@ -0,0 +1,146 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {464E5873-95B3-479F-B6F6-A2DB1BE80217} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\grains.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\grains.bsc + + + true + Console + .\grains.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\grains.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\grains.bsc + + + true + true + Console + .\grains.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/grains.vcxproj.filters b/projects/examples/grains.vcxproj.filters new file mode 100644 index 0000000..c022e72 --- /dev/null +++ b/projects/examples/grains.vcxproj.filters @@ -0,0 +1,57 @@ + + + + + {50dfff55-f8fe-4482-ae01-217be7aae2b5} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {51912429-d12c-4a3f-b550-89bea136bf90} + h;hpp;hxx;hm;inl + + + {d2dbe46e-ec84-4f23-b2ef-1ce46c72c2b0} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/inetIn.dsp b/projects/examples/inetIn.dsp deleted file mode 100755 index 8ce3ebb..0000000 --- a/projects/examples/inetIn.dsp +++ /dev/null @@ -1,166 +0,0 @@ -# Microsoft Developer Studio Project File - Name="inetIn" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=inetIn - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "inetIn.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "inetIn.mak" CFG="inetIn - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "inetIn - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "inetIn - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "inetIn - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "inetIn___Win32_Release" -# PROP BASE Intermediate_Dir "inetIn___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib wsock32.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "inetIn - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "inetIn___Win32_Debug" -# PROP BASE Intermediate_Dir "inetIn___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "inetIn - Win32 Release" -# Name "inetIn - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\inetIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\InetWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Socket.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\TcpServer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Thread.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\UdpSocket.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\InetWvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtWvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\UdpSocket.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/inetIn.vcxproj b/projects/examples/inetIn.vcxproj new file mode 100644 index 0000000..563b24c --- /dev/null +++ b/projects/examples/inetIn.vcxproj @@ -0,0 +1,151 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {5462CB78-72EF-492C-87E9-84ECD413BA73} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\inetIn.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\inetIn.bsc + + + true + true + Console + .\inetIn.exe + odbc32.lib;odbccp32.lib;dsound.lib;wsock32.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\inetIn.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\inetIn.bsc + + + true + Console + .\inetIn.exe + odbc32.lib;odbccp32.lib;dsound.lib;wsock32.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/inetIn.vcxproj.filters b/projects/examples/inetIn.vcxproj.filters new file mode 100644 index 0000000..638e43c --- /dev/null +++ b/projects/examples/inetIn.vcxproj.filters @@ -0,0 +1,72 @@ + + + + + {da075d4d-f7ba-41af-848f-ce446703f2b5} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {5d0c329e-c7d8-4b8e-80c3-7a652f4e588d} + h;hpp;hxx;hm;inl + + + {b9a76ee2-b813-428f-9d52-a77be9fd83c2} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/inetOut.dsp b/projects/examples/inetOut.dsp deleted file mode 100755 index bdd3e8e..0000000 --- a/projects/examples/inetOut.dsp +++ /dev/null @@ -1,154 +0,0 @@ -# Microsoft Developer Studio Project File - Name="inetOut" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=inetOut - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "inetOut.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "inetOut.mak" CFG="inetOut - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "inetOut - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "inetOut - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "inetOut - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "inetOut___Win32_Release" -# PROP BASE Intermediate_Dir "inetOut___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "inetOut - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "inetOut___Win32_Debug" -# PROP BASE Intermediate_Dir "inetOut___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "inetOut - Win32 Release" -# Name "inetOut - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=.\inetOut.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\InetWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Socket.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\TcpClient.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\UdpSocket.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\FileRead.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\InetWvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\TcpClient.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/inetOut.vcxproj b/projects/examples/inetOut.vcxproj new file mode 100644 index 0000000..e6e03dc --- /dev/null +++ b/projects/examples/inetOut.vcxproj @@ -0,0 +1,148 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {8EFC8A64-23BB-43B6-B67C-EBD800D27813} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\inetOut.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\inetOut.bsc + + + true + Console + .\inetOut.exe + odbc32.lib;odbccp32.lib;wsock32.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\inetOut.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\inetOut.bsc + + + true + true + Console + .\inetOut.exe + odbc32.lib;odbccp32.lib;wsock32.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/inetOut.vcxproj.filters b/projects/examples/inetOut.vcxproj.filters new file mode 100644 index 0000000..f994fd2 --- /dev/null +++ b/projects/examples/inetOut.vcxproj.filters @@ -0,0 +1,63 @@ + + + + + {f8dd2df4-bba7-43a7-b01d-41ed7849bb37} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {9b4700c8-a018-477c-af06-a0bd745ec0eb} + h;hpp;hxx;hm;inl + + + {b5d9311f-890e-4a3b-8bb4-404a2ae599b0} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/midiprobe.dsp b/projects/examples/midiprobe.dsp deleted file mode 100755 index 10002ba..0000000 --- a/projects/examples/midiprobe.dsp +++ /dev/null @@ -1,110 +0,0 @@ -# Microsoft Developer Studio Project File - Name="midiprobe" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=midiprobe - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "midiprobe.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "midiprobe.mak" CFG="midiprobe - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "midiprobe - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "midiprobe - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "midiprobe - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "midiprobe___Win32_Release" -# PROP BASE Intermediate_Dir "midiprobe___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "midiprobe - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "midiprobe___Win32_Debug" -# PROP BASE Intermediate_Dir "midiprobe___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_MM__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "midiprobe - Win32 Release" -# Name "midiprobe - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\midiprobe.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtMidi.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\RtMidi.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/midiprobe.vcxproj b/projects/examples/midiprobe.vcxproj new file mode 100644 index 0000000..01a86e2 --- /dev/null +++ b/projects/examples/midiprobe.vcxproj @@ -0,0 +1,137 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {FEC8BDBE-77B2-440B-9C52-C1E120F7DE38} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\midiprobe.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\midiprobe.bsc + + + true + Console + .\midiprobe.exe + odbc32.lib;odbccp32.lib;winmm.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\midiprobe.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\midiprobe.bsc + + + true + true + Console + .\midiprobe.exe + odbc32.lib;odbccp32.lib;winmm.lib;%(AdditionalDependencies) + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/midiprobe.vcxproj.filters b/projects/examples/midiprobe.vcxproj.filters new file mode 100644 index 0000000..535fc8a --- /dev/null +++ b/projects/examples/midiprobe.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {b2d176c7-f0d4-4c01-b70a-d94511c8dddb} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {dbc5af6a-0082-41ec-b9a4-81be71941424} + h;hpp;hxx;hm;inl + + + {6a2afe32-1d81-4bdb-91df-ad55434bc978} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/play.dsp b/projects/examples/play.dsp deleted file mode 100755 index c1e7f13..0000000 --- a/projects/examples/play.dsp +++ /dev/null @@ -1,130 +0,0 @@ -# Microsoft Developer Studio Project File - Name="play" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=play - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "play.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "play.mak" CFG="play - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "play - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "play - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "play - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "play - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "play - Win32 Release" -# Name "play - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=.\play.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/play.vcxproj b/projects/examples/play.vcxproj new file mode 100644 index 0000000..d168d32 --- /dev/null +++ b/projects/examples/play.vcxproj @@ -0,0 +1,142 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {36735A10-1965-4FAA-AE80-FE669A20ACF0} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\play.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\play.bsc + + + true + true + Console + .\play.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\play.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\play.bsc + + + true + Console + .\play.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/play.vcxproj.filters b/projects/examples/play.vcxproj.filters new file mode 100644 index 0000000..f86dc7d --- /dev/null +++ b/projects/examples/play.vcxproj.filters @@ -0,0 +1,45 @@ + + + + + {d5b611e5-0a75-4dc8-8e19-4257179653ca} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {0b06e5ce-8306-471d-a4f9-160ad9662ba2} + h;hpp;hxx;hm;inl + + + {112a423d-b634-46ae-a610-d1064b755894} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/playsmf.dsp b/projects/examples/playsmf.dsp deleted file mode 100755 index 1992cc9..0000000 --- a/projects/examples/playsmf.dsp +++ /dev/null @@ -1,126 +0,0 @@ -# Microsoft Developer Studio Project File - Name="playsmf" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=playsmf - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "playsmf.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "playsmf.mak" CFG="playsmf - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "playsmf - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "playsmf - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "playsmf - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_DS__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "playsmf - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "playsmf___Win32_Debug" -# PROP BASE Intermediate_Dir "playsmf___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_DS__" /D "__WINDOWS_MM__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "playsmf - Win32 Release" -# Name "playsmf - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\MidiFileIn.cpp -# End Source File -# Begin Source File - -SOURCE=.\playsmf.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtMidi.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\MidiFileIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtMidi.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/playsmf.vcxproj b/projects/examples/playsmf.vcxproj new file mode 100644 index 0000000..3e157b7 --- /dev/null +++ b/projects/examples/playsmf.vcxproj @@ -0,0 +1,141 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {D672D100-ABE2-42D0-9F3C-F3908C966F76} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_DS__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\playsmf.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\playsmf.bsc + + + true + true + Console + .\playsmf.exe + odbc32.lib;odbccp32.lib;winmm.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_DS__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\playsmf.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\playsmf.bsc + + + true + Console + .\playsmf.exe + odbc32.lib;odbccp32.lib;winmm.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/playsmf.vcxproj.filters b/projects/examples/playsmf.vcxproj.filters new file mode 100644 index 0000000..49640b2 --- /dev/null +++ b/projects/examples/playsmf.vcxproj.filters @@ -0,0 +1,42 @@ + + + + + {d1c32884-d0a0-4b8c-a9e4-4e74fd0a8316} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {ac7e3e33-d36b-48d2-96ce-6b4f65be53f8} + h;hpp;hxx;hm;inl + + + {45ff8f9a-0fed-4938-9a49-9780565d77a6} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/record.dsp b/projects/examples/record.dsp deleted file mode 100755 index ebca7eb..0000000 --- a/projects/examples/record.dsp +++ /dev/null @@ -1,152 +0,0 @@ -# Microsoft Developer Studio Project File - Name="record" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=record - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "record.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "record.mak" CFG="record - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "record - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "record - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "record - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "record - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "record___Win32_Debug" -# PROP BASE Intermediate_Dir "record___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "record - Win32 Release" -# Name "record - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FileWrite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=.\record.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtWvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/record.vcxproj b/projects/examples/record.vcxproj new file mode 100644 index 0000000..e6f3472 --- /dev/null +++ b/projects/examples/record.vcxproj @@ -0,0 +1,147 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {A16966B3-2E87-4502-8BE9-9CD2429734FB} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\record.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\record.bsc + + + true + Console + .\record.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\record.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\record.bsc + + + true + true + Console + .\record.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/record.vcxproj.filters b/projects/examples/record.vcxproj.filters new file mode 100644 index 0000000..74d4afa --- /dev/null +++ b/projects/examples/record.vcxproj.filters @@ -0,0 +1,60 @@ + + + + + {fb77f10b-cbdc-4b47-8466-071e755321ea} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {75ae5adb-f45a-4648-83e8-25dea3afddfe} + h;hpp;hxx;hm;inl + + + {1c217fa4-540d-4af9-a894-30bfaceaa844} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/rtsine.dsp b/projects/examples/rtsine.dsp deleted file mode 100755 index 50f0c0f..0000000 --- a/projects/examples/rtsine.dsp +++ /dev/null @@ -1,142 +0,0 @@ -# Microsoft Developer Studio Project File - Name="rtsine" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=rtsine - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "rtsine.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "rtsine.mak" CFG="rtsine - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "rtsine - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "rtsine - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "rtsine - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "rtsine___Win32_Release" -# PROP BASE Intermediate_Dir "rtsine___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "rtsine - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "rtsine___Win32_Debug" -# PROP BASE Intermediate_Dir "rtsine___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "rtsine - Win32 Release" -# Name "rtsine - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=.\rtsine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SineWave.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtWvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Mutex.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/rtsine.vcxproj b/projects/examples/rtsine.vcxproj new file mode 100644 index 0000000..46ac6ae --- /dev/null +++ b/projects/examples/rtsine.vcxproj @@ -0,0 +1,145 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {4F6BC2B9-B03C-4268-B35E-3AA1D7C72BC7} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\rtsine.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\rtsine.bsc + + + true + true + Console + .\rtsine.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\rtsine.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\rtsine.bsc + + + true + Console + .\rtsine.exe + odbc32.lib;odbccp32.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/rtsine.vcxproj.filters b/projects/examples/rtsine.vcxproj.filters new file mode 100644 index 0000000..99ec764 --- /dev/null +++ b/projects/examples/rtsine.vcxproj.filters @@ -0,0 +1,54 @@ + + + + + {87559e16-c65d-4b0d-91cd-29436ae42e30} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {a99a0677-8a7f-47f7-b87e-d62f42dee98d} + h;hpp;hxx;hm;inl + + + {581f8bb4-6550-447c-b753-7d81c4273e09} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/sine.dsp b/projects/examples/sine.dsp deleted file mode 100755 index 397ad98..0000000 --- a/projects/examples/sine.dsp +++ /dev/null @@ -1,134 +0,0 @@ -# Microsoft Developer Studio Project File - Name="sine" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=sine - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "sine.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "sine.mak" CFG="sine - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "sine - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "sine - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "sine - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /D "__WINDOWS_DS__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "sine - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "sine___Win32_Debug" -# PROP BASE Intermediate_Dir "sine___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /D "__WINDOWS_DS__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "sine - Win32 Release" -# Name "sine - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FileWrite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=.\sine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SineWave.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWrite.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/sine.vcxproj b/projects/examples/sine.vcxproj new file mode 100644 index 0000000..c6d9082 --- /dev/null +++ b/projects/examples/sine.vcxproj @@ -0,0 +1,143 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {1BF0909B-5188-4845-8996-9B16DA390460} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\sine.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\sine.bsc + + + true + true + Console + .\sine.exe + odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\sine.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\sine.bsc + + + true + Console + .\sine.exe + odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/sine.vcxproj.filters b/projects/examples/sine.vcxproj.filters new file mode 100644 index 0000000..ff28a54 --- /dev/null +++ b/projects/examples/sine.vcxproj.filters @@ -0,0 +1,48 @@ + + + + + {e502f99d-93ff-4f35-bafe-7e3f1cb66760} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {04e044e0-da39-4b71-bddd-a7a5df53ee0c} + h;hpp;hxx;hm;inl + + + {ad6ba706-7eb3-411a-aa61-692cb0ac7f1b} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/sineosc.dsp b/projects/examples/sineosc.dsp deleted file mode 100755 index 5c10abc..0000000 --- a/projects/examples/sineosc.dsp +++ /dev/null @@ -1,157 +0,0 @@ -# Microsoft Developer Studio Project File - Name="sineosc" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=sineosc - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "sineosc.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "sineosc.mak" CFG="sineosc - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "sineosc - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "sineosc - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "sineosc - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /D "__WINDOWS_DS__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "sineosc - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "sineosc___Win32_Debug" -# PROP BASE Intermediate_Dir "sineosc___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 2 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "_AFXDLL" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /D "__WINDOWS_DS__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" /d "_AFXDLL" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "sineosc - Win32 Release" -# Name "sineosc - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWrite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=.\sineosc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileLoop.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\Generator.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileRead.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWrite.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileLoop.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/sineosc.vcxproj b/projects/examples/sineosc.vcxproj new file mode 100644 index 0000000..82cd5d4 --- /dev/null +++ b/projects/examples/sineosc.vcxproj @@ -0,0 +1,149 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + MFCProj + {39A7BB67-CF82-47BA-A5D2-DABB850752ED} + 10.0.17134.0 + + + + Application + v141 + Dynamic + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\sineosc.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\sineosc.bsc + + + true + Console + .\sineosc.exe + odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebugDLL + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;__WINDOWS_DS__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\sineosc.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\sineosc.bsc + + + true + true + Console + .\sineosc.exe + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/sineosc.vcxproj.filters b/projects/examples/sineosc.vcxproj.filters new file mode 100644 index 0000000..ed06755 --- /dev/null +++ b/projects/examples/sineosc.vcxproj.filters @@ -0,0 +1,66 @@ + + + + + {cfabd856-3ca1-416a-8e0b-a675b9de76dc} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {7d3955e2-3a55-4720-92b9-2e922f17832a} + h;hpp;hxx;hm;inl + + + {409a9a48-5d03-47a1-9d59-d5bfae6f8fa4} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/examples/threebees.dsp b/projects/examples/threebees.dsp deleted file mode 100755 index 54e98f2..0000000 --- a/projects/examples/threebees.dsp +++ /dev/null @@ -1,258 +0,0 @@ -# Microsoft Developer Studio Project File - Name="threebees" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=threebees - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "threebees.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "threebees.mak" CFG="threebees - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "threebees - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "threebees - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "threebees - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "threebees___Win32_Release" -# PROP BASE Intermediate_Dir "threebees___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /I "../../src/include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Wsock32.lib winmm.lib dsound.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "threebees - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "threebees___Win32_Debug" -# PROP BASE Intermediate_Dir "threebees___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /I "../../src/include" /D "_DEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Wsock32.lib winmm.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "threebees - Win32 Release" -# Name "threebees - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\ADSR.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\BeeThree.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Envelope.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FM.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Messager.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtMidi.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtWvOut.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SineWave.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\SKINI.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Socket.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\TcpServer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Thread.cpp -# End Source File -# Begin Source File - -SOURCE=.\threebees.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\TwoZero.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\Voicer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileLoop.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\ADSR.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\BeeThree.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Envelope.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Filter.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FM.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Instrmnt.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Messager.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtMidi.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtWvOut.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\SKINI.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Socket.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Thread.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\TwoZero.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Voicer.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileLoop.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/projects/examples/threebees.vcxproj b/projects/examples/threebees.vcxproj new file mode 100644 index 0000000..dbc374c --- /dev/null +++ b/projects/examples/threebees.vcxproj @@ -0,0 +1,174 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + + {18A8A20F-E561-4081-9F96-6AB3D5DC8AC5} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\$(ProjectName)\ + true + + + .\ + .\Release\$(ProjectName)\ + false + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ../../include;../../src/include;%(AdditionalIncludeDirectories) + NDEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + .\Release\$(ProjectName)\ + .\Release\$(ProjectName) + 4996 + + + .\threebees.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\threebees.bsc + + + true + Console + .\threebees.exe + odbc32.lib;odbccp32.lib;Wsock32.lib;winmm.lib;dsound.lib;%(AdditionalDependencies) + + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ../../include;../../src/include;%(AdditionalIncludeDirectories) + _DEBUG;__WINDOWS_DS__;WIN32;_CONSOLE;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + .\Debug\$(ProjectName)\ + .\Debug\$(ProjectName) + EnableFastChecks + 4996 + + + .\threebees.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\threebees.bsc + + + true + true + Console + .\threebees.exe + odbc32.lib;odbccp32.lib;Wsock32.lib;winmm.lib;dsound.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/examples/threebees.vcxproj.filters b/projects/examples/threebees.vcxproj.filters new file mode 100644 index 0000000..2951630 --- /dev/null +++ b/projects/examples/threebees.vcxproj.filters @@ -0,0 +1,141 @@ + + + + + {a98e3d77-7a15-4129-a8e8-e4209900c0e1} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {8b81a7a7-cd9e-4e31-8df3-69519a84c1d1} + h;hpp;hxx;hm;inl + + + {0efb492c-acbe-4771-901b-7ec5a7431e18} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/projects/ragamatic/ragamat.dsp b/projects/ragamatic/ragamat.dsp deleted file mode 100644 index f0a7506..0000000 --- a/projects/ragamatic/ragamat.dsp +++ /dev/null @@ -1,314 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ragamatic" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=ragamatic - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ragamat.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ragamat.mak" CFG="ragamatic - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ragamatic - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "ragamatic - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "ragamatic - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "" -# PROP Intermediate_Dir "release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Wsock32.lib dsound.lib winmm.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "ragamatic - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "" -# PROP Intermediate_Dir "debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_DS__" /D "__LITTLE_ENDIAN__" /D "__WINDOWS_MM__" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Wsock32.lib dsound.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "ragamatic - Win32 Release" -# Name "ragamatic - Win32 Debug" -# Begin Source File - -SOURCE=..\..\src\ADSR.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\ADSR.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Delay.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Delay.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\DelayA.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\DelayA.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\DelayL.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\DelayL.h -# End Source File -# Begin Source File - -SOURCE=.\Drone.cpp -# End Source File -# Begin Source File - -SOURCE=.\Drone.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Effect.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Envelope.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Envelope.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileRead.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileRead.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileWvIn.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileWvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Filter.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Generator.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\Instrmnt.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\JCRev.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\JCRev.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Messager.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Messager.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Mutex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Mutex.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Noise.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Noise.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\OnePole.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\OnePole.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\OneZero.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\OneZero.h -# End Source File -# Begin Source File - -SOURCE=.\ragamat.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtAudio.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtAudio.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\RtMidi.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\RtMidi.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Sitar.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Sitar.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\SKINI.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\SKINI.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Socket.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Socket.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Stk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Stk.h -# End Source File -# Begin Source File - -SOURCE=.\Tabla.cpp -# End Source File -# Begin Source File - -SOURCE=.\Tabla.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\TcpServer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\TcpServer.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\Thread.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\Thread.h -# End Source File -# Begin Source File - -SOURCE=.\VoicDrum.cpp -# End Source File -# Begin Source File - -SOURCE=.\VoicDrum.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\FileLoop.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\include\FileLoop.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvIn.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\WvOut.h -# End Source File -# End Target -# End Project diff --git a/projects/ragamatic/ragamat.vcxproj b/projects/ragamatic/ragamat.vcxproj new file mode 100644 index 0000000..6efa013 --- /dev/null +++ b/projects/ragamatic/ragamat.vcxproj @@ -0,0 +1,191 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + ragamat + + + {9ECEAC07-E32F-4ABB-945E-0334377C1828} + 10.0.17134.0 + + + + Application + v141 + false + MultiByte + + + Application + v141 + false + MultiByte + + + + + + + + + + + + + + + .\ + .\Debug\ + true + + + .\ + .\Release\ + false + + + + MultiThreadedDebug + Default + false + Disabled + true + Level3 + true + ProgramDatabase + ..\..\include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Debug\ + .\Debug\ragamat.pch + .\Debug\ + .\Debug\ + 4996 + + + .\ragamat.tlb + + + 0x0409 + _DEBUG;%(PreprocessorDefinitions) + + + true + .\ragamat.bsc + + + true + true + Console + .\ragamat.exe + odbc32.lib;odbccp32.lib;Wsock32.lib;dsound.lib;winmm.lib;%(AdditionalDependencies) + + + + + MultiThreaded + Default + true + true + MaxSpeed + true + Level3 + ..\..\include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_CONSOLE;__WINDOWS_DS__;__LITTLE_ENDIAN__;__WINDOWS_MM__;%(PreprocessorDefinitions) + .\Release\ + .\Release\ragamat.pch + .\Release\ + .\Release\ + 4996 + + + .\ragamat.tlb + + + 0x0409 + NDEBUG;%(PreprocessorDefinitions) + + + true + .\ragamat.bsc + + + true + Console + .\ragamat.exe + odbc32.lib;odbccp32.lib;Wsock32.lib;dsound.lib;winmm.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/ragamatic/ragamatic.dsw b/projects/ragamatic/ragamatic.dsw deleted file mode 100644 index 9708f17..0000000 --- a/projects/ragamatic/ragamatic.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "ragamatic"=.\ragamat.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/projects/ragamatic/ragamatic.sln b/projects/ragamatic/ragamatic.sln new file mode 100644 index 0000000..a20e839 --- /dev/null +++ b/projects/ragamatic/ragamatic.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2046 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ragamatic", "ragamat.vcxproj", "{9ECEAC07-E32F-4ABB-945E-0334377C1828}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9ECEAC07-E32F-4ABB-945E-0334377C1828}.Debug|x86.ActiveCfg = Debug|Win32 + {9ECEAC07-E32F-4ABB-945E-0334377C1828}.Debug|x86.Build.0 = Debug|Win32 + {9ECEAC07-E32F-4ABB-945E-0334377C1828}.Release|x86.ActiveCfg = Release|Win32 + {9ECEAC07-E32F-4ABB-945E-0334377C1828}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CC90B55D-4CB0-4EC2-A443-E298E8F25DB6} + EndGlobalSection +EndGlobal