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
0e8b75bb
Commit
0e8b75bb
authored
Jun 15, 2006
by
Kevin Koltzau
Committed by
Alexandre Julliard
Jun 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Fix 64bit warnings in tests.
parent
146e6b8b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
safearray.c
dlls/oleaut32/tests/safearray.c
+2
-2
usrmarshal.c
dlls/oleaut32/tests/usrmarshal.c
+3
-3
vartest.c
dlls/oleaut32/tests/vartest.c
+1
-1
vartype.c
dlls/oleaut32/tests/vartype.c
+1
-1
No files found.
dlls/oleaut32/tests/safearray.c
View file @
0e8b75bb
...
...
@@ -277,7 +277,7 @@ static void test_safearray(void)
{
SAFEARRAY
*
a
,
b
,
*
c
;
unsigned
int
i
;
long
indices
[
2
];
LONG
indices
[
2
];
HRESULT
hres
;
SAFEARRAYBOUND
bound
,
bounds
[
2
];
VARIANT
v
;
...
...
@@ -1649,7 +1649,7 @@ static void test_SafeArrayDestroyData (void)
SAFEARRAY
*
sa
;
HRESULT
hres
;
int
value
=
0xdeadbeef
;
long
index
[
1
];
LONG
index
[
1
];
void
HUGEP
*
temp_pvData
;
sab
.
lLbound
=
0
;
...
...
dlls/oleaut32/tests/usrmarshal.c
View file @
0e8b75bb
...
...
@@ -396,7 +396,7 @@ static void test_marshal_VARIANT(void)
MIDL_STUB_MESSAGE
stubMsg
=
{
0
};
USER_MARSHAL_CB
umcb
=
{
0
};
unsigned
char
*
buffer
,
*
next
;
unsigned
long
ul
;
ULONG
ul
;
short
s
;
double
d
;
DWORD
*
wirev
;
...
...
@@ -914,7 +914,7 @@ static void test_marshal_VARIANT(void)
check_safearray
(
wirev
,
lpsa
);
if
(
VARIANT_UNMARSHAL_WORKS
)
{
long
bound
,
bound2
;
LONG
bound
,
bound2
;
VARTYPE
vt
,
vt2
;
VariantInit
(
&
v2
);
next
=
VARIANT_UserUnmarshal
(
&
umcb
.
Flags
,
buffer
,
&
v2
);
...
...
@@ -955,7 +955,7 @@ static void test_marshal_VARIANT(void)
check_safearray
(
wirev
,
lpsa
);
if
(
VARIANT_UNMARSHAL_WORKS
)
{
long
bound
,
bound2
;
LONG
bound
,
bound2
;
VARTYPE
vt
,
vt2
;
VariantInit
(
&
v2
);
next
=
VARIANT_UserUnmarshal
(
&
umcb
.
Flags
,
buffer
,
&
v2
);
...
...
dlls/oleaut32/tests/vartest.c
View file @
0e8b75bb
...
...
@@ -314,7 +314,7 @@ static void test_VariantClear(void)
VARIANTARG
v
;
VARIANT
v2
;
size_t
i
;
long
i4
;
LONG
i4
;
IUnknown
*
punk
;
#if 0
...
...
dlls/oleaut32/tests/vartype.c
View file @
0e8b75bb
...
...
@@ -3499,7 +3499,7 @@ static void test_VarDateChangeTypeEx(void)
"expected " #x "*CY_MULTIPLIER, got (%8lx %8lx); hres=0x%08lx\n", S(out).Hi, S(out).Lo, hres)
#define EXPECTCY64(x,y) \
ok(hres == S_OK && S(out).Hi == (
long
)x && S(out).Lo == y, \
ok(hres == S_OK && S(out).Hi == (
LONG
)x && S(out).Lo == y, \
"expected " #x #y "(%lu,%lu), got (%lu,%lu); hres=0x%08lx\n", \
(ULONG)(x), (ULONG)(y), S(out).Hi, S(out).Lo, hres)
...
...
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