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
58f2a01e
Commit
58f2a01e
authored
Mar 19, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Use ULONG instead of unsigned long.
parent
2df012a0
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
18 deletions
+18
-18
dsurface.c
dlls/ddraw/tests/dsurface.c
+0
-0
refcount.c
dlls/ddraw/tests/refcount.c
+18
-18
No files found.
dlls/ddraw/tests/dsurface.c
View file @
58f2a01e
This diff is collapsed.
Click to expand it.
dlls/ddraw/tests/refcount.c
View file @
58f2a01e
...
@@ -33,7 +33,7 @@ static void init_function_pointers(void)
...
@@ -33,7 +33,7 @@ static void init_function_pointers(void)
pDirectDrawCreateEx
=
(
void
*
)
GetProcAddress
(
hmod
,
"DirectDrawCreateEx"
);
pDirectDrawCreateEx
=
(
void
*
)
GetProcAddress
(
hmod
,
"DirectDrawCreateEx"
);
}
}
static
unsigned
long
getRefcount
(
IUnknown
*
iface
)
static
ULONG
getRefcount
(
IUnknown
*
iface
)
{
{
IUnknown_AddRef
(
iface
);
IUnknown_AddRef
(
iface
);
return
IUnknown_Release
(
iface
);
return
IUnknown_Release
(
iface
);
...
@@ -42,7 +42,7 @@ static unsigned long getRefcount(IUnknown *iface)
...
@@ -42,7 +42,7 @@ static unsigned long getRefcount(IUnknown *iface)
static
void
test_ddraw_objects
(
void
)
static
void
test_ddraw_objects
(
void
)
{
{
HRESULT
hr
;
HRESULT
hr
;
unsigned
long
ref
;
ULONG
ref
;
IDirectDraw7
*
DDraw7
;
IDirectDraw7
*
DDraw7
;
IDirectDraw4
*
DDraw4
;
IDirectDraw4
*
DDraw4
;
IDirectDraw2
*
DDraw2
;
IDirectDraw2
*
DDraw2
;
...
@@ -70,7 +70,7 @@ static void test_ddraw_objects(void)
...
@@ -70,7 +70,7 @@ static void test_ddraw_objects(void)
ok
(
hr
==
DD_OK
,
"IDirectDraw7_QueryInterface returned %08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"IDirectDraw7_QueryInterface returned %08x
\n
"
,
hr
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
/* Fails without a cooplevel */
/* Fails without a cooplevel */
hr
=
IDirectDraw7_CreatePalette
(
DDraw7
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
hr
=
IDirectDraw7_CreatePalette
(
DDraw7
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
...
@@ -104,22 +104,22 @@ static void test_ddraw_objects(void)
...
@@ -104,22 +104,22 @@ static void test_ddraw_objects(void)
/* DDraw refcount increased by 1 */
/* DDraw refcount increased by 1 */
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ok
(
ref
==
2
,
"Got refcount %
l
d, expected 2
\n
"
,
ref
);
ok
(
ref
==
2
,
"Got refcount %d, expected 2
\n
"
,
ref
);
/* Surface refcount starts with 1 */
/* Surface refcount starts with 1 */
ref
=
getRefcount
(
(
IUnknown
*
)
surface
);
ref
=
getRefcount
(
(
IUnknown
*
)
surface
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
hr
=
IDirectDraw7_CreatePalette
(
DDraw7
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
hr
=
IDirectDraw7_CreatePalette
(
DDraw7
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
ok
(
hr
==
DD_OK
,
"CreatePalette returned %08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"CreatePalette returned %08x
\n
"
,
hr
);
/* DDraw refcount increased by 1 */
/* DDraw refcount increased by 1 */
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ok
(
ref
==
3
,
"Got refcount %
l
d, expected 3
\n
"
,
ref
);
ok
(
ref
==
3
,
"Got refcount %d, expected 3
\n
"
,
ref
);
/* Palette starts with 1 */
/* Palette starts with 1 */
ref
=
getRefcount
(
(
IUnknown
*
)
palette
);
ref
=
getRefcount
(
(
IUnknown
*
)
palette
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
/* Test attaching a palette to a surface */
/* Test attaching a palette to a surface */
hr
=
IDirectDrawSurface7_SetPalette
(
surface
,
palette
);
hr
=
IDirectDrawSurface7_SetPalette
(
surface
,
palette
);
...
@@ -127,64 +127,64 @@ static void test_ddraw_objects(void)
...
@@ -127,64 +127,64 @@ static void test_ddraw_objects(void)
/* Palette refcount increased, surface stays the same */
/* Palette refcount increased, surface stays the same */
ref
=
getRefcount
(
(
IUnknown
*
)
palette
);
ref
=
getRefcount
(
(
IUnknown
*
)
palette
);
ok
(
ref
==
2
,
"Got refcount %
l
d, expected 2
\n
"
,
ref
);
ok
(
ref
==
2
,
"Got refcount %d, expected 2
\n
"
,
ref
);
ref
=
getRefcount
(
(
IUnknown
*
)
surface
);
ref
=
getRefcount
(
(
IUnknown
*
)
surface
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
IDirectDrawSurface7_Release
(
surface
);
IDirectDrawSurface7_Release
(
surface
);
/* Increased before - decrease now */
/* Increased before - decrease now */
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ok
(
ref
==
2
,
"Got refcount %
l
d, expected 2
\n
"
,
ref
);
ok
(
ref
==
2
,
"Got refcount %d, expected 2
\n
"
,
ref
);
/* Releasing the surface detaches the palette */
/* Releasing the surface detaches the palette */
ref
=
getRefcount
(
(
IUnknown
*
)
palette
);
ref
=
getRefcount
(
(
IUnknown
*
)
palette
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
IDirectDrawPalette_Release
(
palette
);
IDirectDrawPalette_Release
(
palette
);
/* Increased before - decrease now */
/* Increased before - decrease now */
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw7
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
/* Not all interfaces are AddRefed when a palette is created */
/* Not all interfaces are AddRefed when a palette is created */
hr
=
IDirectDraw4_CreatePalette
(
DDraw4
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
hr
=
IDirectDraw4_CreatePalette
(
DDraw4
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
ok
(
hr
==
DD_OK
,
"CreatePalette returned %08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"CreatePalette returned %08x
\n
"
,
hr
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw4
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw4
);
ok
(
ref
==
2
,
"Got refcount %
l
d, expected 2
\n
"
,
ref
);
ok
(
ref
==
2
,
"Got refcount %d, expected 2
\n
"
,
ref
);
IDirectDrawPalette_Release
(
palette
);
IDirectDrawPalette_Release
(
palette
);
/* No addref here */
/* No addref here */
hr
=
IDirectDraw2_CreatePalette
(
DDraw2
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
hr
=
IDirectDraw2_CreatePalette
(
DDraw2
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
ok
(
hr
==
DD_OK
,
"CreatePalette returned %08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"CreatePalette returned %08x
\n
"
,
hr
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw2
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw2
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
IDirectDrawPalette_Release
(
palette
);
IDirectDrawPalette_Release
(
palette
);
/* No addref here */
/* No addref here */
hr
=
IDirectDraw_CreatePalette
(
DDraw1
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
hr
=
IDirectDraw_CreatePalette
(
DDraw1
,
DDPCAPS_ALLOW256
|
DDPCAPS_8BIT
,
Table
,
&
palette
,
NULL
);
ok
(
hr
==
DD_OK
,
"CreatePalette returned %08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"CreatePalette returned %08x
\n
"
,
hr
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw1
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw1
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
IDirectDrawPalette_Release
(
palette
);
IDirectDrawPalette_Release
(
palette
);
/* Similar for surfaces */
/* Similar for surfaces */
hr
=
IDirectDraw4_CreateSurface
(
DDraw4
,
&
ddsd
,
&
surface4
,
NULL
);
hr
=
IDirectDraw4_CreateSurface
(
DDraw4
,
&
ddsd
,
&
surface4
,
NULL
);
ok
(
hr
==
DD_OK
,
"CreateSurface returned %08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"CreateSurface returned %08x
\n
"
,
hr
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw4
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw4
);
ok
(
ref
==
2
,
"Got refcount %
l
d, expected 2
\n
"
,
ref
);
ok
(
ref
==
2
,
"Got refcount %d, expected 2
\n
"
,
ref
);
IDirectDrawSurface4_Release
(
surface4
);
IDirectDrawSurface4_Release
(
surface4
);
ddsd
.
dwSize
=
sizeof
(
DDSURFACEDESC
);
ddsd
.
dwSize
=
sizeof
(
DDSURFACEDESC
);
hr
=
IDirectDraw2_CreateSurface
(
DDraw2
,
(
DDSURFACEDESC
*
)
&
ddsd
,
&
surface1
,
NULL
);
hr
=
IDirectDraw2_CreateSurface
(
DDraw2
,
(
DDSURFACEDESC
*
)
&
ddsd
,
&
surface1
,
NULL
);
ok
(
hr
==
DD_OK
,
"CreateSurface returned %08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"CreateSurface returned %08x
\n
"
,
hr
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw2
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw2
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
IDirectDrawSurface_Release
(
surface1
);
IDirectDrawSurface_Release
(
surface1
);
hr
=
IDirectDraw_CreateSurface
(
DDraw1
,
(
DDSURFACEDESC
*
)
&
ddsd
,
&
surface1
,
NULL
);
hr
=
IDirectDraw_CreateSurface
(
DDraw1
,
(
DDSURFACEDESC
*
)
&
ddsd
,
&
surface1
,
NULL
);
ok
(
hr
==
DD_OK
,
"CreateSurface returned %08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"CreateSurface returned %08x
\n
"
,
hr
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw1
);
ref
=
getRefcount
(
(
IUnknown
*
)
DDraw1
);
ok
(
ref
==
1
,
"Got refcount %
l
d, expected 1
\n
"
,
ref
);
ok
(
ref
==
1
,
"Got refcount %d, expected 1
\n
"
,
ref
);
IDirectDrawSurface_Release
(
surface1
);
IDirectDrawSurface_Release
(
surface1
);
IDirectDraw7_Release
(
DDraw7
);
IDirectDraw7_Release
(
DDraw7
);
...
...
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