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
7a324307
Commit
7a324307
authored
Apr 18, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorer: Initial version of dynamic drive support using HAL.
parent
00068989
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
1 deletion
+5
-1
Makefile.in
programs/explorer/Makefile.in
+3
-1
desktop.c
programs/explorer/desktop.c
+1
-0
explorer_private.h
programs/explorer/explorer_private.h
+1
-0
hal.c
programs/explorer/hal.c
+0
-0
No files found.
programs/explorer/Makefile.in
View file @
7a324307
...
...
@@ -4,11 +4,13 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
explorer.exe
APPMODE
=
-mwindows
IMPORTS
=
user32 gdi32 advapi32 kernel32
IMPORTS
=
user32 gdi32 advapi32 kernel32 ntdll
EXTRADEFS
=
@HALINCL@
C_SRCS
=
\
desktop.c
\
explorer.c
\
hal.c
\
systray.c
@MAKE_PROG_RULES@
...
...
programs/explorer/desktop.c
View file @
7a324307
...
...
@@ -163,6 +163,7 @@ void manage_desktop( char *arg )
SetWindowTextW
(
hwnd
,
desktop_nameW
);
SystemParametersInfoA
(
SPI_SETDESKPATTERN
,
-
1
,
NULL
,
FALSE
);
SetDeskWallPaper
(
(
LPSTR
)
-
1
);
initialize_hal
();
initialize_systray
();
}
else
...
...
programs/explorer/explorer_private.h
View file @
7a324307
...
...
@@ -22,6 +22,7 @@
#define __WINE_EXPLORER_PRIVATE_H
extern
void
manage_desktop
(
char
*
arg
);
extern
void
initialize_hal
(
void
);
extern
void
initialize_systray
(
void
);
#endif
/* __WINE_EXPLORER_PRIVATE_H */
programs/explorer/hal.c
0 → 100644
View file @
7a324307
This diff is collapsed.
Click to expand it.
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