Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
54d7c801
Commit
54d7c801
authored
Apr 29, 2009
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorer: Initialize the Progman DDE interface when starting explorer.
parent
d2ecb119
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
desktop.c
programs/explorer/desktop.c
+9
-0
No files found.
programs/explorer/desktop.c
View file @
54d7c801
...
...
@@ -326,6 +326,9 @@ void manage_desktop( WCHAR *arg )
if
(
hwnd
==
GetDesktopWindow
())
{
HMODULE
shell32
;
void
(
WINAPI
*
pShellDDEInit
)(
BOOL
);
SetWindowLongPtrW
(
hwnd
,
GWLP_WNDPROC
,
(
LONG_PTR
)
desktop_wnd_proc
);
SendMessageW
(
hwnd
,
WM_SETICON
,
ICON_BIG
,
(
LPARAM
)
LoadIconW
(
0
,
MAKEINTRESOURCEW
(
OIC_WINLOGO
)));
if
(
name
)
set_desktop_window_title
(
hwnd
,
name
);
...
...
@@ -334,6 +337,12 @@ void manage_desktop( WCHAR *arg )
initialize_display_settings
(
hwnd
);
initialize_appbar
();
initialize_systray
();
if
((
shell32
=
LoadLibraryA
(
"shell32.dll"
))
&&
(
pShellDDEInit
=
(
void
*
)
GetProcAddress
(
shell32
,
(
LPCSTR
)
188
)))
{
pShellDDEInit
(
TRUE
);
}
}
else
{
...
...
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