2001-09-19 23:43:16 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
|
|
|
* Copyright (C) 2000, International Business Machines Corporation
|
|
|
|
* and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
|
|
|
|
Get a message out of the default resource bundle, messageformat it,
|
|
|
|
and print it to stderr
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _UWMSG
|
|
|
|
#define _UWMSG
|
2002-03-19 17:14:10 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2001-09-21 00:30:25 +00:00
|
|
|
#include "unicode/ures.h"
|
2001-09-19 23:43:16 +00:00
|
|
|
|
|
|
|
/* Set the path to wmsg's bundle.
|
|
|
|
Caller owns storage.
|
|
|
|
*/
|
2001-09-21 00:30:25 +00:00
|
|
|
U_CAPI UResourceBundle *u_wmsg_setPath(const char *path, UErrorCode *err);
|
2001-09-19 23:43:16 +00:00
|
|
|
|
2002-03-19 17:14:10 +00:00
|
|
|
/* Format a message and print it's output to a given file stream */
|
|
|
|
U_CAPI int u_wmsg(FILE *fp, const char *tag, ... );
|
2001-09-19 23:43:16 +00:00
|
|
|
|
|
|
|
/* format an error message */
|
|
|
|
U_CAPI const UChar* u_wmsg_errorName(UErrorCode err);
|
|
|
|
|
|
|
|
#endif
|