Commit 7a324307 authored by Alexandre Julliard's avatar Alexandre Julliard

explorer: Initial version of dynamic drive support using HAL.

parent 00068989
......@@ -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@
......
......@@ -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
......
......@@ -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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment