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
ed673bdc
Commit
ed673bdc
authored
Jun 09, 2021
by
Zhiyi Zhang
Committed by
Alexandre Julliard
Jun 09, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extrac32: Enable visual styles.
Signed-off-by:
Zhiyi Zhang
<
zzhang@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
46a162b4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
1 deletion
+47
-1
Makefile.in
programs/extrac32/Makefile.in
+3
-1
extrac32.c
programs/extrac32/extrac32.c
+3
-0
extrac32.manifest
programs/extrac32/extrac32.manifest
+16
-0
extrac32.rc
programs/extrac32/extrac32.rc
+25
-0
No files found.
programs/extrac32/Makefile.in
View file @
ed673bdc
MODULE
=
extrac32.exe
MODULE
=
extrac32.exe
IMPORTS
=
shell32 setupapi shlwapi user32
IMPORTS
=
shell32 setupapi shlwapi user32
comctl32
EXTRADLLFLAGS
=
-mwindows
-municode
-mno-cygwin
EXTRADLLFLAGS
=
-mwindows
-municode
-mno-cygwin
C_SRCS
=
\
C_SRCS
=
\
extrac32.c
extrac32.c
RC_SRCS
=
extrac32.rc
programs/extrac32/extrac32.c
View file @
ed673bdc
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdio.h>
#include <windows.h>
#include <windows.h>
#include <commctrl.h>
#include <shellapi.h>
#include <shellapi.h>
#include <setupapi.h>
#include <setupapi.h>
#include <shlwapi.h>
#include <shlwapi.h>
...
@@ -226,6 +227,8 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho
...
@@ -226,6 +227,8 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho
WCHAR
path
[
MAX_PATH
];
WCHAR
path
[
MAX_PATH
];
LPCWSTR
cabfile
=
NULL
;
LPCWSTR
cabfile
=
NULL
;
InitCommonControls
();
path
[
0
]
=
0
;
path
[
0
]
=
0
;
/* Do not use CommandLineToArgvW() or __wgetmainargs() to parse
/* Do not use CommandLineToArgvW() or __wgetmainargs() to parse
...
...
programs/extrac32/extrac32.manifest
0 → 100644
View file @
ed673bdc
<?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.Extrac32"
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/extrac32/extrac32.rc
0 → 100644
View file @
ed673bdc
/*
* Extrac32 resources
*
* Copyright 2021 Zhiyi Zhang for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <winuser.h>
/* @makedep: extrac32.manifest */
1 RT_MANIFEST extrac32.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