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
a9197358
Commit
a9197358
authored
Aug 27, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Specify calling convention explicitly in idl files where needed.
parent
c6668089
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
dxgi.idl
include/dxgi.idl
+1
-1
wined3d.idl
include/wine/wined3d.idl
+7
-7
No files found.
include/dxgi.idl
View file @
a9197358
...
...
@@ -329,7 +329,7 @@ interface IDXGIFactory : IDXGIObject
)
;
}
[
local
]
HRESULT
CreateDXGIFactory
(
REFIID
riid
,
void
**
factory
)
;
[
local
]
HRESULT
__stdcall
CreateDXGIFactory
(
REFIID
riid
,
void
**
factory
)
;
[
object
,
...
...
include/wine/wined3d.idl
View file @
a9197358
...
...
@@ -2107,7 +2107,7 @@ struct wined3d_shader_signature
struct
wined3d_parent_ops
{
void
(
*
wined3d_object_destroyed
)(
void
*
parent
)
;
void
(
__stdcall
*
wined3d_object_destroyed
)(
void
*
parent
)
;
}
;
interface
IWineD3DResource
;
...
...
@@ -2177,8 +2177,8 @@ interface IWineD3DDeviceParent : IUnknown
[
out
]
IWineD3DSwapChain
**
swapchain
)
;
}
typedef
ULONG
(
*
D3DCB_DESTROYSWAPCHAINFN
)(
IWineD3DSwapChain
*
pSwapChain
)
;
typedef
HRESULT
(
*
D3DCB_ENUMRESOURCES
)(
IWineD3DResource
*
resource
,
void
*
pData
)
;
typedef
ULONG
(
__stdcall
*
D3DCB_DESTROYSWAPCHAINFN
)(
IWineD3DSwapChain
*
pSwapChain
)
;
typedef
HRESULT
(
__stdcall
*
D3DCB_ENUMRESOURCES
)(
IWineD3DResource
*
resource
,
void
*
pData
)
;
[
object
,
...
...
@@ -3399,7 +3399,7 @@ interface IWineD3DDevice : IWineD3DBase
)
;
}
IWineD3D
*
WineDirect3DCreate
(
UINT
dxVersion
,
IUnknown
*
parent
)
;
IWineD3DClipper
*
WineDirect3DCreateClipper
(
IUnknown
*
parent
)
;
void
wined3d_mutex_lock
(
void
)
;
void
wined3d_mutex_unlock
(
void
)
;
IWineD3D
*
__stdcall
WineDirect3DCreate
(
UINT
dxVersion
,
IUnknown
*
parent
)
;
IWineD3DClipper
*
__stdcall
WineDirect3DCreateClipper
(
IUnknown
*
parent
)
;
void
__stdcall
wined3d_mutex_lock
(
void
)
;
void
__stdcall
wined3d_mutex_unlock
(
void
)
;
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