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
f483ca61
Commit
f483ca61
authored
May 11, 2005
by
Stefan Leichter
Committed by
Alexandre Julliard
May 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added minimal implementation of MsiCreateAndVerifyInstallerDirectory.
parent
1ef6e296
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
msi.c
dlls/msi/msi.c
+20
-2
No files found.
dlls/msi/msi.c
View file @
f483ca61
...
...
@@ -57,6 +57,8 @@ LPVOID gUIContext = NULL;
WCHAR
gszLogFile
[
MAX_PATH
];
HINSTANCE
msi_hInstance
;
static
const
WCHAR
installerW
[]
=
{
'\\'
,
'I'
,
'n'
,
's'
,
't'
,
'a'
,
'l'
,
'l'
,
'e'
,
'r'
,
0
};
UINT
WINAPI
MsiOpenProductA
(
LPCSTR
szProduct
,
MSIHANDLE
*
phProduct
)
{
UINT
r
;
...
...
@@ -1539,8 +1541,24 @@ UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
UINT
WINAPI
MsiCreateAndVerifyInstallerDirectory
(
DWORD
dwReserved
)
{
FIXME
(
"%ld
\n
"
,
dwReserved
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
WCHAR
path
[
MAX_PATH
];
if
(
dwReserved
)
{
FIXME
(
"Don't know how to handle argument %ld
\n
"
,
dwReserved
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
if
(
!
GetWindowsDirectoryW
(
path
,
MAX_PATH
))
{
FIXME
(
"GetWindowsDirectory failed unexpected! Error %ld
\n
"
,
GetLastError
());
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
strcatW
(
path
,
installerW
);
CreateDirectoryW
(
path
,
NULL
);
return
0
;
}
UINT
WINAPI
MsiGetShortcutTargetA
(
LPCSTR
szShortcutTarget
,
...
...
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