1/*
2**********************************************************************
3* Copyright (C) 2000-2004, 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_CFUNC 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_CFUNC int u_wmsg(FILE *fp, const char *tag, ... );
25
26/* format an error message */
27U_CFUNC const UChar* u_wmsg_errorName(UErrorCode err);
28
29#endif
30