]> git.saurik.com Git - apple/icu.git/blame - icuSources/extra/uconv/unicode/uwmsg.h
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / extra / uconv / unicode / uwmsg.h
CommitLineData
b75a7d8f
A
1/*
2**********************************************************************
3* Copyright (C) 2000, International Business Machines Corporation
4* and others. All Rights Reserved.
5**********************************************************************
6
7Get a message out of the default resource bundle, messageformat it,
8and print it to stderr
9*/
10
11#ifndef _UWMSG
12#define _UWMSG
13
14#include <stdio.h>
15
16#include "unicode/ures.h"
17
18/* Set the path to wmsg's bundle.
19 Caller owns storage.
20*/
21U_CAPI UResourceBundle *u_wmsg_setPath(const char *path, UErrorCode *err);
22
23/* Format a message and print it's output to a given file stream */
24U_CAPI int u_wmsg(FILE *fp, const char *tag, ... );
25
26/* format an error message */
27U_CAPI const UChar* u_wmsg_errorName(UErrorCode err);
28
29#endif