Fixed and working with MSVC 32-bit

This commit is contained in:
Charles J. Cliffe
2015-10-10 01:13:48 -04:00
parent b8cb4f9c9f
commit 2b08c5d248
4 changed files with 11 additions and 3 deletions
+5 -1
View File
@@ -101,9 +101,9 @@ bool CubicSDR::OnInit() {
// t_SDR = new std::thread(&SDRThread::threadMain, sdrThread);
sdrEnum = new SDREnumerator();
t_SDREnum = new std::thread(&SDREnumerator::threadMain, sdrEnum);
appframe = new AppFrame();
t_SDREnum = new std::thread(&SDREnumerator::threadMain, sdrEnum);
//#ifdef __APPLE__
// int main_policy;
@@ -499,3 +499,7 @@ std::string CubicSDR::getNotification() {
void CubicSDR::setDeviceSelectorClosed() {
deviceSelectorOpen.store(false);
}
bool CubicSDR::isDeviceSelectorOpen() {
return deviceSelectorOpen.load();
}