I am trying to enter a carriage return to a CFString, but can't get it to work.
For example, if I try to append a carriage return (from a C string) to a CFString by the following line:
CFStringAppend(textOut,CFSTR("\n"));
When I display the CFString to an output window, it shows the carriage return character, instead of actually starting a new line.
Any suggestions?