]> git.saurik.com Git - apple/icu.git/blob - icuSources/samples/layout/GDIGUISupport.cpp
ICU-461.12.tar.gz
[apple/icu.git] / icuSources / samples / layout / GDIGUISupport.cpp
1 /*
2 *******************************************************************************
3 *
4 * Copyright (C) 1999-2001, International Business Machines
5 * Corporation and others. All Rights Reserved.
6 *
7 *******************************************************************************
8 * file name: GDIGUISupport.h
9 *
10 * created on: 11/06/2001
11 * created by: Eric R. Mader
12 */
13
14 #include <windows.h>
15
16 #include "GDIGUISupport.h"
17
18 void GDIGUISupport::postErrorMessage(const char *message, const char *title)
19 {
20 MessageBoxA(NULL, message, title, MB_ICONERROR);
21 }
22