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

« back to all changes in this revision

Viewing changes to source/i18n/unicode/utrans.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:
481
481
 
482
482
#ifdef U_USE_DEPRECATED_FORMAT_API
483
483
 
484
 
#if ((U_ICU_VERSION_MAJOR_NUM != 2) || (U_ICU_VERSION_MINOR_NUM !=0))
 
484
#if ((U_ICU_VERSION_MAJOR_NUM != 2) || (U_ICU_VERSION_MINOR_NUM !=1))
485
485
#   error "ICU version has changed. Please redefine the macros under U_USE_DEPRECATED_FORMAT_API pre-processor definition"
486
486
#else 
487
487
    U_CAPI UTransliterator* U_EXPORT2 
494
494
        return utrans_open(id,dir,rules,rulesLength,parseErr,status);
495
495
    }
496
496
 
497
 
#   define utrans_open_2_0(id,dir,status) utrans_open(id,dir,NULL,0,NULL,status)
 
497
#   define utrans_open_2_1(id,dir,status) utrans_open(id,dir,NULL,0,NULL,status)
498
498
 
499
499
#endif
500
500
#endif