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
e84562a1
Commit
e84562a1
authored
Jun 12, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdmo: Improve the prototypes Win64 compatibility by replacing long with LONG.
parent
12042c04
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
dmoreg.c
dlls/msdmo/dmoreg.c
+4
-4
dmoreg.h
include/dmoreg.h
+2
-2
win32.api
tools/winapi/win32.api
+2
-2
No files found.
dlls/msdmo/dmoreg.c
View file @
e84562a1
...
...
@@ -650,11 +650,11 @@ static const IEnumDMOVtbl edmovt =
};
HRESULT
WINAPI
DMOGetTypes
(
REFCLSID
a
,
unsigned
long
b
,
unsigned
long
*
c
,
DMO_PARTIAL_MEDIATYPE
*
d
,
unsigned
long
e
,
unsigned
long
*
f
,
DMO_PARTIAL_MEDIATYPE
*
g
)
HRESULT
WINAPI
DMOGetTypes
(
REFCLSID
a
,
ULONG
b
,
ULONG
*
c
,
DMO_PARTIAL_MEDIATYPE
*
d
,
ULONG
e
,
ULONG
*
f
,
DMO_PARTIAL_MEDIATYPE
*
g
)
{
FIXME
(
"(%p,%
lu,%p,%p,%l
u,%p,%p),stub!
\n
"
,
a
,
b
,
c
,
d
,
e
,
f
,
g
);
FIXME
(
"(%p,%
u,%p,%p,%
u,%p,%p),stub!
\n
"
,
a
,
b
,
c
,
d
,
e
,
f
,
g
);
return
E_NOTIMPL
;
}
include/dmoreg.h
View file @
e84562a1
...
...
@@ -42,8 +42,8 @@ HRESULT WINAPI DMORegister(LPCWSTR,REFCLSID,REFGUID,DWORD,DWORD,const DMO_PARTIA
HRESULT
WINAPI
DMOUnregister
(
REFCLSID
,
REFGUID
);
HRESULT
WINAPI
DMOEnum
(
REFGUID
,
DWORD
,
DWORD
,
const
DMO_PARTIAL_MEDIATYPE
*
,
DWORD
,
const
DMO_PARTIAL_MEDIATYPE
*
,
IEnumDMO
**
);
HRESULT
WINAPI
DMOGetTypes
(
REFCLSID
,
unsigned
long
,
unsigned
long
*
,
DMO_PARTIAL_MEDIATYPE
*
,
unsigned
long
,
unsigned
long
*
,
DMO_PARTIAL_MEDIATYPE
*
);
HRESULT
WINAPI
DMOGetTypes
(
REFCLSID
,
ULONG
,
ULONG
*
,
DMO_PARTIAL_MEDIATYPE
*
,
ULONG
,
ULONG
*
,
DMO_PARTIAL_MEDIATYPE
*
);
HRESULT
WINAPI
DMOGetName
(
REFCLSID
,
WCHAR
*
);
DEFINE_GUID
(
DMOCATEGORY_AUDIO_DECODER
,
...
...
tools/winapi/win32.api
View file @
e84562a1
...
...
@@ -2305,7 +2305,7 @@ PWSTR
DWORD
HRESULT
unsigned long
ULONG
%ptr
...
...
@@ -2315,7 +2315,7 @@ DMO_PARTIAL_MEDIATYPE *
IEnumDMO **
REFCLSID
REFGUID
unsigned long
*
ULONG
*
%wstr
...
...
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