2003-07-01 06:30:30 +02:00
|
|
|
/*
|
|
|
|
* includes for devenum.dll
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 John K. Hohm
|
|
|
|
* Copyright (C) 2002 Robert Shearman
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-07-01 06:30:30 +02:00
|
|
|
*
|
|
|
|
* NOTES ON FILE:
|
|
|
|
* - Private file where devenum globals are declared
|
|
|
|
*/
|
|
|
|
|
2010-05-28 01:39:56 +02:00
|
|
|
#ifndef RC_INVOKED
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2010-05-28 01:39:56 +02:00
|
|
|
#endif
|
2003-09-06 01:08:26 +02:00
|
|
|
|
2003-07-01 06:30:30 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2005-04-27 13:07:55 +02:00
|
|
|
#include "wingdi.h"
|
2003-07-01 06:30:30 +02:00
|
|
|
#include "winuser.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
|
2004-10-07 05:06:48 +02:00
|
|
|
#define COBJMACROS
|
|
|
|
|
2003-07-01 06:30:30 +02:00
|
|
|
#include "ole2.h"
|
|
|
|
#include "strmif.h"
|
2003-09-03 02:16:28 +02:00
|
|
|
#include "olectl.h"
|
2003-07-01 06:30:30 +02:00
|
|
|
#include "uuids.h"
|
|
|
|
|
2010-05-28 01:39:56 +02:00
|
|
|
#ifndef RC_INVOKED
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#endif
|
|
|
|
|
2003-07-01 06:30:30 +02:00
|
|
|
/**********************************************************************
|
|
|
|
* Dll lifetime tracking declaration for devenum.dll
|
|
|
|
*/
|
2011-05-13 16:43:26 +02:00
|
|
|
extern LONG dll_refs DECLSPEC_HIDDEN;
|
2004-12-07 15:37:11 +01:00
|
|
|
static inline void DEVENUM_LockModule(void) { InterlockedIncrement(&dll_refs); }
|
|
|
|
static inline void DEVENUM_UnlockModule(void) { InterlockedDecrement(&dll_refs); }
|
|
|
|
|
2018-03-07 03:57:08 +01:00
|
|
|
enum device_type
|
|
|
|
{
|
|
|
|
DEVICE_FILTER,
|
|
|
|
DEVICE_CODEC,
|
2018-06-25 00:20:29 +02:00
|
|
|
DEVICE_DMO,
|
2018-03-07 03:57:08 +01:00
|
|
|
};
|
|
|
|
|
2003-07-01 06:30:30 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
2012-04-03 00:18:39 +02:00
|
|
|
IMoniker IMoniker_iface;
|
2005-07-11 15:21:17 +02:00
|
|
|
LONG ref;
|
2018-03-07 03:57:09 +01:00
|
|
|
CLSID class;
|
|
|
|
BOOL has_class;
|
|
|
|
enum device_type type;
|
2018-06-25 00:20:29 +02:00
|
|
|
union
|
|
|
|
{
|
|
|
|
WCHAR *name; /* for filters and codecs */
|
|
|
|
CLSID clsid; /* for DMOs */
|
|
|
|
};
|
2003-07-01 06:30:30 +02:00
|
|
|
} MediaCatMoniker;
|
|
|
|
|
2011-05-13 16:43:26 +02:00
|
|
|
MediaCatMoniker * DEVENUM_IMediaCatMoniker_Construct(void) DECLSPEC_HIDDEN;
|
2018-03-07 03:57:08 +01:00
|
|
|
HRESULT create_EnumMoniker(REFCLSID class, IEnumMoniker **enum_mon) DECLSPEC_HIDDEN;
|
2003-07-01 06:30:30 +02:00
|
|
|
|
2012-04-04 10:43:12 +02:00
|
|
|
extern ICreateDevEnum DEVENUM_CreateDevEnum DECLSPEC_HIDDEN;
|
|
|
|
extern IParseDisplayName DEVENUM_ParseDisplayName DECLSPEC_HIDDEN;
|
2003-07-01 06:30:30 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Global string constant declarations
|
|
|
|
*/
|
2018-03-07 03:57:08 +01:00
|
|
|
|
2018-03-07 03:57:09 +01:00
|
|
|
static const WCHAR backslashW[] = {'\\',0};
|
2018-06-26 16:05:31 +02:00
|
|
|
static const WCHAR clsidW[] = {'C','L','S','I','D',0};
|
2018-03-07 03:57:08 +01:00
|
|
|
static const WCHAR instanceW[] = {'\\','I','n','s','t','a','n','c','e',0};
|
|
|
|
static const WCHAR wszActiveMovieKey[] = {'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'A','c','t','i','v','e','M','o','v','i','e','\\',
|
|
|
|
'd','e','v','e','n','u','m','\\',0};
|
2018-03-07 03:57:10 +01:00
|
|
|
static const WCHAR deviceW[] = {'@','d','e','v','i','c','e',':',0};
|
2018-06-25 00:20:29 +02:00
|
|
|
static const WCHAR dmoW[] = {'d','m','o',':',0};
|
|
|
|
static const WCHAR swW[] = {'s','w',':',0};
|
|
|
|
static const WCHAR cmW[] = {'c','m',':',0};
|