2010-02-12 Ozkan Sezer <sezeroz@gmail.com>

* dmoreg.h: Made it C++ compatible by adding extern "C" { ... }
	when __cplusplus ies defined.


git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1907 4407c894-4637-0410-b4f5-ada5f102cad1
This commit is contained in:
Ozkan Sezer 2010-02-12 15:27:50 +00:00
parent fd632b194d
commit b1f8ddebd9
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-02-12 Ozkan Sezer <sezeroz@gmail.com>
* dmoreg.h: Made it C++ compatible by adding extern "C" { ... }
when __cplusplus ies defined.
2010-02-12 Ozkan Sezer <sezeroz@gmail.com>
added dmodshow, medparam and qnetwork *.idl and *.h files from the

View File

@ -21,6 +21,10 @@
#include "mediaobj.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _DMO_PARTIAL_MEDIATYPE
{
GUID type;
@ -67,4 +71,9 @@ DEFINE_GUID(DMOCATEGORY_AUDIO_NOISE_SUPPRESS,
DEFINE_GUID(DMOCATEGORY_AGC,
0xe88c9ba0,0xc557,0x11d0,0x8a,0x2b,0x00,0xa0,0xc9,0x25,0x5a,0xc1);
#ifdef __cplusplus
}
#endif
#endif /* __DMOREG_H__ */