1 /*
2  *******************************************************************************
3  *
4  *   © 2016 and later: Unicode, Inc. and others.
5  *   License & terms of use: http://www.unicode.org/copyright.html
6  *
7  *******************************************************************************
8  *******************************************************************************
9  *
10  *   Copyright (C) 1999-2001, International Business Machines
11  *   Corporation and others.  All Rights Reserved.
12  *
13  *******************************************************************************
14  *   file name:  GDIGUISupport.h
15  *
16  *   created on: 11/06/2001
17  *   created by: Eric R. Mader
18  */
19 
20 #include <windows.h>
21 
22 #include "GDIGUISupport.h"
23 
postErrorMessage(const char * message,const char * title)24 void GDIGUISupport::postErrorMessage(const char *message, const char *title)
25 {
26     MessageBoxA(NULL, message, title, MB_ICONERROR);
27 }
28 
29