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
d8860d34
Commit
d8860d34
authored
Jun 15, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Jun 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Implement MsiApplyPatchW.
parent
974e76fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
85 additions
and
3 deletions
+85
-3
msi.c
dlls/msi/msi.c
+83
-2
msi.h
include/msi.h
+2
-1
No files found.
dlls/msi/msi.c
View file @
d8860d34
...
...
@@ -30,6 +30,7 @@
#include "shlwapi.h"
#include "wine/debug.h"
#include "msi.h"
#include "msidefs.h"
#include "msiquery.h"
#include "msipriv.h"
#include "wincrypt.h"
...
...
@@ -256,9 +257,89 @@ done:
UINT
WINAPI
MsiApplyPatchW
(
LPCWSTR
szPatchPackage
,
LPCWSTR
szInstallPackage
,
INSTALLTYPE
eInstallType
,
LPCWSTR
szCommandLine
)
{
FIXME
(
"%s %s %d %s
\n
"
,
debugstr_w
(
szPatchPackage
),
debugstr_w
(
szInstallPackage
),
MSIHANDLE
patch
,
info
;
UINT
r
,
type
;
DWORD
size
=
0
;
LPCWSTR
cmd_ptr
=
szCommandLine
;
LPWSTR
beg
,
end
;
LPWSTR
cmd
=
NULL
,
codes
=
NULL
;
static
const
WCHAR
space
[]
=
{
' '
,
0
};
static
const
WCHAR
patcheq
[]
=
{
'P'
,
'A'
,
'T'
,
'C'
,
'H'
,
'='
,
0
};
static
WCHAR
empty
[]
=
{
0
};
TRACE
(
"%s %s %d %s
\n
"
,
debugstr_w
(
szPatchPackage
),
debugstr_w
(
szInstallPackage
),
eInstallType
,
debugstr_w
(
szCommandLine
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
if
(
szInstallPackage
||
eInstallType
==
INSTALLTYPE_NETWORK_IMAGE
||
eInstallType
==
INSTALLTYPE_SINGLE_INSTANCE
)
{
FIXME
(
"Only reading target products from patch
\n
"
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
r
=
MsiOpenDatabaseW
(
szPatchPackage
,
MSIDBOPEN_READONLY
,
&
patch
);
if
(
r
!=
ERROR_SUCCESS
)
return
r
;
r
=
MsiGetSummaryInformationW
(
patch
,
NULL
,
0
,
&
info
);
if
(
r
!=
ERROR_SUCCESS
)
goto
done
;
r
=
MsiSummaryInfoGetPropertyW
(
info
,
PID_TEMPLATE
,
&
type
,
NULL
,
NULL
,
empty
,
&
size
);
if
(
r
!=
ERROR_MORE_DATA
||
!
size
||
type
!=
VT_LPSTR
)
{
ERR
(
"Failed to read product codes from patch
\n
"
);
goto
done
;
}
codes
=
msi_alloc
(
++
size
*
sizeof
(
WCHAR
));
if
(
!
codes
)
{
r
=
ERROR_OUTOFMEMORY
;
goto
done
;
}
r
=
MsiSummaryInfoGetPropertyW
(
info
,
PID_TEMPLATE
,
&
type
,
NULL
,
NULL
,
codes
,
&
size
);
if
(
r
!=
ERROR_SUCCESS
)
goto
done
;
if
(
!
szCommandLine
)
cmd_ptr
=
empty
;
size
=
lstrlenW
(
cmd_ptr
)
+
lstrlenW
(
patcheq
)
+
lstrlenW
(
szPatchPackage
)
+
1
;
cmd
=
msi_alloc
(
size
*
sizeof
(
WCHAR
));
if
(
!
cmd
)
{
r
=
ERROR_OUTOFMEMORY
;
goto
done
;
}
lstrcpyW
(
cmd
,
cmd_ptr
);
if
(
szCommandLine
)
lstrcatW
(
cmd
,
space
);
lstrcatW
(
cmd
,
patcheq
);
lstrcatW
(
cmd
,
szPatchPackage
);
beg
=
codes
;
while
((
end
=
strchrW
(
beg
,
'}'
)))
{
*
(
end
+
1
)
=
'\0'
;
r
=
MsiConfigureProductExW
(
beg
,
INSTALLLEVEL_DEFAULT
,
INSTALLSTATE_DEFAULT
,
cmd
);
if
(
r
!=
ERROR_SUCCESS
)
goto
done
;
beg
=
end
+
2
;
}
done:
msi_free
(
cmd
);
msi_free
(
codes
);
MsiCloseHandle
(
info
);
MsiCloseHandle
(
patch
);
return
r
;
}
UINT
WINAPI
MsiConfigureProductExW
(
LPCWSTR
szProduct
,
int
iInstallLevel
,
...
...
include/msi.h
View file @
d8860d34
...
...
@@ -167,7 +167,8 @@ typedef enum tagSCRIPTFLAGS
typedef
enum
tagINSTALLTYPE
{
INSTALLTYPE_DEFAULT
=
0
,
INSTALLTYPE_NETWORK_IMAGE
=
1
INSTALLTYPE_NETWORK_IMAGE
=
1
,
INSTALLTYPE_SINGLE_INSTANCE
=
2
,
}
INSTALLTYPE
;
typedef
enum
tagMSIINSTALLCONTEXT
...
...
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