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

  1. /**
  2. * This file is part of the common libary
  3. * @file confirm.h
  4. * @see common.h
  5. */
  6. #ifndef __INCLUDE__CONFIRM_H__
  7. #define __INCLUDE__CONFIRM_H__ 1
  8. void DisplayError( wxWindow* parent, const wxString& msg,
  9. int displaytime = 0 );
  10. void DisplayInfoMessage( wxWindow* parent, const wxString& msg,
  11. int displaytime = 0 );
  12. bool IsOK( wxWindow* parent, const wxString& msg );
  13. #endif /* __INCLUDE__CONFIRM_H__ */