Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7ec5f555
Commit
7ec5f555
authored
Aug 05, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add a stub implementation of SHQueryUserNotificationState.
parent
d1658260
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
shell32.spec
dlls/shell32/shell32.spec
+1
-0
shell32_main.c
dlls/shell32/shell32_main.c
+10
-0
shellapi.h
include/shellapi.h
+13
-0
No files found.
dlls/shell32/shell32.spec
View file @
7ec5f555
...
...
@@ -409,6 +409,7 @@
@ stdcall SHPathPrepareForWriteW(long ptr wstr long)
@ stdcall SHQueryRecycleBinA(str ptr)
@ stdcall SHQueryRecycleBinW(wstr ptr)
@ stdcall SHQueryUserNotificationState(ptr)
@ stdcall SHSetLocalizedName(wstr wstr long)
@ stdcall SHSetUnreadMailCountW(wstr long wstr)
@ stdcall SHUpdateRecycleBinIcon()
...
...
dlls/shell32/shell32_main.c
View file @
7ec5f555
...
...
@@ -1404,3 +1404,13 @@ HRESULT WINAPI SHEnumerateUnreadMailAccountsW(HKEY user, DWORD idx, LPWSTR maila
FIXME
(
"%p %d %p %d: stub
\n
"
,
user
,
idx
,
mailaddress
,
mailaddresslen
);
return
E_NOTIMPL
;
}
/***********************************************************************
* SHQueryUserNotificationState (SHELL32.@)
*/
HRESULT
WINAPI
SHQueryUserNotificationState
(
QUERY_USER_NOTIFICATION_STATE
*
state
)
{
FIXME
(
"%p: stub
\n
"
,
state
);
*
state
=
QUNS_ACCEPTS_NOTIFICATIONS
;
return
S_OK
;
}
include/shellapi.h
View file @
7ec5f555
...
...
@@ -490,6 +490,19 @@ HRESULT WINAPI SHQueryRecycleBinW(LPCWSTR,LPSHQUERYRBINFO);
* Misc
*/
typedef
enum
{
QUNS_NOT_PRESENT
=
1
,
QUNS_BUSY
=
2
,
QUNS_RUNNING_D3D_FULL_SCREEN
=
3
,
QUNS_PRESENTATION_MODE
=
4
,
QUNS_ACCEPTS_NOTIFICATIONS
=
5
,
QUNS_QUIET_TIME
=
6
,
QUNS_APP
=
7
}
QUERY_USER_NOTIFICATION_STATE
;
HRESULT
WINAPI
SHQueryUserNotificationState
(
QUERY_USER_NOTIFICATION_STATE
*
);
typedef
enum
SHSTOCKICONID
{
SIID_INVALID
=-
1
,
...
...
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