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
203085dc
Commit
203085dc
authored
Oct 04, 2011
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32: Mark some fall-throughs in a switch statement.
parent
ad336be6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
prop.c
dlls/mapi32/prop.c
+8
-0
No files found.
dlls/mapi32/prop.c
View file @
203085dc
...
...
@@ -221,31 +221,39 @@ ULONG WINAPI UlPropSize(LPSPropValue lpProp)
switch
(
PROP_TYPE
(
lpProp
->
ulPropTag
))
{
case
PT_MV_I2
:
ulRet
=
lpProp
->
Value
.
MVi
.
cValues
;
/* fall through */
case
PT_BOOLEAN
:
case
PT_I2
:
ulRet
*=
sizeof
(
USHORT
);
break
;
case
PT_MV_I4
:
ulRet
=
lpProp
->
Value
.
MVl
.
cValues
;
/* fall through */
case
PT_ERROR
:
case
PT_I4
:
ulRet
*=
sizeof
(
LONG
);
break
;
case
PT_MV_I8
:
ulRet
=
lpProp
->
Value
.
MVli
.
cValues
;
/* fall through */
case
PT_I8
:
ulRet
*=
sizeof
(
LONG64
);
break
;
case
PT_MV_R4
:
ulRet
=
lpProp
->
Value
.
MVflt
.
cValues
;
/* fall through */
case
PT_R4
:
ulRet
*=
sizeof
(
float
);
break
;
case
PT_MV_APPTIME
:
case
PT_MV_R8
:
ulRet
=
lpProp
->
Value
.
MVdbl
.
cValues
;
/* fall through */
case
PT_APPTIME
:
case
PT_R8
:
ulRet
*=
sizeof
(
double
);
break
;
case
PT_MV_CURRENCY
:
ulRet
=
lpProp
->
Value
.
MVcur
.
cValues
;
/* fall through */
case
PT_CURRENCY
:
ulRet
*=
sizeof
(
CY
);
break
;
case
PT_MV_SYSTIME
:
ulRet
=
lpProp
->
Value
.
MVft
.
cValues
;
/* fall through */
case
PT_SYSTIME
:
ulRet
*=
sizeof
(
FILETIME
);
break
;
case
PT_MV_CLSID
:
ulRet
=
lpProp
->
Value
.
MVguid
.
cValues
;
/* fall through */
case
PT_CLSID
:
ulRet
*=
sizeof
(
GUID
);
break
;
case
PT_MV_STRING8
:
ulRet
=
0u
;
...
...
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