1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 00:14:49 -04:00

Windows: MSVC2017: changes in qrtplib

This commit is contained in:
f4exb
2018-11-12 16:05:18 +01:00
parent cdacf51bfb
commit f97728c4e9
5 changed files with 20 additions and 4 deletions
+4 -2
View File
@@ -67,13 +67,15 @@ RTPSessionParams::RTPSessionParams() :
predefinedssrc = 0;
}
int RTPSessionParams::SetUsePollThread(bool usethread __attribute__((unused)))
int RTPSessionParams::SetUsePollThread(bool usethread)
{
(void) usethread;
return ERR_RTP_NOTHREADSUPPORT;
}
int RTPSessionParams::SetNeedThreadSafety(bool __attribute__((unused)))
int RTPSessionParams::SetNeedThreadSafety(bool x)
{
(void) x;
return ERR_RTP_NOTHREADSUPPORT;
}