Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /*
2 **********************************************************************
3 * Copyright (C) 2000-2004, International Business Machines Corporation
4 * and others. All Rights Reserved.
5 **********************************************************************
7 Get a message out of the default resource bundle, messageformat it,
8 and print it to stderr
9 */
11 #ifndef _UWMSG
12 #define _UWMSG
14 #include <stdio.h>
16 #include "unicode/ures.h"
18 /* Set the path to wmsg's bundle.
19 Caller owns storage.
20 */
21 U_CFUNC UResourceBundle *u_wmsg_setPath(const char *path, UErrorCode *err);
23 /* Format a message and print it's output to a given file stream */
24 U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... );
26 /* format an error message */
27 U_CFUNC const UChar* u_wmsg_errorName(UErrorCode err);
29 #endif