BOOKTEXT: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 20: | Line 20: | ||
:Length of the text string. For the BKM_QUERYSTATUSLINETEXT message, this is the length of the status line text string. | :Length of the text string. For the BKM_QUERYSTATUSLINETEXT message, this is the length of the status line text string. | ||
:For the BKM_QUERYTABTEXT message, this is the length of the tab text string. | :For the BKM_QUERYTABTEXT message, this is the length of the tab text string. | ||
[[Category: Data type]] | [[Category:PM Data type]] | ||
Revision as of 18:33, 25 May 2024
Notebook data structure that contains text strings for notebook status lines and tabs. This data structure is used with the BKM_QUERYSTATUSLINETEXT and the BKM_QUERYTABTEXT messages only.
typedef struct _BOOKTEXT {
PSZ pString; /* Pointer to a string buffer. */
ULONG textLen; /* String length. */
} BOOKTEXT;
typedef BOOKTEXT * PBOOKTEXT ;
Fields
- pString (PSZ)
- Pointer to a string buffer.
- Buffer in which the text string is to be placed. For the BKM_QUERYSTATUSLINETEXT message, this is the buffer in which the status line text is placed.
- For the BKM_QUERYTABTEXT message, this is the buffer in which the tab text is placed.
- textLen (ULONG)
- String length.
- Length of the text string. For the BKM_QUERYSTATUSLINETEXT message, this is the length of the status line text string.
- For the BKM_QUERYTABTEXT message, this is the length of the tab text string.