Click here to Skip to main content
15,885,137 members
Articles / Programming Languages / C++

Set Audio Endpoints System Wide in Vista/Windows 7

Rate me:
Please Sign up or sign in to vote.
4.43/5 (4 votes)
7 Jan 2011CPOL3 min read 80.9K   2.7K   10  
An article on how to set system wide audio endpoints programmatically.
#pragma once

namespace AudioConfigManager
{
public __gc class ErrorMessageBox : public System::Object
	{
	private: HWND	windowHandle;

	public: ErrorMessageBox(__int64 xwindowHandle);
	public: System::Void showMessage(char *message);
	public: __int64 getWindowHandle(void);
	};
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Retired
France France
Used to own a software development enterprise from the late 70's to the mid 90's, worked as systems analyst/programmer in that enterprise

Comments and Discussions