include: Wrap exported function in extern C.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
00c57ad89a
commit
0805783df3
|
@ -23,6 +23,10 @@
|
|||
#include <mmreg.h>
|
||||
#include <avrt.h>
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if !defined(MF_VERSION)
|
||||
/* Default to Windows XP */
|
||||
#define MF_SDK_VERSION 0x0001
|
||||
|
@ -95,4 +99,8 @@ HRESULT WINAPI MFTUnregister(CLSID clsid);
|
|||
HRESULT WINAPI MFTUnregisterLocal(IClassFactory *factory);
|
||||
HRESULT WINAPI MFGetPluginControl(IMFPluginControl**);
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_MFAPI_H */
|
||||
|
|
Loading…
Reference in New Issue