2015-11-19 08:01:05 -06:00
|
|
|
// 26 june 2015
|
|
|
|
#include "uipriv_haiku.hpp"
|
|
|
|
|
2015-11-28 09:55:24 -06:00
|
|
|
char *uiOpenFile(uiWindow *parent)
|
2015-11-19 08:01:05 -06:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-28 09:55:24 -06:00
|
|
|
char *uiSaveFile(uiWindow *parent)
|
2015-11-19 08:01:05 -06:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-28 09:55:24 -06:00
|
|
|
void uiMsgBox(uiWindow *parent, const char *title, const char *description)
|
2015-11-19 08:01:05 -06:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2015-11-28 09:55:24 -06:00
|
|
|
void uiMsgBoxError(uiWindow *parent, const char *title, const char *description)
|
2015-11-19 08:01:05 -06:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|