Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e479273a
Commit
e479273a
authored
Oct 20, 2010
by
Aric Stewart
Committed by
Alexandre Julliard
Oct 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Implement OLE registration in AMovieDllRegisterServer2.
parent
58468ef1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
107 additions
and
205 deletions
+107
-205
Makefile.in
dlls/qcap/Makefile.in
+0
-1
dllsetup.c
dlls/qcap/dllsetup.c
+0
-161
dllsetup.h
dlls/qcap/dllsetup.h
+0
-38
qcap_main.c
dlls/qcap/qcap_main.c
+2
-5
dllfunc.c
dlls/strmbase/dllfunc.c
+105
-0
No files found.
dlls/qcap/Makefile.in
View file @
e479273a
...
...
@@ -3,7 +3,6 @@ IMPORTS = strmiids strmbase uuid ole32 gdi32 advapi32
C_SRCS
=
\
capturegraph.c
\
dllsetup.c
\
enummedia.c
\
qcap_main.c
\
v4l.c
\
...
...
dlls/qcap/dllsetup.c
deleted
100644 → 0
View file @
58468ef1
/*
* DirectX DLL registration and unregistration
*
* Copyright (C) 2005 Rolf Kalbermatter
*
* 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
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include <assert.h>
#define COBJMACROS
#define NONAMELESSSTRUCT
#define NONAMELESSUNION
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winerror.h"
#include "winreg.h"
#include "objbase.h"
#include "uuids.h"
#include "strmif.h"
#include "wine/strmbase.h"
#include "dllsetup.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
qcap
);
/*
* defines and constants
*/
#define MAX_KEY_LEN 260
static
WCHAR
const
clsid_keyname
[
6
]
=
{
'C'
,
'L'
,
'S'
,
'I'
,
'D'
,
0
};
static
WCHAR
const
ips32_keyname
[
15
]
=
{
'I'
,
'n'
,
'P'
,
'r'
,
'o'
,
'c'
,
'S'
,
'e'
,
'r'
,
'v'
,
'e'
,
'r'
,
'3'
,
'2'
,
0
};
static
WCHAR
const
tmodel_keyname
[
15
]
=
{
'T'
,
'h'
,
'r'
,
'e'
,
'a'
,
'd'
,
'i'
,
'n'
,
'g'
,
'M'
,
'o'
,
'd'
,
'e'
,
'l'
,
0
};
static
WCHAR
const
tmodel_both
[]
=
{
'B'
,
'o'
,
't'
,
'h'
,
0
};
/*
* SetupRegisterClass()
*/
static
HRESULT
SetupRegisterClass
(
HKEY
clsid
,
LPCWSTR
szCLSID
,
LPCWSTR
szDescription
,
LPCWSTR
szFileName
,
LPCWSTR
szServerType
,
LPCWSTR
szThreadingModel
)
{
HKEY
hkey
,
hsubkey
=
NULL
;
LONG
ret
=
RegCreateKeyW
(
clsid
,
szCLSID
,
&
hkey
);
if
(
ERROR_SUCCESS
!=
ret
)
return
HRESULT_FROM_WIN32
(
ret
);
/* set description string */
ret
=
RegSetValueW
(
hkey
,
NULL
,
REG_SZ
,
szDescription
,
sizeof
(
WCHAR
)
*
(
lstrlenW
(
szDescription
)
+
1
));
if
(
ERROR_SUCCESS
!=
ret
)
goto
err_out
;
/* create CLSID\\{"CLSID"}\\"ServerType" key, using key to CLSID\\{"CLSID"}
passed back by last call to RegCreateKeyW(). */
ret
=
RegCreateKeyW
(
hkey
,
szServerType
,
&
hsubkey
);
if
(
ERROR_SUCCESS
!=
ret
)
goto
err_out
;
/* set server path */
ret
=
RegSetValueW
(
hsubkey
,
NULL
,
REG_SZ
,
szFileName
,
sizeof
(
WCHAR
)
*
(
lstrlenW
(
szFileName
)
+
1
));
if
(
ERROR_SUCCESS
!=
ret
)
goto
err_out
;
/* set threading model */
ret
=
RegSetValueExW
(
hsubkey
,
tmodel_keyname
,
0L
,
REG_SZ
,
(
const
BYTE
*
)
szThreadingModel
,
sizeof
(
WCHAR
)
*
(
lstrlenW
(
szThreadingModel
)
+
1
));
err_out:
if
(
hsubkey
)
RegCloseKey
(
hsubkey
);
RegCloseKey
(
hkey
);
return
HRESULT_FROM_WIN32
(
ret
);
}
/*
* RegisterAllClasses()
*/
static
HRESULT
SetupRegisterAllClasses
(
const
FactoryTemplate
*
pList
,
int
num
,
LPCWSTR
szFileName
,
BOOL
bRegister
)
{
HRESULT
hr
=
NOERROR
;
HKEY
hkey
;
OLECHAR
szCLSID
[
CHARS_IN_GUID
];
LONG
i
,
ret
=
RegCreateKeyW
(
HKEY_CLASSES_ROOT
,
clsid_keyname
,
&
hkey
);
if
(
ERROR_SUCCESS
!=
ret
)
return
HRESULT_FROM_WIN32
(
ret
);
for
(
i
=
0
;
i
<
num
;
i
++
,
pList
++
)
{
/* (un)register CLSID and InprocServer32 */
hr
=
StringFromGUID2
(
pList
->
m_ClsID
,
szCLSID
,
CHARS_IN_GUID
);
if
(
SUCCEEDED
(
hr
))
{
if
(
bRegister
)
hr
=
SetupRegisterClass
(
hkey
,
szCLSID
,
pList
->
m_Name
,
szFileName
,
ips32_keyname
,
tmodel_both
);
else
hr
=
RegDeleteTreeW
(
hkey
,
szCLSID
);
}
}
RegCloseKey
(
hkey
);
return
hr
;
}
/****************************************************************************
* SetupRegisterServers
*
* This function is table driven using the static members of the
* CFactoryTemplate class defined in the Dll.
*
* It registers the Dll as the InprocServer32 for all the classes in
* CFactoryTemplate
*
****************************************************************************/
HRESULT
SetupRegisterServers
(
const
FactoryTemplate
*
pList
,
int
num
,
BOOL
bRegister
)
{
static
const
WCHAR
szFileName
[]
=
{
'q'
,
'c'
,
'a'
,
'p'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
HRESULT
hr
=
NOERROR
;
/* first register all server classes, just to make sure */
if
(
bRegister
)
hr
=
SetupRegisterAllClasses
(
pList
,
num
,
szFileName
,
TRUE
);
hr
=
AMovieDllRegisterServer2
(
bRegister
);
/* if unregistering, unregister all OLE servers */
if
(
SUCCEEDED
(
hr
)
&&
!
bRegister
)
hr
=
SetupRegisterAllClasses
(
pList
,
num
,
szFileName
,
FALSE
);
return
hr
;
}
dlls/qcap/dllsetup.h
deleted
100644 → 0
View file @
58468ef1
/*
* DirectX DLL registration and unregistration
*
* Copyright (C) 2005 Rolf Kalbermatter
*
* 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
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef _QCAP_DLLSETUP_H_DEFINED
#define _QCAP_DLLSETUP_H_DEFINED
#define COBJMACROS
/****************************************************************************
* SetupRegisterServers
*
* This function is table driven using the static members of the
* CFactoryTemplate class defined in the Dll.
*
* It registers the Dll as the InprocServer32 for all the classes in
* CFactoryTemplate
*
****************************************************************************/
extern
HRESULT
SetupRegisterServers
(
const
FactoryTemplate
*
pList
,
int
num
,
BOOL
bRegister
);
#endif
/* _QCAP_DLLSETUP_H_DEFINED */
dlls/qcap/qcap_main.c
View file @
e479273a
...
...
@@ -37,7 +37,6 @@
#include "strmif.h"
#include "qcap_main.h"
#include "dllsetup.h"
#include "wine/unicode.h"
#include "wine/debug.h"
...
...
@@ -163,8 +162,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
TRACE
(
"()
\n
"
);
return
SetupRegisterServers
(
g_Templates
,
g_cTemplates
,
TRUE
);
return
AMovieDllRegisterServer2
(
TRUE
);
}
/***********************************************************************
...
...
@@ -173,8 +171,7 @@ HRESULT WINAPI DllRegisterServer(void)
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
TRACE
(
"
\n
"
);
return
SetupRegisterServers
(
g_Templates
,
g_cTemplates
,
FALSE
);
return
AMovieDllRegisterServer2
(
FALSE
);
}
/***********************************************************************
...
...
dlls/strmbase/dllfunc.c
View file @
e479273a
...
...
@@ -45,6 +45,96 @@ WINE_DEFAULT_DEBUG_CHANNEL(strmbase);
extern
const
int
g_cTemplates
;
extern
const
FactoryTemplate
g_Templates
[];
static
HINSTANCE
g_hInst
=
NULL
;
/*
* defines and constants
*/
#define MAX_KEY_LEN 260
static
WCHAR
const
clsid_keyname
[
6
]
=
{
'C'
,
'L'
,
'S'
,
'I'
,
'D'
,
0
};
static
WCHAR
const
ips32_keyname
[
15
]
=
{
'I'
,
'n'
,
'P'
,
'r'
,
'o'
,
'c'
,
'S'
,
'e'
,
'r'
,
'v'
,
'e'
,
'r'
,
'3'
,
'2'
,
0
};
static
WCHAR
const
tmodel_keyname
[
15
]
=
{
'T'
,
'h'
,
'r'
,
'e'
,
'a'
,
'd'
,
'i'
,
'n'
,
'g'
,
'M'
,
'o'
,
'd'
,
'e'
,
'l'
,
0
};
static
WCHAR
const
tmodel_both
[]
=
{
'B'
,
'o'
,
't'
,
'h'
,
0
};
/*
* SetupRegisterClass()
*/
static
HRESULT
SetupRegisterClass
(
HKEY
clsid
,
LPCWSTR
szCLSID
,
LPCWSTR
szDescription
,
LPCWSTR
szFileName
,
LPCWSTR
szServerType
,
LPCWSTR
szThreadingModel
)
{
HKEY
hkey
,
hsubkey
=
NULL
;
LONG
ret
=
RegCreateKeyW
(
clsid
,
szCLSID
,
&
hkey
);
if
(
ERROR_SUCCESS
!=
ret
)
return
HRESULT_FROM_WIN32
(
ret
);
/* set description string */
ret
=
RegSetValueW
(
hkey
,
NULL
,
REG_SZ
,
szDescription
,
sizeof
(
WCHAR
)
*
(
lstrlenW
(
szDescription
)
+
1
));
if
(
ERROR_SUCCESS
!=
ret
)
goto
err_out
;
/* create CLSID\\{"CLSID"}\\"ServerType" key, using key to CLSID\\{"CLSID"}
passed back by last call to RegCreateKeyW(). */
ret
=
RegCreateKeyW
(
hkey
,
szServerType
,
&
hsubkey
);
if
(
ERROR_SUCCESS
!=
ret
)
goto
err_out
;
/* set server path */
ret
=
RegSetValueW
(
hsubkey
,
NULL
,
REG_SZ
,
szFileName
,
sizeof
(
WCHAR
)
*
(
lstrlenW
(
szFileName
)
+
1
));
if
(
ERROR_SUCCESS
!=
ret
)
goto
err_out
;
/* set threading model */
ret
=
RegSetValueExW
(
hsubkey
,
tmodel_keyname
,
0L
,
REG_SZ
,
(
const
BYTE
*
)
szThreadingModel
,
sizeof
(
WCHAR
)
*
(
lstrlenW
(
szThreadingModel
)
+
1
));
err_out:
if
(
hsubkey
)
RegCloseKey
(
hsubkey
);
RegCloseKey
(
hkey
);
return
HRESULT_FROM_WIN32
(
ret
);
}
/*
* RegisterAllClasses()
*/
static
HRESULT
SetupRegisterAllClasses
(
const
FactoryTemplate
*
pList
,
int
num
,
LPCWSTR
szFileName
,
BOOL
bRegister
)
{
HRESULT
hr
=
NOERROR
;
HKEY
hkey
;
OLECHAR
szCLSID
[
CHARS_IN_GUID
];
LONG
i
,
ret
=
RegCreateKeyW
(
HKEY_CLASSES_ROOT
,
clsid_keyname
,
&
hkey
);
if
(
ERROR_SUCCESS
!=
ret
)
return
HRESULT_FROM_WIN32
(
ret
);
for
(
i
=
0
;
i
<
num
;
i
++
,
pList
++
)
{
/* (un)register CLSID and InprocServer32 */
hr
=
StringFromGUID2
(
pList
->
m_ClsID
,
szCLSID
,
CHARS_IN_GUID
);
if
(
SUCCEEDED
(
hr
))
{
if
(
bRegister
)
hr
=
SetupRegisterClass
(
hkey
,
szCLSID
,
pList
->
m_Name
,
szFileName
,
ips32_keyname
,
tmodel_both
);
else
hr
=
RegDeleteTreeW
(
hkey
,
szCLSID
);
}
}
RegCloseKey
(
hkey
);
return
hr
;
}
HRESULT
WINAPI
AMovieSetupRegisterFilter2
(
const
AMOVIESETUP_FILTER
const
*
pFilter
,
IFilterMapper2
*
pIFM2
,
BOOL
bRegister
)
{
if
(
!
pFilter
)
...
...
@@ -71,6 +161,16 @@ HRESULT WINAPI AMovieDllRegisterServer2(BOOL bRegister)
HRESULT
hr
;
int
i
;
IFilterMapper2
*
pIFM2
=
NULL
;
WCHAR
szFileName
[
MAX_PATH
];
if
(
!
GetModuleFileNameW
(
g_hInst
,
szFileName
,
MAX_PATH
))
{
ERR
(
"Failed to get module file name for registration
\n
"
);
return
E_FAIL
;
}
if
(
bRegister
)
hr
=
SetupRegisterAllClasses
(
g_Templates
,
g_cTemplates
,
szFileName
,
TRUE
);
hr
=
CoInitialize
(
NULL
);
...
...
@@ -89,6 +189,10 @@ HRESULT WINAPI AMovieDllRegisterServer2(BOOL bRegister)
CoFreeUnusedLibraries
();
CoUninitialize
();
/* if unregistering, unregister all OLE servers */
if
(
SUCCEEDED
(
hr
)
&&
!
bRegister
)
hr
=
SetupRegisterAllClasses
(
g_Templates
,
g_cTemplates
,
szFileName
,
FALSE
);
return
hr
;
}
...
...
@@ -119,6 +223,7 @@ BOOL WINAPI STRMBASE_DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
g_hInst
=
hInstDLL
;
DisableThreadLibraryCalls
(
hInstDLL
);
SetupInitializeServers
(
g_Templates
,
g_cTemplates
,
TRUE
);
break
;
...
...
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