I have this snippet from MSDN page
lplpszAcceptTypes
- A pointer to a null-terminated array of strings that indicates media types accepted by the client. Here is an example.
PCTSTR rgpszAcceptTypes[] = {_T(“text/*”), NULL};
The problem here is /*
in “text/*”
is read as comment by intellisense and the code which follows this line get commented out. What is the solution here?
The only reason IntelliSense parses this as a comment is that it isn't a proper string literal. C++ string literals are delimited by simple, straight quotes
"
, but the MSDN example, probably due to being edited in a word processor unsuited to technical content, uses stylized quotes“
and”
. These aren't recognized as quotes, so the string literals isn't recognized either, which leads IntelliSense astray. (And it should lead the compiler astray too, if MS has any respect whatsoever for portability.)