26 lines
651 B
C
26 lines
651 B
C
/**
|
|
* This file is part of the common libary
|
|
* @file confirm.h
|
|
* @see common.h
|
|
*/
|
|
|
|
|
|
#ifndef __INCLUDE__CONFIRM_H__
|
|
#define __INCLUDE__CONFIRM_H__ 1
|
|
|
|
|
|
void DisplayError( wxWindow* parent, const wxString& msg,
|
|
int displaytime = 0 );
|
|
void DisplayInfoMessage( wxWindow* parent, const wxString& msg,
|
|
int displaytime = 0 );
|
|
|
|
bool IsOK( wxWindow* parent, const wxString& msg );
|
|
|
|
int Get_Message( const wxString& title,
|
|
const wxString& frame_caption,
|
|
wxString& buffer,
|
|
wxWindow* frame );
|
|
|
|
|
|
#endif /* __INCLUDE__CONFIRM_H__ */
|