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
90830863
Commit
90830863
authored
Jun 10, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jun 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create a stub implementation for MsiViewGetError.
parent
950e5e62
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
2 deletions
+41
-2
msi.spec
dlls/msi/msi.spec
+2
-2
msiquery.c
dlls/msi/msiquery.c
+36
-0
msiquery.h
include/msiquery.h
+3
-0
No files found.
dlls/msi/msi.spec
View file @
90830863
...
...
@@ -158,8 +158,8 @@
158 stdcall MsiViewClose(long)
159 stdcall MsiViewExecute(long long)
160 stdcall MsiViewFetch(long ptr)
161 st
ub MsiViewGetErrorA
162 st
ub MsiViewGetErrorW
161 st
dcall MsiViewGetErrorA(long ptr ptr)
162 st
dcall MsiViewGetErrorW(long ptr ptr)
163 stdcall MsiViewModify(long long long)
164 stdcall MsiDatabaseIsTablePersistentA(long str)
165 stdcall MsiDatabaseIsTablePersistentW(long wstr)
...
...
dlls/msi/msiquery.c
View file @
90830863
...
...
@@ -563,6 +563,42 @@ out:
return
r
;
}
UINT
WINAPI
MsiViewGetErrorW
(
MSIHANDLE
handle
,
LPWSTR
szColumnNameBuffer
,
DWORD
*
pcchBuf
)
{
MSIQUERY
*
query
=
NULL
;
FIXME
(
"%ld %p %p
\n
"
,
handle
,
szColumnNameBuffer
,
pcchBuf
);
if
(
!
pcchBuf
)
return
MSIDBERROR_INVALIDARG
;
query
=
msihandle2msiinfo
(
handle
,
MSIHANDLETYPE_VIEW
);
if
(
!
query
)
return
MSIDBERROR_INVALIDARG
;
msiobj_release
(
&
query
->
hdr
);
return
MSIDBERROR_NOERROR
;
}
UINT
WINAPI
MsiViewGetErrorA
(
MSIHANDLE
handle
,
LPSTR
szColumnNameBuffer
,
DWORD
*
pcchBuf
)
{
MSIQUERY
*
query
=
NULL
;
FIXME
(
"%ld %p %p
\n
"
,
handle
,
szColumnNameBuffer
,
pcchBuf
);
if
(
!
pcchBuf
)
return
MSIDBERROR_INVALIDARG
;
query
=
msihandle2msiinfo
(
handle
,
MSIHANDLETYPE_VIEW
);
if
(
!
query
)
return
MSIDBERROR_INVALIDARG
;
msiobj_release
(
&
query
->
hdr
);
return
MSIDBERROR_NOERROR
;
}
UINT
WINAPI
MsiDatabaseApplyTransformA
(
MSIHANDLE
hdb
,
LPCSTR
szTransformFile
,
int
iErrorCond
)
{
...
...
include/msiquery.h
View file @
90830863
...
...
@@ -126,6 +126,9 @@ UINT WINAPI MsiViewClose(MSIHANDLE);
UINT
WINAPI
MsiDatabaseOpenViewA
(
MSIHANDLE
,
LPCSTR
,
MSIHANDLE
*
);
UINT
WINAPI
MsiDatabaseOpenViewW
(
MSIHANDLE
,
LPCWSTR
,
MSIHANDLE
*
);
#define MsiDatabaseOpenView WINELIB_NAME_AW(MsiDatabaseOpenView)
UINT
WINAPI
MsiViewGetErrorA
(
MSIHANDLE
,
LPSTR
,
DWORD
*
);
UINT
WINAPI
MsiViewGetErrorW
(
MSIHANDLE
,
LPWSTR
,
DWORD
*
);
#define MsiViewGetError WINELIB_NAME_AW(MsiViewGetError)
/* record manipulation */
MSIHANDLE
WINAPI
MsiCreateRecord
(
unsigned
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