IGR_Text_Compare_Next¶
Retrieves the next difference from the text comparison enumerator.
Prototype¶
IGR_RETURN_CODE IGR_Text_Compare_Next(
IGR_HTEXTCOMPARE enumerator,
struct IGR_Compare_Documents_Difference* result,
Error_Control_Block* error
)
Parameters¶
enumerator: IGR_HTEXTCOMPARE
The text comparison enumerator.
result: Pointer to IGR_Compare_Documents_Difference
Pointer to store the next difference.
error: Pointer to Error_Control_Block
Contains any error text.
Return value¶
Success: IGR_LONG
Returns IGR_OK.
Failure: IGR_LONG
Returns one of the possible IGR_E error codes.
Sample Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|