"James Hawkins" <truiken at gmail.com> wrote:
> + text = MSI_RecordGetString( rec, 10 );
> + if ( text )
> + {
> + begin = strchrW( text, '{' );
> + end = strchrW( text, '}' );
Perhaps it would be cleaner to use
end = strchrW( begin, '}' );
--
Dmitry.