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
106e65e0
Commit
106e65e0
authored
Aug 16, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Ordinal 394 should load and call shell32.SHNotifyChange.
Makes builtin shlwapi behave better during reboot after IE6 install.
parent
ba3d4b22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
ordinal.c
dlls/shlwapi/ordinal.c
+16
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
106e65e0
...
...
@@ -4431,3 +4431,19 @@ UINT WINAPI ZoneComputePaneSize(HWND hwnd)
FIXME
(
"
\n
"
);
return
0x95
;
}
typedef
void
(
WINAPI
*
fnSHChangeNotify
)(
LONG
,
UINT
,
LPCVOID
,
LPCVOID
);
void
WINAPI
SHChangeNotify
(
LONG
wEventId
,
UINT
uFlags
,
LPCVOID
dwItem1
,
LPCVOID
dwItem2
)
{
static
fnSHChangeNotify
fn
;
HMODULE
hshell32
;
if
(
!
fn
)
{
hshell32
=
LoadLibraryA
(
"shell32"
);
if
(
hshell32
)
fn
=
(
fnSHChangeNotify
)
GetProcAddress
(
hshell32
,
"SHChangeNotify"
);
}
fn
(
wEventId
,
uFlags
,
dwItem1
,
dwItem2
);
}
dlls/shlwapi/shlwapi.spec
View file @
106e65e0
...
...
@@ -391,7 +391,7 @@
391 stdcall -noname WNetGetLastErrorWrapW(ptr ptr long ptr long)
392 stdcall -noname EndDialogWrap(ptr ptr) user32.EndDialog
393 stdcall @(long ptr long ptr long) user32.CreateDialogIndirectParamW
394 stdcall
@(long ptr long ptr long) user32.CreateDialogIndirectParamA
394 stdcall
-noname SHChangeNotify(long long ptr ptr)
395 stub -noname MLWinHelpA
396 stub -noname MLHtmlHelpA
397 stub -noname MLWinHelpW
...
...
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