Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
665829c3
Commit
665829c3
authored
Sep 08, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix the prototype of MsiDatabaseIsTablePersistent to match the SDK.
parent
4f9cae8d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
msiquery.c
dlls/msi/msiquery.c
+2
-2
msiquery.h
include/msiquery.h
+2
-2
No files found.
dlls/msi/msiquery.c
View file @
665829c3
...
...
@@ -870,7 +870,7 @@ UINT WINAPI MsiDatabaseGetPrimaryKeysA(MSIHANDLE hdb,
}
MSICONDITION
WINAPI
MsiDatabaseIsTablePersistentA
(
MSIHANDLE
hDatabase
,
LPSTR
szTableName
)
MSIHANDLE
hDatabase
,
LP
C
STR
szTableName
)
{
LPWSTR
szwTableName
=
NULL
;
MSICONDITION
r
;
...
...
@@ -890,7 +890,7 @@ MSICONDITION WINAPI MsiDatabaseIsTablePersistentA(
}
MSICONDITION
WINAPI
MsiDatabaseIsTablePersistentW
(
MSIHANDLE
hDatabase
,
LPWSTR
szTableName
)
MSIHANDLE
hDatabase
,
LP
C
WSTR
szTableName
)
{
FIXME
(
"%lx %s
\n
"
,
hDatabase
,
debugstr_w
(
szTableName
));
return
MSICONDITION_FALSE
;
...
...
include/msiquery.h
View file @
665829c3
...
...
@@ -273,8 +273,8 @@ UINT WINAPI MsiOpenDatabaseW(LPCWSTR, LPCWSTR, MSIHANDLE*);
UINT
WINAPI
MsiOpenDatabaseA
(
LPCSTR
,
LPCSTR
,
MSIHANDLE
*
);
#define MsiOpenDatabase WINELIB_NAME_AW(MsiOpenDatabase)
MSICONDITION
WINAPI
MsiDatabaseIsTablePersistentA
(
MSIHANDLE
,
LPSTR
);
MSICONDITION
WINAPI
MsiDatabaseIsTablePersistentW
(
MSIHANDLE
,
LPWSTR
);
MSICONDITION
WINAPI
MsiDatabaseIsTablePersistentA
(
MSIHANDLE
,
LP
C
STR
);
MSICONDITION
WINAPI
MsiDatabaseIsTablePersistentW
(
MSIHANDLE
,
LP
C
WSTR
);
#define MsiDatabaseIsTablePersistent WINELIB_NAME_AW(MsiDatabaseIsTablePersistent)
UINT
WINAPI
MsiSequenceA
(
MSIHANDLE
,
LPCSTR
,
INT
);
...
...
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