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
44a82859
Commit
44a82859
authored
Oct 22, 2009
by
Ilya Shpigor
Committed by
Alexandre Julliard
Oct 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
programs: Add initial extrac32 utility.
parent
c1265cfd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
57 additions
and
0 deletions
+57
-0
configure
configure
+10
-0
configure.ac
configure.ac
+1
-0
Makefile.in
programs/extrac32/Makefile.in
+15
-0
extrac32.c
programs/extrac32/extrac32.c
+31
-0
No files found.
configure
View file @
44a82859
...
...
@@ -17564,6 +17564,15 @@ programs/explorer/Makefile: programs/explorer/Makefile.in programs/Makeprog.rule
ac_config_files
=
"
$ac_config_files
programs/explorer/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
programs/extrac32/Makefile"
test
"x
$enable_extrac32
"
!=
xno
&&
ALL_PROGRAM_DIRS
=
"
$ALL_PROGRAM_DIRS
\\
extrac32"
&&
ALL_PROGRAM_INSTALL_DIRS
=
"
$ALL_PROGRAM_INSTALL_DIRS
\\
extrac32"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
programs/extrac32/Makefile: programs/extrac32/Makefile.in programs/Makeprog.rules"
ac_config_files
=
"
$ac_config_files
programs/extrac32/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
programs/hh/Makefile"
test
"x
$enable_hh
"
!=
xno
&&
ALL_PROGRAM_DIRS
=
"
$ALL_PROGRAM_DIRS
\\
hh"
&&
ALL_PROGRAM_INSTALL_DIRS
=
"
$ALL_PROGRAM_INSTALL_DIRS
\\
...
...
@@ -19204,6 +19213,7 @@ do
"programs/eject/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/eject/Makefile" ;;
"programs/expand/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/expand/Makefile" ;;
"programs/explorer/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/explorer/Makefile" ;;
"programs/extrac32/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/extrac32/Makefile" ;;
"programs/hh/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/hh/Makefile" ;;
"programs/icinfo/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/icinfo/Makefile" ;;
"programs/iexplore/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/iexplore/Makefile" ;;
...
...
configure.ac
View file @
44a82859
...
...
@@ -2581,6 +2581,7 @@ WINE_CONFIG_MAKEFILE([programs/dxdiag/Makefile],[programs/Makeprog.rules],[progr
WINE_CONFIG_MAKEFILE([programs/eject/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/expand/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/explorer/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/extrac32/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/hh/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/icinfo/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/iexplore/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
...
...
programs/extrac32/Makefile.in
0 → 100644
View file @
44a82859
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
extrac32.exe
APPMODE
=
-mwindows
-municode
EXTRADEFS
=
-DWINE_NO_UNICODE
IMPORTS
=
kernel32
C_SRCS
=
\
extrac32.c
@MAKE_PROG_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
programs/extrac32/extrac32.c
0 → 100644
View file @
44a82859
/*
* Extract - Wine-compatible program for extract *.cab files.
*
* Copyright 2007 Etersoft (Lyutin Anatoly)
*
* 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 <windows.h>
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
extrac32
);
int
PASCAL
wWinMain
(
HINSTANCE
hInstance
,
HINSTANCE
prev
,
LPWSTR
cmdline
,
int
show
)
{
return
0
;
}
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