Edit

WORDREP_BREAK_TYPE enumeration (indexsrv.h)

Note

Indexing Service is no longer supported as of Windows XP and is unavailable for use as of Windows 8. Instead, use Windows Search for client side search and Microsoft Search Server Express for server side search.

Describes the type of break that separates the current word from the previous word.

Syntax

typedef enum tagWORDREP_BREAK_TYPE {
  WORDREP_BREAK_EOW = 0,
  WORDREP_BREAK_EOS = 1,
  WORDREP_BREAK_EOP = 2,
  WORDREP_BREAK_EOC = 3
} WORDREP_BREAK_TYPE;

Constants

 
WORDREP_BREAK_EOW
Value: 0
A word break is placed between this word and the previous word that was placed in the WordSink. This break is the default used by the PutWord method.
WORDREP_BREAK_EOS
Value: 1
A sentence break is placed between this word and the previous word.
WORDREP_BREAK_EOP
Value: 2
A paragraph break is placed between this word and the previous word.
WORDREP_BREAK_EOC
Value: 3
A chapter break is placed between this word and the previous word.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header indexsrv.h

See also

IWordSink::PutAltWord

IWordSink::PutWord