Stubbed out the OS-specific files on macOS so I can actually start writing the uiControl tests.

This commit is contained in:
Pietro Gagliardi 2019-06-08 19:45:09 -04:00
parent 379fc230e5
commit 822572d395
2 changed files with 15 additions and 0 deletions

14
darwin/control.m Normal file
View File

@ -0,0 +1,14 @@
// 8 june 2019
#import "uipriv_darwin.h"
bool uiprivOSVtableValid(uiControlOSVtable *osVtable, const char *func)
{
// TODO
return true;
}
uiControlOSVtable *uiprivCloneOSVtable(uiControlOSVtable *osVtable)
{
// TODO
return NULL;
}

View File

@ -1,6 +1,7 @@
# 23 march 2019
libui_sources += [
'darwin/control.m',
'darwin/main.m',
]