Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
b1f2e33c
Commit
b1f2e33c
authored
Mar 24, 2014
by
Michael Müller
Committed by
Alexandre Julliard
Mar 25, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxva2: Added stub dll.
parent
f9862efa
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
84 additions
and
0 deletions
+84
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/dxva2/Makefile.in
+4
-0
dxva2.spec
dlls/dxva2/dxva2.spec
+37
-0
main.c
dlls/dxva2/main.c
+40
-0
No files found.
configure
View file @
b1f2e33c
...
@@ -1024,6 +1024,7 @@ enable_dwmapi
...
@@ -1024,6 +1024,7 @@ enable_dwmapi
enable_dwrite
enable_dwrite
enable_dxdiagn
enable_dxdiagn
enable_dxgi
enable_dxgi
enable_dxva2
enable_explorerframe
enable_explorerframe
enable_ext_ms_win_gdi_devcaps_l1_1_0
enable_ext_ms_win_gdi_devcaps_l1_1_0
enable_faultrep
enable_faultrep
...
@@ -16851,6 +16852,7 @@ wine_fn_config_lib dxerr9
...
@@ -16851,6 +16852,7 @@ wine_fn_config_lib dxerr9
wine_fn_config_dll dxgi enable_dxgi implib
wine_fn_config_dll dxgi enable_dxgi implib
wine_fn_config_test dlls/dxgi/tests dxgi_test
wine_fn_config_test dlls/dxgi/tests dxgi_test
wine_fn_config_lib dxguid
wine_fn_config_lib dxguid
wine_fn_config_dll dxva2 enable_dxva2
wine_fn_config_dll explorerframe enable_explorerframe clean
wine_fn_config_dll explorerframe enable_explorerframe clean
wine_fn_config_test dlls/explorerframe/tests explorerframe_test
wine_fn_config_test dlls/explorerframe/tests explorerframe_test
wine_fn_config_dll ext-ms-win-gdi-devcaps-l1-1-0 enable_ext_ms_win_gdi_devcaps_l1_1_0
wine_fn_config_dll ext-ms-win-gdi-devcaps-l1-1-0 enable_ext_ms_win_gdi_devcaps_l1_1_0
...
...
configure.ac
View file @
b1f2e33c
...
@@ -2855,6 +2855,7 @@ WINE_CONFIG_LIB(dxerr9)
...
@@ -2855,6 +2855,7 @@ WINE_CONFIG_LIB(dxerr9)
WINE_CONFIG_DLL(dxgi,,[implib])
WINE_CONFIG_DLL(dxgi,,[implib])
WINE_CONFIG_TEST(dlls/dxgi/tests)
WINE_CONFIG_TEST(dlls/dxgi/tests)
WINE_CONFIG_LIB(dxguid)
WINE_CONFIG_LIB(dxguid)
WINE_CONFIG_DLL(dxva2)
WINE_CONFIG_DLL(explorerframe,,[clean])
WINE_CONFIG_DLL(explorerframe,,[clean])
WINE_CONFIG_TEST(dlls/explorerframe/tests)
WINE_CONFIG_TEST(dlls/explorerframe/tests)
WINE_CONFIG_DLL(ext-ms-win-gdi-devcaps-l1-1-0)
WINE_CONFIG_DLL(ext-ms-win-gdi-devcaps-l1-1-0)
...
...
dlls/dxva2/Makefile.in
0 → 100644
View file @
b1f2e33c
MODULE
=
dxva2.dll
C_SRCS
=
\
main.c
dlls/dxva2/dxva2.spec
0 → 100644
View file @
b1f2e33c
@ stub CapabilitiesRequestAndCapabilitiesReply
@ stub DXVA2CreateDirect3DDeviceManager9
@ stub DXVA2CreateVideoService
@ stub DegaussMonitor
@ stub DestroyPhysicalMonitor
@ stub DestroyPhysicalMonitors
@ stub GetCapabilitiesStringLength
@ stub GetMonitorBrightness
@ stub GetMonitorCapabilities
@ stub GetMonitorColorTemperature
@ stub GetMonitorContrast
@ stub GetMonitorDisplayAreaPosition
@ stub GetMonitorDisplayAreaSize
@ stub GetMonitorRedGreenOrBlueDrive
@ stub GetMonitorRedGreenOrBlueGain
@ stub GetMonitorTechnologyType
@ stub GetNumberOfPhysicalMonitorsFromHMONITOR
@ stub GetNumberOfPhysicalMonitorsFromIDirect3DDevice9
@ stub GetPhysicalMonitorsFromHMONITOR
@ stub GetPhysicalMonitorsFromIDirect3DDevice9
@ stub GetTimingReport
@ stub GetVCPFeatureAndVCPFeatureReply
@ stub OPMGetVideoOutputsFromHMONITOR
@ stub OPMGetVideoOutputsFromIDirect3DDevice9Object
@ stub RestoreMonitorFactoryColorDefaults
@ stub RestoreMonitorFactoryDefaults
@ stub SaveCurrentMonitorSettings
@ stub SaveCurrentSettings
@ stub SetMonitorBrightness
@ stub SetMonitorColorTemperature
@ stub SetMonitorContrast
@ stub SetMonitorDisplayAreaPosition
@ stub SetMonitorDisplayAreaSize
@ stub SetMonitorRedGreenOrBlueDrive
@ stub SetMonitorRedGreenOrBlueGain
@ stub SetVCPFeature
@ stub UABGetCertificate
dlls/dxva2/main.c
0 → 100644
View file @
b1f2e33c
/*
* Copyright 2014 Michael Müller for Pipelight
*
* 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 <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dxva2
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"%p,%x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
}
return
TRUE
;
}
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