~ubuntu-branches/ubuntu/karmic/vmware-view-open-client/karmic

« back to all changes in this revision

Viewing changes to lib/bora/unicode/ustr_cnv.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-04-17 20:43:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090417204300-kfj5m144zva0gbgc
Tags: 3.1.0-160969+dfsg-1
* Merging upstream version 3.1.0-160969+dfsg.
* Upgrading package to standards 3.8.1.
* Adding build-depends to intltool.
* Adding build-depends to libicu.
* Rediffing doc-pdf.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*********************************************************
2
 
 * Copyright (C) 2008 VMware, Inc. All rights reserved.
3
 
 *
4
 
 * This file is part of VMware View Open Client.
5
 
 *********************************************************/
6
 
/*  
7
 
**********************************************************************
8
 
*   Copyright (C) 1999-2004, International Business Machines
9
 
*   Corporation and others.  All Rights Reserved.
10
 
**********************************************************************
11
 
*   file name:  ustr_cnv.h
12
 
*   encoding:   US-ASCII
13
 
*   tab size:   8 (not used)
14
 
*   indentation:4
15
 
*
16
 
*   created on: 2004Aug27
17
 
*   created by: George Rhoten
18
 
*/
19
 
 
20
 
#ifndef USTR_CNV_IMP_H
21
 
#define USTR_CNV_IMP_H
22
 
 
23
 
#include "unicode/utypes.h"
24
 
#include "unicode/ucnv.h"
25
 
 
26
 
#if !UCONFIG_NO_CONVERSION
27
 
 
28
 
/**
29
 
 * Get the default converter. This is a commonly used converter
30
 
 * that is used for the ustring and UnicodeString API.
31
 
 * Remember to use the u_releaseDefaultConverter when you are done.
32
 
 * @internal
33
 
 */
34
 
U_CAPI UConverter* U_EXPORT2
35
 
u_getDefaultConverter(UErrorCode *status);
36
 
 
37
 
 
38
 
/**
39
 
 * Release the default converter to the converter cache.
40
 
 * @internal
41
 
 */
42
 
U_CAPI void U_EXPORT2
43
 
u_releaseDefaultConverter(UConverter *converter);
44
 
 
45
 
#endif
46
 
 
47
 
#endif