diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2006-07-25 12:37:43 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2006-07-25 12:37:43 +0000 |
commit | 10c60368cd42904bd991453f02b684ebe02ef915 (patch) | |
tree | c6fb06ccf22a81c80af08f79df1b436120703de4 /Build/source/libs/icu-xetex/samples/layout/GDIGUISupport.cpp | |
parent | 4d8b2aac6036acbb6878236c27e2fb110dad8643 (diff) |
adding ICU library sources used by xetex
git-svn-id: svn://tug.org/texlive/trunk@1915 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu-xetex/samples/layout/GDIGUISupport.cpp')
-rw-r--r-- | Build/source/libs/icu-xetex/samples/layout/GDIGUISupport.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Build/source/libs/icu-xetex/samples/layout/GDIGUISupport.cpp b/Build/source/libs/icu-xetex/samples/layout/GDIGUISupport.cpp new file mode 100644 index 00000000000..9f55ffed61e --- /dev/null +++ b/Build/source/libs/icu-xetex/samples/layout/GDIGUISupport.cpp @@ -0,0 +1,22 @@ +/* + ******************************************************************************* + * + * Copyright (C) 1999-2001, International Business Machines + * Corporation and others. All Rights Reserved. + * + ******************************************************************************* + * file name: GDIGUISupport.h + * + * created on: 11/06/2001 + * created by: Eric R. Mader + */ + +#include <windows.h> + +#include "GDIGUISupport.h" + +void GDIGUISupport::postErrorMessage(const char *message, const char *title) +{ + MessageBoxA(NULL, message, title, MB_ICONERROR); +} + |