25 lines
293 B
Mathematica
25 lines
293 B
Mathematica
|
// 26 june 2015
|
||
|
#import "uipriv_darwin.h"
|
||
|
|
||
|
char *uiOpenFile(void)
|
||
|
{
|
||
|
// TODO
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
char *uiSaveFile(void)
|
||
|
{
|
||
|
// TODO
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
void uiMsgBox(const char *title, const char *description)
|
||
|
{
|
||
|
// TODO
|
||
|
}
|
||
|
|
||
|
void uiMsgBoxError(const char *title, const char *description)
|
||
|
{
|
||
|
// TODO
|
||
|
}
|