Hook to WM6 sound - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:17:51Z http://stackoverflow.com/feeds/question/322988 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/322988/hook-to-wm6-sound 0 Hook to WM6 sound Dacto 2008-11-27T05:21:10Z 2009-11-27T16:00:03Z <p>How can i hook to the window mobile sound (driver?) and read the data while it is passing it to the speaker.</p> http://stackoverflow.com/questions/322988/hook-to-wm6-sound/366101#366101 0 Answer by ctacke for Hook to WM6 sound ctacke 2008-12-14T02:46:54Z 2008-12-14T02:46:54Z <p>While creating a new wavedev audio driver might do what you want (it's not 100% clear how you want to acheive your goal) what you're probably after is the <a href="http://msdn.microsoft.com/en-us/library/ms705739.aspx" rel="nofollow">Mixer API</a>. You might take a look at <a href="http://blogs.msdn.com/medmedia/archive/2007/01/12/what-do-you-mean-by-mixer.aspx" rel="nofollow">Andy Raffman's blog on audio mixer terminology</a> to see where your needs lie.</p> <p>DirectSound used to be an option (4.2 and earlier) but was <a href="http://msdn.microsoft.com/en-us/library/aa446919.aspx" rel="nofollow">removed in 5.0</a>.</p>