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
475a81a8
Commit
475a81a8
authored
Jan 26, 2005
by
Aric Stewart
Committed by
Alexandre Julliard
Jan 26, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a few more stub implementations.
parent
0e53bb3f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
10 deletions
+23
-10
msi.c
dlls/msi/msi.c
+14
-2
msi.spec
dlls/msi/msi.spec
+6
-6
msipriv.h
dlls/msi/msipriv.h
+2
-1
registry.c
dlls/msi/registry.c
+1
-1
No files found.
dlls/msi/msi.c
View file @
475a81a8
...
...
@@ -1635,8 +1635,20 @@ UINT WINAPI MsiGetUserInfoW(LPCWSTR szProduct, LPWSTR lpUserNameBuf,
return
USERINFOSTATE_UNKNOWN
;
}
UINT
WINAPI
MsiCollectUserInfoW
(
LPWSTR
szProduct
)
UINT
WINAPI
MsiCollectUserInfoW
(
LP
C
WSTR
szProduct
)
{
FIXME
(
"%s
\n
"
,
debugstr_w
(
szProduct
));
return
ERROR_FUNCTION_FAILED
;
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiCollectUserInfoA
(
LPCSTR
szProduct
)
{
FIXME
(
"%s
\n
"
,
debugstr_a
(
szProduct
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiCreateAndVerifyInstallerDirectory
(
void
)
{
FIXME
(
"
\n
"
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
dlls/msi/msi.spec
View file @
475a81a8
...
...
@@ -6,7 +6,7 @@
6 stdcall MsiAdvertiseProductW(wstr wstr wstr long)
7 stdcall MsiCloseAllHandles()
8 stdcall MsiCloseHandle(long)
9 st
ub MsiCollectUserInfoA
9 st
dcall MsiCollectUserInfoA(str)
10 stdcall MsiCollectUserInfoW(wstr)
11 stub MsiConfigureFeatureA
12 stub MsiConfigureFeatureFromDescriptorA
...
...
@@ -186,8 +186,8 @@
186 stub MsiCreateTransformSummaryInfoW
187 stub MsiQueryFeatureStateFromDescriptorA
188 stub MsiQueryFeatureStateFromDescriptorW
189 st
ub MsiConfigureProductExA
190 stdcall MsiConfigureProductExW
(wstr long long wstr)
189 st
dcall MsiConfigureProductExA(str long long str)
190 stdcall MsiConfigureProductExW(wstr long long wstr)
191 stub MsiInvalidateFeatureCache
192 stub MsiUseFeatureExA
193 stdcall MsiUseFeatureExW(wstr wstr long long)
...
...
@@ -197,8 +197,8 @@
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 stdcall MsiDecomposeDescriptorA(str
s
tr ptr ptr ptr)
201 stdcall MsiDecomposeDescriptorW(wstr
ws
tr ptr ptr ptr)
200 stdcall MsiDecomposeDescriptorA(str
p
tr ptr ptr ptr)
201 stdcall MsiDecomposeDescriptorW(wstr
p
tr ptr ptr ptr)
202 stub MsiProvideQualifiedComponentExA
203 stdcall MsiProvideQualifiedComponentExW(wstr wstr long wstr long long ptr ptr)
204 stdcall MsiEnumRelatedProductsA(str long long ptr)
...
...
@@ -219,7 +219,7 @@
219 stub MsiGetFileHashW
220 stub MsiEnumComponentCostsA
221 stub MsiEnumComponentCostsW
222 st
ub MsiCreateAndVerifyInstallerDirectory
222 st
dcall MsiCreateAndVerifyInstallerDirectory()
223 stdcall MsiGetFileSignatureInformationA(str long ptr ptr ptr)
224 stdcall MsiGetFileSignatureInformationW(wstr long ptr ptr ptr)
225 stdcall MsiProvideAssemblyA(str str long long str ptr)
...
...
dlls/msi/msipriv.h
View file @
475a81a8
...
...
@@ -289,8 +289,9 @@ extern BOOL TABLE_Exists( MSIDATABASE *db, LPWSTR name );
extern
UINT
read_raw_stream_data
(
MSIDATABASE
*
,
LPCWSTR
stname
,
USHORT
**
pdata
,
UINT
*
psz
);
/* action internals */
extern
UINT
ACTION_DoTopLevelINSTALL
(
MSIPACKAGE
*
,
LPCWSTR
,
LPCWSTR
);
extern
void
ACTION_remove_tracked_tempfiles
(
MSIPACKAGE
*
);
extern
void
ACTION_free_package_structures
(
MSIPACKAGE
*
);
/* record internals */
...
...
dlls/msi/registry.c
View file @
475a81a8
/*
* Implementation of the Microsoft Installer (msi.dll)
*
* Copyright 2005 Mike McCormak for CodeWeavers
* Copyright 2005 Mike McCorma
c
k for CodeWeavers
* Copyright 2005 Aric Stewart for CodeWeavers
*
* This library is free software; you can redistribute it and/or
...
...
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