mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-09 19:15:15 +00:00
3d26549032
This was SVN commit r3802.
19 lines
584 B
C
19 lines
584 B
C
#ifndef _UIGLOBALS_H
|
|
#define _UIGLOBALS_H
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// UIGlobals.h: miscellaneous functions for interface the editor to "UI"
|
|
// elements
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// GetVersionString: fill version string into given buffer
|
|
extern void GetVersionString(char* buf);
|
|
// ErrorBox: show an error message box with given string
|
|
extern void ErrorBox(const char* errstr);
|
|
|
|
|
|
#endif
|