dxx-rebirth/common/include/messagebox.h

19 lines
337 B
C
Raw Normal View History

/*
* messagebox.h
* d1x-rebirth
*
* Display an error or warning messagebox using the OS's window server.
*
*/
#ifndef _MESSAGEBOX_H
#define _MESSAGEBOX_H
// Display a warning in a messagebox
extern void msgbox_warning(char *message);
// Display an error in a messagebox
2013-06-23 21:18:48 +00:00
extern void msgbox_error(const char *message);
#endif