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
007586ea
Commit
007586ea
authored
Nov 09, 2009
by
Ilya Shpigor
Committed by
Alexandre Julliard
Nov 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extrac32: Implementation of the CAB archive extraction.
parent
3dc8b28d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
2 deletions
+29
-2
Makefile.in
programs/extrac32/Makefile.in
+1
-1
extrac32.c
programs/extrac32/extrac32.c
+28
-1
No files found.
programs/extrac32/Makefile.in
View file @
007586ea
...
...
@@ -5,7 +5,7 @@ VPATH = @srcdir@
MODULE
=
extrac32.exe
APPMODE
=
-mwindows
-municode
EXTRADEFS
=
-DWINE_NO_UNICODE
IMPORTS
=
shell32 user32 kernel32
IMPORTS
=
shell32
setupapi
user32 kernel32
C_SRCS
=
\
extrac32.c
...
...
programs/extrac32/extrac32.c
View file @
007586ea
...
...
@@ -21,12 +21,39 @@
#include <windows.h>
#include <shellapi.h>
#include <setupapi.h>
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
extrac32
);
static
UINT
WINAPI
ExtCabCallback
(
PVOID
Context
,
UINT
Notification
,
UINT_PTR
Param1
,
UINT_PTR
Param2
)
{
FILE_IN_CABINET_INFO_W
*
pInfo
;
FILEPATHS_W
*
pFilePaths
;
switch
(
Notification
)
{
case
SPFILENOTIFY_FILEINCABINET
:
pInfo
=
(
FILE_IN_CABINET_INFO_W
*
)
Param1
;
lstrcpyW
(
pInfo
->
FullTargetName
,
(
LPCWSTR
)
Context
);
lstrcatW
(
pInfo
->
FullTargetName
,
pInfo
->
NameInCabinet
);
return
FILEOP_DOIT
;
case
SPFILENOTIFY_FILEEXTRACTED
:
pFilePaths
=
(
FILEPATHS_W
*
)
Param1
;
WINE_TRACE
(
"Extracted %s
\n
"
,
wine_dbgstr_w
(
pFilePaths
->
Target
));
return
NO_ERROR
;
}
return
NO_ERROR
;
}
static
void
extract
(
LPCWSTR
cabfile
,
LPWSTR
destdir
)
{
if
(
!
SetupIterateCabinetW
(
cabfile
,
0
,
ExtCabCallback
,
destdir
))
WINE_ERR
(
"Could not extract cab file %s
\n
"
,
wine_dbgstr_w
(
cabfile
));
}
int
PASCAL
wWinMain
(
HINSTANCE
hInstance
,
HINSTANCE
prev
,
LPWSTR
cmdline
,
int
show
)
{
LPWSTR
*
argv
;
...
...
@@ -105,7 +132,7 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho
break
;
case
'E'
:
/* Extract CAB archive */
WINE_FIXME
(
"/E not implemented
\n
"
);
extract
(
cabfile
,
path
);
break
;
case
0
:
case
'D'
:
...
...
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