~ubuntu-branches/ubuntu/quantal/icu/quantal

« back to all changes in this revision

Viewing changes to source/samples/layout/GDIGUISupport.cpp

  • Committer: Package Import Robot
  • Author(s): Yves Arrouye
  • Date: 2002-03-03 15:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20020303153113-3ssceqlq45xbmbnc
Tags: upstream-2.0-2.1pre20020303
ImportĀ upstreamĀ versionĀ 2.0-2.1pre20020303

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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