If you want to comment a Windows Message you can't write the meaning of WParam, LParam ...etc
you can do this:
const
{** Message send to .....
@member WPARAM Handle of windows.
@member LPARAM pointer of an object .}
WMFW_NOTIFYFORMCLOSE = WM_APP + 1000;
Maybe it is not the good way to do this. Maybe sommething like:
const
{** @message(Message send to ..... )
@member WPARAM Handle of windows.
@member LPARAM pointer of an object .}
WMFW_NOTIFYFORMCLOSE = WM_APP + 1000;
The @message say it's a description of a message and @member is valid in this case. For a standard constant, you don't use @message and @member is not valid.
I usually use @unorderedList to do that.