how to put multiline comment to function header
-
hi, i want to create a function with the FileCodeModel and put a comment for the function. the problem is that i want to make a comment like this:
/*********************** * * Comment example * ************************/
but i dont know how to make it, i know only to make this type of comment :// Comment example
with this code -CComPtr l_pCodeFunction; CComPtr l_pProjectItems; CComPtr l_pProjectItem; CComPtr l_pFileCodeModel; pActiveDoc->get_ProjectItem(&l_pProjectItem); l_pProjectItem->get_FileCodeModel(&l_pFileCodeModel); l_pFileCodeModel->AddFunction(L"DoSomething",EnvDTE::vsCMFunctionFunction,CComVariant(L"void"),CComVariant(1),EnvDTE::vsCMAccessPublic,&l_pCodeFunction); l_pCodeFunction.put_Comment(???) // TODO
does someone knows how to make multiline comment?