mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 06:58:10 +00:00
[QEDIT] Sync with Wine Staging 3.3. CORE-14434
This commit is contained in:
parent
7fdc682155
commit
d3e7f8dd2d
8 changed files with 66 additions and 23 deletions
|
@ -8,7 +8,7 @@ list(APPEND SOURCE
|
||||||
mediadet.c
|
mediadet.c
|
||||||
samplegrabber.c
|
samplegrabber.c
|
||||||
timeline.c
|
timeline.c
|
||||||
qedit_private.h)
|
precomp.h)
|
||||||
|
|
||||||
add_library(qedit SHARED
|
add_library(qedit SHARED
|
||||||
${SOURCE}
|
${SOURCE}
|
||||||
|
@ -18,5 +18,5 @@ add_library(qedit SHARED
|
||||||
set_module_type(qedit win32dll)
|
set_module_type(qedit win32dll)
|
||||||
target_link_libraries(qedit strmbase strmiids uuid wine)
|
target_link_libraries(qedit strmbase strmiids uuid wine)
|
||||||
add_importlibs(qedit ole32 oleaut32 msvcrt kernel32 ntdll)
|
add_importlibs(qedit ole32 oleaut32 msvcrt kernel32 ntdll)
|
||||||
add_pch(qedit qedit_private.h SOURCE)
|
add_pch(qedit precomp.h SOURCE)
|
||||||
add_cd_file(TARGET qedit DESTINATION reactos/system32 FOR all)
|
add_cd_file(TARGET qedit DESTINATION reactos/system32 FOR all)
|
||||||
|
|
|
@ -18,8 +18,10 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qedit_private.h"
|
#include "qedit_private.h"
|
||||||
|
#include "rpcproxy.h"
|
||||||
|
#include "wine/debug.h"
|
||||||
|
|
||||||
#include <rpcproxy.h>
|
WINE_DEFAULT_DEBUG_CHANNEL(qedit);
|
||||||
|
|
||||||
static HINSTANCE instance;
|
static HINSTANCE instance;
|
||||||
|
|
||||||
|
|
|
@ -17,10 +17,20 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qedit_private.h"
|
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <oleauto.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#define COBJMACROS
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
|
#include "winbase.h"
|
||||||
|
#include "winuser.h"
|
||||||
|
#include "ole2.h"
|
||||||
|
|
||||||
|
#include "qedit_private.h"
|
||||||
|
#include "wine/debug.h"
|
||||||
|
|
||||||
|
WINE_DEFAULT_DEBUG_CHANNEL(qedit);
|
||||||
|
|
||||||
typedef struct MediaDetImpl {
|
typedef struct MediaDetImpl {
|
||||||
IUnknown IUnknown_inner;
|
IUnknown IUnknown_inner;
|
||||||
|
|
13
dll/directx/wine/qedit/precomp.h
Normal file
13
dll/directx/wine/qedit/precomp.h
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
#ifndef _QEDIT_PRECOMP_H_
|
||||||
|
#define _QEDIT_PRECOMP_H_
|
||||||
|
|
||||||
|
#define WIN32_LEAN_AND_MEAN
|
||||||
|
#define WIN32_NO_STATUS
|
||||||
|
#define _INC_WINDOWS
|
||||||
|
|
||||||
|
#include "qedit_private.h"
|
||||||
|
|
||||||
|
#include <wine/debug.h>
|
||||||
|
|
||||||
|
#endif /* !_QEDIT_PRECOMP_H_ */
|
|
@ -22,22 +22,15 @@
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
#define WIN32_NO_STATUS
|
|
||||||
#define _INC_WINDOWS
|
|
||||||
#define COM_NO_WINDOWS_H
|
|
||||||
|
|
||||||
#define COBJMACROS
|
#define COBJMACROS
|
||||||
|
|
||||||
#include <windef.h>
|
#include "windef.h"
|
||||||
#include <winbase.h>
|
#include "winbase.h"
|
||||||
#include <objbase.h>
|
#include "wtypes.h"
|
||||||
#include <dshow.h>
|
#include "wingdi.h"
|
||||||
#define __WINE_DDRAW_H /* ROS HACK */
|
#include "winuser.h"
|
||||||
#include <qedit.h>
|
#include "dshow.h"
|
||||||
|
#include "qedit.h"
|
||||||
#include <wine/debug.h>
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(qedit);
|
|
||||||
|
|
||||||
HRESULT AMTimeline_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
HRESULT AMTimeline_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
||||||
HRESULT MediaDet_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
HRESULT MediaDet_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
||||||
|
|
|
@ -17,9 +17,21 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qedit_private.h"
|
#include <assert.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
#include <wine/strmbase.h>
|
#define COBJMACROS
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
|
#include "winbase.h"
|
||||||
|
#include "winuser.h"
|
||||||
|
#include "ole2.h"
|
||||||
|
|
||||||
|
#include "qedit_private.h"
|
||||||
|
#include "wine/debug.h"
|
||||||
|
#include "wine/strmbase.h"
|
||||||
|
|
||||||
|
WINE_DEFAULT_DEBUG_CHANNEL(qedit);
|
||||||
|
|
||||||
static const WCHAR vendor_name[] = { 'W', 'i', 'n', 'e', 0 };
|
static const WCHAR vendor_name[] = { 'W', 'i', 'n', 'e', 0 };
|
||||||
static const WCHAR pin_in_name[] = { 'I', 'n', 0 };
|
static const WCHAR pin_in_name[] = { 'I', 'n', 0 };
|
||||||
|
|
|
@ -17,7 +17,20 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#define COBJMACROS
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
|
#include "winbase.h"
|
||||||
|
#include "winuser.h"
|
||||||
|
#include "ole2.h"
|
||||||
|
|
||||||
#include "qedit_private.h"
|
#include "qedit_private.h"
|
||||||
|
#include "wine/debug.h"
|
||||||
|
|
||||||
|
WINE_DEFAULT_DEBUG_CHANNEL(qedit);
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
IUnknown IUnknown_inner;
|
IUnknown IUnknown_inner;
|
||||||
|
|
|
@ -38,7 +38,7 @@ reactos/dll/directx/wine/dplayx # Synced to WineStaging-3.3
|
||||||
reactos/dll/directx/wine/dsound # Synced to Wine-1.3.29
|
reactos/dll/directx/wine/dsound # Synced to Wine-1.3.29
|
||||||
reactos/dll/directx/wine/dxdiagn # Synced to WineStaging-3.3
|
reactos/dll/directx/wine/dxdiagn # Synced to WineStaging-3.3
|
||||||
reactos/dll/directx/wine/msdmo # Synced to WineStaging-3.3
|
reactos/dll/directx/wine/msdmo # Synced to WineStaging-3.3
|
||||||
reactos/dll/directx/wine/qedit # Synced to Wine-3.0
|
reactos/dll/directx/wine/qedit # Synced to WineStaging-3.3
|
||||||
reactos/dll/directx/wine/quartz # Synced to Wine-3.0
|
reactos/dll/directx/wine/quartz # Synced to Wine-3.0
|
||||||
reactos/dll/directx/wine/wined3d # Synced to WineStaging-3.3
|
reactos/dll/directx/wine/wined3d # Synced to WineStaging-3.3
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue