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
8c0398d1
Commit
8c0398d1
authored
Jun 26, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Jun 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Get rid of HAVE_OLEAUT32_DECIMAL in safearray.
parent
cdeae41c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
safearray.c
dlls/oleaut32/tests/safearray.c
+1
-6
No files found.
dlls/oleaut32/tests/safearray.c
View file @
8c0398d1
...
...
@@ -59,8 +59,6 @@ static SAFEARRAY* (WINAPI *pSafeArrayCreateVector)(VARTYPE,LONG,ULONG);
#define HAVE_OLEAUT32_R8 HAVE_FUNC(VarR8FromI1)
/* Have I8/UI8 data type? */
#define HAVE_OLEAUT32_I8 HAVE_FUNC(VarI8FromI1)
/* Have the decimal type? */
#define HAVE_OLEAUT32_DECIMAL HAVE_FUNC(VarDecAdd)
/* Have INT_PTR/UINT_PTR type? */
static
BOOL
HAVE_OLEAUT32_INT_PTR
;
...
...
@@ -201,10 +199,7 @@ static DWORD SAFEARRAY_GetVTSize(VARTYPE vt)
case
VT_DISPATCH
:
return
sizeof
(
LPDISPATCH
);
case
VT_VARIANT
:
return
sizeof
(
VARIANT
);
case
VT_UNKNOWN
:
return
sizeof
(
LPUNKNOWN
);
case
VT_DECIMAL
:
if
(
HAVE_OLEAUT32_DECIMAL
)
return
sizeof
(
DECIMAL
);
break
;
case
VT_DECIMAL
:
return
sizeof
(
DECIMAL
);
}
return
0
;
}
...
...
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