~ubuntu-branches/ubuntu/gutsy/icu/gutsy

« back to all changes in this revision

Viewing changes to source/extra/uconv/unicode/uwmsg.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2005-05-21 22:44:31 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: package-import@ubuntu.com-20050521224431-r7rktfhnu1n4tf1g
Tags: 2.1-2.1
Rename icu-doc to icu21-doc. icu-doc is built by the icu28 package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
#ifndef _UWMSG
12
12
#define _UWMSG
 
13
 
 
14
#include <stdio.h>
 
15
 
13
16
#include "unicode/ures.h"
14
17
 
15
18
/* Set the path to wmsg's bundle.
17
20
*/
18
21
U_CAPI UResourceBundle *u_wmsg_setPath(const char *path, UErrorCode *err);
19
22
 
20
 
/* Format a message and print it's output to stderr */
21
 
U_CAPI void u_wmsg(const char *tag, ... );
 
23
/* Format a message and print it's output to a given file stream */
 
24
U_CAPI int u_wmsg(FILE *fp, const char *tag, ... );
22
25
 
23
26
/* format an error message */
24
27
U_CAPI const UChar* u_wmsg_errorName(UErrorCode err);