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
592b347c
Commit
592b347c
authored
Sep 17, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10core: Avoid LPSTR.
parent
d2d0c42b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
device.c
dlls/d3d10core/device.c
+2
-2
d3d10.idl
include/d3d10.idl
+3
-3
No files found.
dlls/d3d10core/device.c
View file @
592b347c
...
...
@@ -1610,8 +1610,8 @@ static void STDMETHODCALLTYPE d3d10_device_CheckCounterInfo(ID3D10Device *iface,
}
static
HRESULT
STDMETHODCALLTYPE
d3d10_device_CheckCounter
(
ID3D10Device
*
iface
,
const
D3D10_COUNTER_DESC
*
desc
,
D3D10_COUNTER_TYPE
*
type
,
UINT
*
active_counters
,
LPSTR
name
,
UINT
*
name_length
,
LPSTR
units
,
UINT
*
units_length
,
LPSTR
description
,
UINT
*
description_length
)
const
D3D10_COUNTER_DESC
*
desc
,
D3D10_COUNTER_TYPE
*
type
,
UINT
*
active_counters
,
char
*
name
,
UINT
*
name_length
,
char
*
units
,
UINT
*
units_length
,
char
*
description
,
UINT
*
description_length
)
{
FIXME
(
"iface %p, desc %p, type %p, active_counters %p, name %p, name_length %p,
\n
"
"
\t
units %p, units_length %p, description %p, description_length %p stub!
\n
"
,
...
...
include/d3d10.idl
View file @
592b347c
...
...
@@ -1559,11 +1559,11 @@ interface ID3D10Device : IUnknown
[
in
]
const
D3D10_COUNTER_DESC
*
pDesc
,
[
out
]
D3D10_COUNTER_TYPE
*
pType
,
[
out
]
UINT
*
pActiveCounters
,
[
out
]
LPSTR
szN
ame
,
[
out
]
char
*
n
ame
,
[
in
,
out
]
UINT
*
pNameLength
,
[
out
]
LPSTR
szU
nits
,
[
out
]
char
*
u
nits
,
[
in
,
out
]
UINT
*
pUnitsLength
,
[
out
]
LPSTR
szD
escription
,
[
out
]
char
*
d
escription
,
[
in
,
out
]
UINT
*
pDescriptionLength
)
;
UINT
GetCreationFlags
()
;
HRESULT
OpenSharedResource
(
...
...
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