Funktionieren die Audio Mixer Functions auch bei Vista`?
-
Diese hier:
http://www.codeproject.com/KB/audio-video/admixer.aspx
MfG
-
HRESULT hResult = DownloadFile("Audio Mixer Function Demo"); if (SUCCEEDED(hResult)) { hResult = RunAndTestOnVista("Audio Mixer Function Demo"); if (SUCCEEDED(hResult)) { MessageBox(HWND_DESKTOP, NULL, "Ja!", MB_ICONINFORMATION); } else { MessageBox(HWND_DESKTOP, NULL, "Leider nein.", MB_ICONEXCLAMATION); } } else { MessageBox(HWND_DESKTOP, NULL, "Fehler beim Download.", MB_ICONEXCLAMATION); }
-
bool bResult = DownloadFile("Audio Mixer Function Demo"); if ( bResult == true ) puts ( "Download ok." ); else puts ( "Download failed." ); bResult = CompileAndTestFunctionDemosOnTargetPlatform(); if ( bResult == true ) puts ( "Tests ok." ); else puts ( "Tests failed." ); bResult = CompileAndTestFunctionDemosOnOtherPlatform("VISTA"); if ( bResult == true ) puts ( "Tests ok." ); else puts ( "Vista not found." );Download ok.
Tests ok.
Vista not found.
-