libui/haiku/stddialogs.cpp

25 lines
355 B
C++
Raw Normal View History

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