1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-04 06:54:39 -04:00

fix windows code to build with MSVC

- remove __attribute__((unused)) not supported on MSVC
- remove  __attribute((unused)) not supported on MSVC
- add symbol exports to RemoteDataReadQueue and RemoteDataQueue
- add export symbols to sdrsrv
This commit is contained in:
Davide Gerhard
2019-05-24 09:37:13 +02:00
parent 6e80780d17
commit 2e04d2fe9d
59 changed files with 174 additions and 153 deletions
@@ -56,8 +56,8 @@ void UDPSourcePlugin::initPlugin(PluginAPI* pluginAPI)
#ifdef SERVER_MODE
PluginInstanceGUI* UDPSourcePlugin::createTxChannelGUI(
DeviceUISet *deviceUISet __attribute__((unused)),
BasebandSampleSource *txChannel __attribute__((unused)))
DeviceUISet *deviceUISet,
BasebandSampleSource *txChannel)
{
return 0;
}