mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Rest of the MSVC++2010 patches
This commit is contained in:
parent
25f1a3ce5a
commit
aa931a99ff
@ -9,6 +9,7 @@
|
||||
#include <QDebug>
|
||||
#include <SleepLib/profiles.h>
|
||||
#include "gLineChart.h"
|
||||
#include "glcommon.h"
|
||||
|
||||
#define EXTRA_ASSERTS 1
|
||||
gLineChart::gLineChart(ChannelID code,QColor col,bool square_plot, bool disable_accel)
|
||||
|
@ -5,8 +5,12 @@
|
||||
*/
|
||||
|
||||
#include <cmath>
|
||||
|
||||
#include "calcs.h"
|
||||
#include "profiles.h"
|
||||
|
||||
extern double round(double number);
|
||||
|
||||
bool SearchApnea(Session *session, qint64 time, qint64 dist=15000)
|
||||
{
|
||||
if (session->SearchEvent(CPAP_Obstructive,time,dist)) return true;
|
||||
|
@ -1470,9 +1470,9 @@ bool PRS1Loader::OpenWaveforms(SessionID sid, QString filename)
|
||||
lasttimestamp=start;
|
||||
duration=0;
|
||||
int corrupt=0;
|
||||
char waveform[num_signals][500000];
|
||||
int wlength[num_signals];
|
||||
qint64 wdur[num_signals];
|
||||
char waveform[2][500000];
|
||||
int wlength[2];
|
||||
qint64 wdur[2];
|
||||
//EventList *evl[num_signals];
|
||||
for (int i=0;i<num_signals;i++) {
|
||||
wlength[i]=0;
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <QString>
|
||||
#include <QObject>
|
||||
//#include <tr1/random>
|
||||
//#include <sys/time.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "machine.h"
|
||||
#include "profiles.h"
|
||||
|
@ -96,12 +96,12 @@ win32 {
|
||||
DEFINES += WINVER=0x0501 # needed for mingw to pull in appropriate dbt business...probably a better way to do this
|
||||
LIBS += -lsetupapi
|
||||
|
||||
if (win32-msvc2008|win32-msvc2010):equals(TEMPLATE_PREFIX, "vc") {
|
||||
LIBS += -ladvapi32
|
||||
DEFINES += BUILD_WITH_MSVC
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
if (win32-msvc2008|win32-msvc2010):!equals(TEMPLATE_PREFIX, "vc") {
|
||||
LIBS += -ladvapi32
|
||||
DEFINES += BUILD_WITH_MSVC=1
|
||||
}
|
||||
HEADERS += \
|
||||
SleepLib/machine.h \
|
||||
SleepLib/machine_loader.h \
|
||||
|
Loading…
Reference in New Issue
Block a user