Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
92a375bb
Commit
92a375bb
authored
Mar 18, 2007
by
Mikołaj Zalewski
Committed by
Alexandre Julliard
Mar 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add some more notify icon defines.
parent
50275015
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
11 deletions
+45
-11
shellapi.h
include/shellapi.h
+45
-11
No files found.
include/shellapi.h
View file @
92a375bb
...
...
@@ -57,17 +57,6 @@ UINT WINAPI DragQueryFileW(HDROP hDrop, UINT lFile, LPWSTR lpszFile, UINT lLengt
void
WINAPI
DragFinish
(
HDROP
h
);
BOOL
WINAPI
DragQueryPoint
(
HDROP
hDrop
,
POINT
*
p
);
#define NIF_MESSAGE 0x00000001
#define NIF_ICON 0x00000002
#define NIF_TIP 0x00000004
#define NIF_STATE 0x00000008
#define NIF_INFO 0x00000010
#define NIF_GUID 0x00000020
#define NIM_ADD 0x00000000
#define NIM_MODIFY 0x00000001
#define NIM_DELETE 0x00000002
/******************************************
...
...
@@ -346,6 +335,51 @@ void WINAPI WinExecErrorW(HWND hwnd,INT error, LPCWSTR lpstrFileName, LPCWSTR lp
/******************************************
* Tray Notification
*/
/* notifyicondata.uFlags values*/
#define NIF_MESSAGE 0x00000001
#define NIF_ICON 0x00000002
#define NIF_TIP 0x00000004
#define NIF_STATE 0x00000008
#define NIF_INFO 0x00000010
#define NIF_GUID 0x00000020
#define NIF_REALTIME 0x00000040
#define NIF_SHOWTIP 0x00000080
/* notifyicondata.dwState values */
#define NIS_HIDDEN 0x00000001
#define NIS_SHAREDICON 0x00000002
/* notifyicondata.dwInfoFlags values */
#define NIIF_NONE 0x00000000
#define NIIF_INFO 0x00000001
#define NIIF_WARNING 0x00000002
#define NIIF_ERROR 0x00000003
#define NIIF_USER 0x00000004
#define NIIF_ICONMASK 0x0000000f
#define NIIF_NOSOUND 0x00000010
#define NIIF_LARGEICON 0x00000020
/* dwMessage values */
#define NIM_ADD 0x00000000
#define NIM_MODIFY 0x00000001
#define NIM_DELETE 0x00000002
#define NIM_SETFOCUS 0x00000003
#define NIM_SETVERSION 0x00000004
#define NOTIFY_VERSION 3
/* supported by Windows 2000 and later */
#define NOTIFY_VERSION_4 4
/* supported by Windows Vista */
/* callback message lParam values */
#define NIN_SELECT (WM_USER+0)
#define NINF_KEY 1
#define NIN_KEYSELECT (NIN_SELECT|NINF_KEY)
/* WM_USER+1 */
#define NIN_BALOONSHOW (WM_USER+2)
#define NIN_BALOONHIDE (WM_USER+3)
#define NIN_BALOONTIMEOUT (WM_USER+4)
#define NIN_BALOONCLICK (WM_USER+5)
#define NIN_POPUPOPEN (WM_USER+6)
#define NIN_POPUPCLOSE (WM_USER+7)
typedef
struct
_NOTIFYICONDATAA
{
DWORD
cbSize
;
HWND
hWnd
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment