25 lines
355 B
C++
25 lines
355 B
C++
// 26 june 2015
|
|
#include "uipriv_haiku.hpp"
|
|
|
|
char *uiOpenFile(uiWindow *parent)
|
|
{
|
|
// TODO
|
|
return NULL;
|
|
}
|
|
|
|
char *uiSaveFile(uiWindow *parent)
|
|
{
|
|
// TODO
|
|
return NULL;
|
|
}
|
|
|
|
void uiMsgBox(uiWindow *parent, const char *title, const char *description)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
void uiMsgBoxError(uiWindow *parent, const char *title, const char *description)
|
|
{
|
|
// TODO
|
|
}
|