1999-12-28 23:39:02 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2001-03-21 20:44:20 +00:00
|
|
|
* Copyright (C) 1999-2001, International Business Machines
|
1999-12-28 23:39:02 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
* file name: umisc.h
|
|
|
|
* encoding: US-ASCII
|
|
|
|
* tab size: 8 (not used)
|
|
|
|
* indentation:4
|
|
|
|
*
|
|
|
|
* created on: 1999oct15
|
|
|
|
* created by: Markus W. Scherer
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef UMISC_H
|
|
|
|
#define UMISC_H
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
2000-12-08 18:43:57 +00:00
|
|
|
/**
|
|
|
|
* \file
|
2000-12-15 03:58:31 +00:00
|
|
|
* \brief C API:misc definitions
|
2000-12-08 18:43:57 +00:00
|
|
|
*
|
|
|
|
* This file contains miscellaneous definitions for the C APIs.
|
|
|
|
*/
|
|
|
|
|
2000-03-22 18:31:40 +00:00
|
|
|
/** A struct representing a range of text containing a specific field
|
|
|
|
* @stable
|
|
|
|
*/
|
2002-07-26 17:19:16 +00:00
|
|
|
typedef struct UFieldPosition {
|
1999-12-28 23:39:02 +00:00
|
|
|
/** The field */
|
|
|
|
int32_t field;
|
|
|
|
/** The start of the text range containing field */
|
|
|
|
int32_t beginIndex;
|
|
|
|
/** The limit of the text range containing field */
|
|
|
|
int32_t endIndex;
|
2002-07-26 17:19:16 +00:00
|
|
|
} UFieldPosition;
|
1999-12-28 23:39:02 +00:00
|
|
|
|
|
|
|
#endif
|