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
c2da57e2
Commit
c2da57e2
authored
Apr 12, 2004
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 12, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct spec entry for MsiLoadString*.
Pseudo stubs for MsiLocateComponent*.
parent
e1d413da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
8 deletions
+20
-8
msi.c
dlls/msi/msi.c
+16
-4
msi.spec
dlls/msi/msi.spec
+4
-4
No files found.
dlls/msi/msi.c
View file @
c2da57e2
...
...
@@ -516,18 +516,30 @@ INSTALLUILEVEL WINAPI MsiSetInternalUI(INSTALLUILEVEL dwUILevel, HWND *phWnd)
return
dwUILevel
;
}
UINT
WINAPI
MsiLoadStringA
(
DWORD
a
,
DWORD
b
,
DWORD
c
,
DWORD
d
,
DWORD
e
,
DWORD
f
)
UINT
WINAPI
MsiLoadStringA
(
DWORD
a
,
DWORD
b
,
DWORD
c
,
DWORD
d
,
DWORD
e
)
{
FIXME
(
"%08lx %08lx %08lx %08lx %08lx
%08lx
\n
"
,
a
,
b
,
c
,
d
,
e
,
f
);
FIXME
(
"%08lx %08lx %08lx %08lx %08lx
\n
"
,
a
,
b
,
c
,
d
,
e
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiLoadStringW
(
DWORD
a
,
DWORD
b
,
DWORD
c
,
DWORD
d
,
DWORD
e
,
DWORD
f
)
UINT
WINAPI
MsiLoadStringW
(
DWORD
a
,
DWORD
b
,
DWORD
c
,
DWORD
d
,
DWORD
e
)
{
FIXME
(
"%08lx %08lx %08lx %08lx %08lx
%08lx
\n
"
,
a
,
b
,
c
,
d
,
e
,
f
);
FIXME
(
"%08lx %08lx %08lx %08lx %08lx
\n
"
,
a
,
b
,
c
,
d
,
e
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
INSTALLSTATE
WINAPI
MsiLocateComponentA
(
LPCSTR
szComponent
,
LPSTR
lpPathBuf
,
DWORD
*
pcchBuf
)
{
FIXME
(
"%s %p %08lx
\n
"
,
debugstr_a
(
szComponent
),
lpPathBuf
,
*
pcchBuf
);
return
INSTALLSTATE_UNKNOWN
;
}
INSTALLSTATE
WINAPI
MsiLocateComponentW
(
LPCWSTR
szComponent
,
LPSTR
lpPathBuf
,
DWORD
*
pcchBuf
)
{
FIXME
(
"%s %p %08lx
\n
"
,
debugstr_w
(
szComponent
),
lpPathBuf
,
*
pcchBuf
);
return
INSTALLSTATE_UNKNOWN
;
}
UINT
WINAPI
MsiMessageBoxA
(
DWORD
a
,
DWORD
b
,
DWORD
c
,
DWORD
d
,
DWORD
e
,
DWORD
f
)
{
FIXME
(
"%08lx %08lx %08lx %08lx %08lx %08lx
\n
"
,
a
,
b
,
c
,
d
,
e
,
f
);
...
...
dlls/msi/msi.spec
View file @
c2da57e2
...
...
@@ -86,8 +86,8 @@
86 stub MsiInstallMissingFileW
87 stdcall MsiInstallProductA(str str)
88 stdcall MsiInstallProductW(wstr wstr)
89 st
ub MsiLocateComponentA
90 st
ub MsiLocateComponentW
89 st
dcall MsiLocateComponentA(str ptr long)
90 st
dcall MsiLocateComponentW(wstr ptr long)
91 stdcall MsiOpenDatabaseA(str str ptr)
92 stdcall MsiOpenDatabaseW(wstr wstr ptr)
93 stdcall MsiOpenPackageA(str ptr)
...
...
@@ -193,8 +193,8 @@
193 stub MsiUseFeatureExW
194 stub MsiGetFileVersionA
195 stub MsiGetFileVersionW
196 stdcall MsiLoadStringA(long long long long long
long
)
197 stdcall MsiLoadStringW(long long long long long
long
)
196 stdcall MsiLoadStringA(long long long long long)
197 stdcall MsiLoadStringW(long long long long long)
198 stdcall MsiMessageBoxA(long long long long long long)
199 stdcall MsiMessageBoxW(long long long long long long)
200 stub MsiDecomposeDescriptorA
...
...
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