Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Mayr
wine
Commits
b489ed44
Commit
b489ed44
authored
17 years ago
by
Misha Koshelev
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msi: automation: SummaryInfo::Property, remove all specific instances to PIDs.
parent
8b2d0d3e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/msi/automation.c
+34
-40
34 additions, 40 deletions
dlls/msi/automation.c
with
34 additions
and
40 deletions
dlls/msi/automation.c
+
34
−
40
View file @
b489ed44
...
...
@@ -754,72 +754,66 @@ static HRESULT WINAPI SummaryInfoImpl_Invoke(
{
UINT
type
;
INT
value
;
INT
pid
;
DWORD
size
=
0
;
FILETIME
ft
,
ftlocal
;
SYSTEMTIME
st
;
DATE
date
;
LPWSTR
str
;
static
WCHAR
szEmpty
[]
=
{
0
};
hr
=
DispGetParam
(
pDispParams
,
0
,
VT_I4
,
&
varg0
,
puArgErr
);
if
(
FAILED
(
hr
))
return
hr
;
pid
=
V_I4
(
&
varg0
);
ret
=
MsiSummaryInfoGetPropertyW
(
This
->
msiHandle
,
V_I4
(
&
varg0
),
&
type
,
&
value
,
&
ft
,
szEmpty
,
&
size
);
if
(
ret
!=
ERROR_SUCCESS
&&
ret
!=
ERROR_MORE_DATA
)
{
ERR
(
"MsiSummaryInfoGetProperty returned %d
\n
"
,
ret
);
return
DISP_E_EXCEPTION
;
}
if
(
pid
==
PID_CODEPAGE
||
(
pid
>=
PID_PAGECOUNT
&&
pid
<=
PID_CHARCOUNT
)
||
pid
==
PID_SECURITY
)
switch
(
type
)
{
if
((
ret
=
MsiSummaryInfoGetPropertyW
(
This
->
msiHandle
,
pid
,
&
type
,
&
value
,
NULL
,
NULL
,
NULL
))
!=
ERROR_SUCCESS
)
ERR
(
"MsiSummaryInfoGetProperty returned %d
\n
"
,
ret
);
else
if
(
type
==
VT_I2
)
{
case
VT_EMPTY
:
break
;
case
VT_I2
:
V_VT
(
pVarResult
)
=
VT_I2
;
V_I2
(
pVarResult
)
=
value
;
}
else
if
(
type
==
VT_I4
)
{
break
;
case
VT_I4
:
V_VT
(
pVarResult
)
=
VT_I4
;
V_I4
(
pVarResult
)
=
value
;
}
}
else
if
((
pid
>=
PID_TITLE
&&
pid
<=
PID_REVNUMBER
)
||
pid
==
PID_APPNAME
)
{
LPWSTR
str
;
DWORD
size
=
0
;
break
;
if
((
ret
=
MsiSummaryInfoGetPropertyW
(
This
->
msiHandle
,
pid
,
&
type
,
NULL
,
NULL
,
szEmpty
,
&
size
))
==
ERROR_MORE_DATA
)
{
case
VT_LPSTR
:
if
(
!
(
str
=
msi_alloc
(
++
size
*
sizeof
(
WCHAR
))))
ERR
(
"Out of memory
\n
"
);
else
if
((
ret
=
MsiSummaryInfoGetPropertyW
(
This
->
msiHandle
,
pid
,
&
type
,
NULL
,
NULL
,
str
,
&
size
))
==
ERROR_SUCCESS
)
else
if
((
ret
=
MsiSummaryInfoGetPropertyW
(
This
->
msiHandle
,
V_I4
(
&
varg0
),
&
type
,
NULL
,
NULL
,
str
,
&
size
))
!=
ERROR_SUCCESS
)
ERR
(
"MsiSummaryInfoGetProperty returned %d
\n
"
,
ret
);
else
{
V_VT
(
pVarResult
)
=
VT_BSTR
;
V_BSTR
(
pVarResult
)
=
SysAllocString
(
str
);
}
msi_free
(
str
);
}
if
(
ret
!=
ERROR_SUCCESS
&&
ret
!=
ERROR_MORE_DATA
)
ERR
(
"MsiSummaryInfoGetProperty returned %d
\n
"
,
ret
);
}
else
if
(
pid
>=
PID_EDITTIME
&&
pid
<=
PID_LASTSAVE_DTM
)
{
FILETIME
ft
,
ftlocal
;
SYSTEMTIME
st
;
DATE
date
;
if
((
ret
=
MsiSummaryInfoGetPropertyW
(
This
->
msiHandle
,
pid
,
&
type
,
&
value
,
&
ft
,
NULL
,
NULL
))
!=
ERROR_SUCCESS
)
ERR
(
"MsiSummaryInfoGetProperty returned %d
\n
"
,
ret
);
else
if
(
type
==
VT_FILETIME
)
{
break
;
case
VT_FILETIME
:
FileTimeToLocalFileTime
(
&
ft
,
&
ftlocal
);
FileTimeToSystemTime
(
&
ftlocal
,
&
st
);
SystemTimeToVariantTime
(
&
st
,
&
date
);
V_VT
(
pVarResult
)
=
VT_DATE
;
V_DATE
(
pVarResult
)
=
date
;
}
break
;
default:
ERR
(
"Unhandled variant type %d
\n
"
,
type
);
}
else
if
(
pid
!=
PID_DICTIONARY
&&
pid
!=
PID_THUMBNAIL
)
return
DISP_E_EXCEPTION
;
}
else
return
DISP_E_MEMBERNOTFOUND
;
break
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment