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
1a47d1b9
Commit
1a47d1b9
authored
Jun 16, 2021
by
Zhiyi Zhang
Committed by
Alexandre Julliard
Jun 16, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uninstaller: Enable visual styles.
Signed-off-by:
Zhiyi Zhang
<
zzhang@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
af242e43
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
1 deletion
+24
-1
Makefile.in
programs/uninstaller/Makefile.in
+1
-1
main.c
programs/uninstaller/main.c
+3
-0
resource.h
programs/uninstaller/resource.h
+1
-0
uninstaller.manifest
programs/uninstaller/uninstaller.manifest
+16
-0
uninstaller.rc
programs/uninstaller/uninstaller.rc
+3
-0
No files found.
programs/uninstaller/Makefile.in
View file @
1a47d1b9
MODULE
=
uninstaller.exe
IMPORTS
=
advapi32
DELAYIMPORTS
=
shlwapi shell32 user32 gdi32
DELAYIMPORTS
=
shlwapi shell32 user32 gdi32
comctl32
EXTRADLLFLAGS
=
-mconsole
-municode
-mno-cygwin
...
...
programs/uninstaller/main.c
View file @
1a47d1b9
...
...
@@ -23,6 +23,7 @@
#include <string.h>
#include <windows.h>
#include <commctrl.h>
#include <shlwapi.h>
#include "resource.h"
#include "regstr.h"
...
...
@@ -176,6 +177,8 @@ int __cdecl wmain(int argc, WCHAR *argv[])
Wow64RevertWow64FsRedirection
(
redir
);
}
InitCommonControls
();
while
(
i
<
argc
)
{
token
=
argv
[
i
++
];
...
...
programs/uninstaller/resource.h
View file @
1a47d1b9
...
...
@@ -19,6 +19,7 @@
*/
#include <windef.h>
#include <winuser.h>
#define IDS_APPNAME 1000
#define IDS_UNINSTALLFAILED 1001
...
...
programs/uninstaller/uninstaller.manifest
0 → 100644
View file @
1a47d1b9
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly
xmlns=
"urn:schemas-microsoft-com:asm.v1"
manifestVersion=
"1.0"
>
<assemblyIdentity
type=
"win32"
name=
"Wine.Uninstaller"
version=
"0.0.0.0"
/>
<dependency>
<dependentAssembly>
<assemblyIdentity
type=
"win32"
name=
"Microsoft.Windows.Common-Controls"
version=
"6.0.0.0"
processorArchitecture=
"*"
publicKeyToken=
"6595b64144ccf1df"
language=
"*"
/>
</dependentAssembly>
</dependency>
</assembly>
programs/uninstaller/uninstaller.rc
View file @
1a47d1b9
...
...
@@ -41,3 +41,6 @@ STRINGTABLE {
\t\t Use '--list' to determine the application GUID.\n\
\ [no option] Launch the graphical version of this program.\n\n"
}
/* @makedep: uninstaller.manifest */
1 RT_MANIFEST uninstaller.manifest
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