|
From: Michalis K. <ka...@us...> - 2026-03-30 01:45:08
|
I don't think we want to allow `@member` for this -- the idea of`@member` is to refer to existing member of given structure, https://pasdoc.github.io/MemberValueTag . The way to express what you need is indeed to use general formatting, like `@unorderedList`. --- **[feature-requests:#38] Support of @member in constante comment** **Status:** open **Group:** **Created:** Fri Apr 13, 2007 10:31 AM UTC by portail **Last Updated:** Wed Oct 16, 2013 02:02 AM UTC **Owner:** nobody 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. --- Sent from sourceforge.net because pas...@li... is subscribed to https://sourceforge.net/p/pasdoc/feature-requests/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/pasdoc/admin/feature-requests/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |