21 lines
256 B
C
21 lines
256 B
C
|
// 26 june 2015
|
||
|
#include "uipriv_unix.h"
|
||
|
|
||
|
char *uiOpenFile(void)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
char *uiSaveFile(void)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
void uiMsgBox(const char *title, const char *description)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void uiMsgBoxError(const char *title, const char *description)
|
||
|
{
|
||
|
}
|