Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix NOTIFYICONDATAA typo for ANSI version (should be CHAR instead of TCHAR) #1796

Open
wants to merge 1 commit into
base: docs
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sdk-api-src/content/shellapi/ns-shellapi-notifyicondataa.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ If only a 16x16 pixel icon is provided, it is scaled to a larger size in a syste

### -field szTip

Type: <b>TCHAR[64]</b>
Type: <b>CHAR[64]</b>

A null-terminated string that specifies the text for a standard tooltip. It can have a maximum of 64 characters, including the terminating null character.

Expand Down Expand Up @@ -210,7 +210,7 @@ Type: <b>DWORD</b>

### -field szInfo

Type: <b>TCHAR[256]</b>
Type: <b>CHAR[256]</b>

<b>Windows 2000 and later</b>. A null-terminated string that specifies the text to display in a balloon notification. It can have a maximum of 256 characters, including the terminating null character, but should be restricted to 200 characters in English to accommodate localization. To remove the balloon notification from the UI, either delete the icon (with <a href="/windows/desktop/api/shellapi/nf-shellapi-shell_notifyicona">NIM_DELETE</a>) or set the <b>NIF_INFO</b> flag in <b>uFlags</b> and set <b>szInfo</b> to an empty string.

Expand All @@ -236,7 +236,7 @@ Type: <b>UINT</b>

### -field szInfoTitle

Type: <b>TCHAR[64]</b>
Type: <b>CHAR[64]</b>

<b>Windows 2000 and later</b>. A null-terminated string that specifies a title for a balloon notification. This title appears in a larger font immediately above the text. It can have a maximum of 64 characters, including the terminating null character, but should be restricted to 48 characters in English to accommodate localization.

Expand Down