mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			227 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			227 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "AudioDevice.hpp"
 | 
						|
 | 
						|
bool AudioDevice::initialize (OpenMode mode, Channel channel)
 | 
						|
{
 | 
						|
  m_channel = channel;
 | 
						|
 | 
						|
  // open and ensure we are unbuffered if possible
 | 
						|
  return QIODevice::open (mode | QIODevice::Unbuffered);
 | 
						|
}
 | 
						|
 |