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
97be8d02
Commit
97be8d02
authored
Sep 13, 2014
by
Marcus Meissner
Committed by
Alexandre Julliard
Sep 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Added stub for SHEnumerateUnreadMailAccountsW.
parent
b10b3918
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
shell32.spec
dlls/shell32/shell32.spec
+1
-0
shell32_main.c
dlls/shell32/shell32_main.c
+9
-0
shellapi.h
include/shellapi.h
+4
-0
No files found.
dlls/shell32/shell32.spec
View file @
97be8d02
...
...
@@ -348,6 +348,7 @@
@ stdcall SHCreateShellItemArrayFromIDLists(long ptr ptr)
@ stdcall SHEmptyRecycleBinA(long str long)
@ stdcall SHEmptyRecycleBinW(long wstr long)
@ stdcall SHEnumerateUnreadMailAccountsW(ptr long ptr long)
@ stdcall SHExtractIconsW(wstr long long long ptr ptr long long) user32.PrivateExtractIconsW
@ stdcall SHFileOperation(ptr) SHFileOperationA
@ stdcall SHFileOperationA(ptr)
...
...
dlls/shell32/shell32_main.c
View file @
97be8d02
...
...
@@ -1385,3 +1385,12 @@ HRESULT WINAPI SHSetUnreadMailCountW(LPCWSTR mailaddress, DWORD count, LPCWSTR e
FIXME
(
"%s %x %s: stub
\n
"
,
debugstr_w
(
mailaddress
),
count
,
debugstr_w
(
executecommand
));
return
E_NOTIMPL
;
}
/***********************************************************************
* SHEnumerateUnreadMailAccountsW (SHELL32.@)
*/
HRESULT
WINAPI
SHEnumerateUnreadMailAccountsW
(
HKEY
user
,
DWORD
idx
,
LPWSTR
mailaddress
,
INT
mailaddresslen
)
{
FIXME
(
"%p %d %p %d: stub
\n
"
,
user
,
idx
,
mailaddress
,
mailaddresslen
);
return
E_NOTIMPL
;
}
include/shellapi.h
View file @
97be8d02
...
...
@@ -649,6 +649,10 @@ DWORD WINAPI DoEnvironmentSubstA(LPSTR, UINT);
DWORD
WINAPI
DoEnvironmentSubstW
(
LPWSTR
,
UINT
);
#define DoEnvironmentSubst WINELIB_NAME_AW(DoEnvironmentSubst)
HRESULT
WINAPI
SHEnumerateUnreadMailAccountsA
(
HKEY
,
DWORD
,
LPSTR
,
INT
);
HRESULT
WINAPI
SHEnumerateUnreadMailAccountsW
(
HKEY
,
DWORD
,
LPWSTR
,
INT
);
#define SHEnumerateUnreadMailAccounts WINELIB_NAME_AW(SHEnumerateUnreadMailAccounts)
#ifdef __cplusplus
}
/* extern "C" */
...
...
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