i1 = inputLinux->init();
if (!i1) { delete inputLinux; inputLinux = NULL; }
- // FIXME enable modules by new config system
+ // FIXME enable modules by new config system NCONFIG
// inputCEC = new InputCEC();
// i2 = inputCEC->init();
initted = 1;
logLevel = startLogLevel;
enabled = tenabled;
- logfile = fopen(fileName, "a");
+
+ // FIXME fix this with NCONFIG
+// logfile = fopen(fileName, "a");
// logfile = fopen(stdout, "a");
- //logfile = stdout;
+ logfile = stdout;
// logfile = fopen("/log", "a");
if (logfile) return 1;
along with VOMP. If not, see <https://www.gnu.org/licenses/>.
*/
-#ifndef DSOCK_H
-#define DSOCK_H
+#ifndef UDP4_H
+#define UDP4_H
#ifdef WIN32
#include <winsock2.h>
VRecordingList();
virtual ~VRecordingList();
-/*
-#ifndef WIN32
- using TBBoxx::draw; // Signal the compiler we are intentionally overriding the draw() virtual with different args
-#endif
-*/
-
- virtual void draw(bool doIndexPop = false)=0;
+ virtual void draw() { draw(false); }
+ virtual void draw(bool doIndexPop)=0;
int handleCommand(int command);
void processMessage(Message* m);
VRecordingListAdvanced();
virtual ~VRecordingListAdvanced();
-/*
-#ifndef WIN32
- using TBBoxx::draw; // Signal the compiler we are intentionally overriding the draw() virtual with different args
-#endif
-*/
-
- void draw(bool doIndexPop = false);
+ void draw() { draw(false); }
+ void draw(bool doIndexPop);
bool load();
void drawData(bool doIndexPop = false);
VRecordingListClassic();
virtual ~VRecordingListClassic();
-/*
-#ifndef WIN32
- using TBBoxx::draw; // Signal the compiler we are intentionally overriding the draw() virtual with different args
-#endif
-*/
-
- void draw(bool doIndexPop = false);
+ void draw() { draw(false); }
+ void draw(bool doIndexPop);
bool load();
void drawData(bool doIndexPop = false);