umisc.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. **********************************************************************
  3. * Copyright (C) 1999-2006, International Business Machines
  4. * Corporation and others. All Rights Reserved.
  5. **********************************************************************
  6. * file name: umisc.h
  7. * encoding: US-ASCII
  8. * tab size: 8 (not used)
  9. * indentation:4
  10. *
  11. * created on: 1999oct15
  12. * created by: Markus W. Scherer
  13. */
  14. #ifndef UMISC_H
  15. #define UMISC_H
  16. #include "unicode/utypes.h"
  17. /**
  18. * \file
  19. * \brief C API:misc definitions
  20. *
  21. * This file contains miscellaneous definitions for the C APIs.
  22. */
  23. U_CDECL_BEGIN
  24. /** A struct representing a range of text containing a specific field
  25. * @stable ICU 2.0
  26. */
  27. typedef struct UFieldPosition {
  28. /**
  29. * The field
  30. * @stable ICU 2.0
  31. */
  32. int32_t field;
  33. /**
  34. * The start of the text range containing field
  35. * @stable ICU 2.0
  36. */
  37. int32_t beginIndex;
  38. /**
  39. * The limit of the text range containing field
  40. * @stable ICU 2.0
  41. */
  42. int32_t endIndex;
  43. } UFieldPosition;
  44. #if !UCONFIG_NO_SERVICE
  45. /**
  46. * Opaque type returned by registerInstance, registerFactory and unregister for service registration.
  47. * @stable ICU 2.6
  48. */
  49. typedef const void* URegistryKey;
  50. #endif
  51. U_CDECL_END
  52. #endif