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
86f5c279
Commit
86f5c279
authored
Aug 07, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfobjects.idl: Added new file.
parent
e0e2ee34
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
5 deletions
+42
-5
Makefile.in
include/Makefile.in
+1
-0
mfapi.h
include/mfapi.h
+5
-5
mfobjects.idl
include/mfobjects.idl
+0
-0
mmreg.h
include/mmreg.h
+36
-0
No files found.
include/Makefile.in
View file @
86f5c279
...
...
@@ -65,6 +65,7 @@ PUBLIC_IDL_H_SRCS = \
inspectable.idl
\
mediaobj.idl
\
metahost.idl
\
mfobjects.idl
\
mimeinfo.idl
\
mimeole.idl
\
mlang.idl
\
...
...
include/mfapi.h
View file @
86f5c279
...
...
@@ -19,15 +19,14 @@
#ifndef __WINE_MFAPI_H
#define __WINE_MFAPI_H
#include <mfobjects.h>
#include <mmreg.h>
#include <avrt.h>
#define MFSTARTUP_NOSOCKET 0x1
#define MFSTARTUP_LITE (MFSTARTUP_NOSOCKET)
#define MFSTARTUP_FULL 0
typedef
struct
_MFT_REGISTER_TYPE_INFO
{
GUID
guidMajorType
;
GUID
guidSubtype
;
}
MFT_REGISTER_TYPE_INFO
;
typedef
unsigned
__int64
MFWORKITEM_KEY
;
HRESULT
WINAPI
MFCancelWorkItem
(
MFWORKITEM_KEY
key
);
...
...
@@ -36,5 +35,6 @@ HRESULT WINAPI MFLockPlatform(void);
HRESULT
WINAPI
MFShutdown
(
void
);
HRESULT
WINAPI
MFStartup
(
ULONG
version
,
DWORD
flags
);
HRESULT
WINAPI
MFUnlockPlatform
(
void
);
HRESULT
WINAPI
MFGetPluginControl
(
IMFPluginControl
**
);
#endif
/* __WINE_MFAPI_H */
include/mfobjects.idl
0 → 100644
View file @
86f5c279
This diff is collapsed.
Click to expand it.
include/mmreg.h
View file @
86f5c279
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WIDL__
#ifndef __WINE_MMREG_H
#define __WINE_MMREG_H
...
...
@@ -509,3 +511,37 @@ typedef struct tagEXBMINFOHEADER {
#endif
#endif
/* __WINE_MMREG_H */
#else
/* __WIDL__ */
cpp_quote
(
"#if 0"
)
#pragma pack(push, 1)
typedef
struct
tWAVEFORMATEX
{
WORD
wFormatTag
;
WORD
nChannels
;
DWORD
nSamplesPerSec
;
DWORD
nAvgBytesPerSec
;
WORD
nBlockAlign
;
WORD
wBitsPerSample
;
WORD
cbSize
;
[
size_is
(
cbSize
)]
BYTE
pExtraBytes
[];
}
WAVEFORMATEX
,
*
PWAVEFORMATEX
,
*
NPWAVEFORMATEX
,
*
LPWAVEFORMATEX
;
typedef
struct
{
WORD
wFormatTag
;
WORD
nChannels
;
DWORD
nSamplesPerSec
;
DWORD
nAvgBytesPerSec
;
WORD
nBlockAlign
;
WORD
wBitsPerSample
;
WORD
cbSize
;
WORD
wValidBitsPerSample
;
DWORD
dwChannelMask
;
GUID
SubFormat
;
}
WAVEFORMATEXTENSIBLE
,
*
PWAVEFORMATEXTENSIBLE
;
#pragma pack(pop)
cpp_quote
(
"#endif"
)
#endif
/* __WIDL__ */
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