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
52586544
Commit
52586544
authored
Sep 30, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Oct 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation of MsiDatabaseMerge.
parent
c2bab443
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
database.c
dlls/msi/database.c
+18
-0
msi.spec
dlls/msi/msi.spec
+2
-2
msi.h
include/msi.h
+4
-0
No files found.
dlls/msi/database.c
View file @
52586544
...
...
@@ -983,6 +983,24 @@ end:
return
r
;
}
UINT
WINAPI
MsiDatabaseMergeA
(
MSIHANDLE
hDatabase
,
MSIHANDLE
hDatabaseMerge
,
LPCSTR
szTableName
)
{
FIXME
(
"(%ld, %ld, %s): stub!
\n
"
,
hDatabase
,
hDatabaseMerge
,
debugstr_a
(
szTableName
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiDatabaseMergeW
(
MSIHANDLE
hDatabase
,
MSIHANDLE
hDatabaseMerge
,
LPCWSTR
szTableName
)
{
FIXME
(
"(%ld, %ld, %s): stub!
\n
"
,
hDatabase
,
hDatabaseMerge
,
debugstr_w
(
szTableName
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
MSIDBSTATE
WINAPI
MsiGetDatabaseState
(
MSIHANDLE
handle
)
{
MSIDBSTATE
ret
=
MSIDBSTATE_READ
;
...
...
dlls/msi/msi.spec
View file @
52586544
...
...
@@ -22,8 +22,8 @@
26 stdcall MsiDatabaseGetPrimaryKeysW(long wstr ptr)
27 stdcall MsiDatabaseImportA(str str long)
28 stdcall MsiDatabaseImportW(wstr wstr long)
29 st
ub MsiDatabaseMergeA
30 st
ub MsiDatabaseMergeW
29 st
dcall MsiDatabaseMergeA(long long str)
30 st
dcall MsiDatabaseMergeW(long long wstr)
31 stdcall MsiDatabaseOpenViewA(long str ptr)
32 stdcall MsiDatabaseOpenViewW(long wstr ptr)
33 stdcall MsiDoActionA(long str)
...
...
include/msi.h
View file @
52586544
...
...
@@ -599,6 +599,10 @@ UINT WINAPI MsiIsProductElevatedA(LPCSTR, BOOL *);
UINT
WINAPI
MsiIsProductElevatedW
(
LPCWSTR
,
BOOL
*
);
#define MsiIsProductElevated WINELIB_NAME_AW(MsiIsProductElevated)
UINT
WINAPI
MsiDatabaseMergeA
(
MSIHANDLE
,
MSIHANDLE
,
LPCSTR
);
UINT
WINAPI
MsiDatabaseMergeW
(
MSIHANDLE
,
MSIHANDLE
,
LPCWSTR
);
#define MsiDatabaseMerge WINELIB_NAME_AW(MsiDatabaseMerge)
/* Non Unicode */
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
(
void
);
...
...
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