You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
474 B
19 lines
474 B
/**
|
|
* 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 );
|
|
|
|
#endif /* __INCLUDE__CONFIRM_H__ */
|