First commit with most sources

This commit is contained in:
Godzil
2018-05-21 08:48:53 +01:00
parent 2be3c740c9
commit 61b60f3068
53 changed files with 11137 additions and 0 deletions

38
mmage/UNIXcompat.cpp Normal file
View File

@@ -0,0 +1,38 @@
#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif
#include "../wonx/UNIXTimerP.h"
#include "../wonx/UNIXTimer.h"
#ifdef __cplusplus
}
#endif
static _UNIXTimer ut;
UNIXTimer UNIXTimer_Create(int auto_preset, int interval, void *parameter, UNIXTimerCallBack callback) {
return &ut;
}
UNIXTimer UNIXTimer_Destroy(UNIXTimer unix_timer) {
return NULL;
}
int UNIXTimer_Pause(UNIXTimer unix_timer) {
return 0;
}
int UNIXTimer_Unpause(UNIXTimer unix_timer) {
return 0;
}
int UNIXTimer_ON(UNIXTimer unix_timer) {
return 0;
}
int UNIXTimer_OFF(UNIXTimer unix_timer) {
return 0;
}