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
5eaf9cec
Commit
5eaf9cec
authored
Feb 01, 2005
by
Aric Stewart
Committed by
Alexandre Julliard
Feb 01, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some more suminfo stubs.
parent
e6afc848
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
3 deletions
+28
-3
msi.spec
dlls/msi/msi.spec
+3
-3
suminfo.c
dlls/msi/suminfo.c
+19
-0
msi.h
include/msi.h
+6
-0
No files found.
dlls/msi/msi.spec
View file @
5eaf9cec
...
...
@@ -148,9 +148,9 @@
148 stdcall MsiSummaryInfoGetPropertyA(long long ptr ptr ptr ptr ptr)
149 stdcall MsiSummaryInfoGetPropertyCount(long ptr)
150 stdcall MsiSummaryInfoGetPropertyW(long long ptr ptr ptr ptr ptr)
151 st
ub MsiSummaryInfoPersist
152 st
ub MsiSummaryInfoSetPropertyA
153 st
ub MsiSummaryInfoSetPropertyW
151 st
dcall MsiSummaryInfoPersist(long)
152 st
dcall MsiSummaryInfoSetPropertyA(long long long long ptr str)
153 st
dcall MsiSummaryInfoSetPropertyW(long long long long ptr wstr)
154 stub MsiUseFeatureA
155 stub MsiUseFeatureW
156 stdcall MsiVerifyPackageA(str)
...
...
dlls/msi/suminfo.c
View file @
5eaf9cec
...
...
@@ -272,3 +272,22 @@ UINT WINAPI MsiSummaryInfoGetPropertyW(
return
ERROR_SUCCESS
;
}
UINT
WINAPI
MsiSummaryInfoSetPropertyA
(
MSIHANDLE
hSummaryInfo
,
UINT
uiProperty
,
UINT
uiDataType
,
INT
iValue
,
FILETIME
*
pftValue
,
LPSTR
szValue
)
{
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiSummaryInfoSetPropertyW
(
MSIHANDLE
hSummaryInfo
,
UINT
uiProperty
,
UINT
uiDataType
,
INT
iValue
,
FILETIME
*
pftValue
,
LPWSTR
szValue
)
{
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiSummaryInfoPersist
(
MSIHANDLE
hSummaryInfo
)
{
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
include/msi.h
View file @
5eaf9cec
...
...
@@ -209,6 +209,12 @@ UINT WINAPI MsiSummaryInfoGetPropertyA(MSIHANDLE,UINT,UINT*,INT*,FILETIME*,LPSTR
UINT
WINAPI
MsiSummaryInfoGetPropertyW
(
MSIHANDLE
,
UINT
,
UINT
*
,
INT
*
,
FILETIME
*
,
LPWSTR
,
DWORD
*
);
#define MsiSummaryInfoGetProperty WINELIB_NAME_AW(MsiSummaryInfoGetProperty)
UINT
WINAPI
MsiSummaryInfoPersist
(
MSIHANDLE
);
UINT
WINAPI
MsiSummaryInfoSetPropertyA
(
MSIHANDLE
,
UINT
,
UINT
,
INT
,
FILETIME
*
,
LPSTR
);
UINT
WINAPI
MsiSummaryInfoSetPropertyW
(
MSIHANDLE
,
UINT
,
UINT
,
INT
,
FILETIME
*
,
LPWSTR
);
#define MsiSummaryInfoSetProperty WINELIB_NAME_AW(MsiSummaryInfoSetProperty)
UINT
WINAPI
MsiProvideComponentFromDescriptorA
(
LPCSTR
,
LPSTR
,
DWORD
*
,
DWORD
*
);
UINT
WINAPI
MsiProvideComponentFromDescriptorW
(
LPCWSTR
,
LPWSTR
,
DWORD
*
,
DWORD
*
);
#define MsiProvideComponentFromDescriptor WINELIB_NAME_AW(MsiProvideComponentFromDescriptor)
...
...
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