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
ca7ce167
Commit
ca7ce167
authored
Jun 16, 2015
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jun 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler_46: Add stub dll.
parent
86a7f329
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
104 additions
and
0 deletions
+104
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/d3dcompiler_46/Makefile.in
+6
-0
d3dcompiler_46.spec
dlls/d3dcompiler_46/d3dcompiler_46.spec
+25
-0
d3dcompiler_46_main.c
dlls/d3dcompiler_46/d3dcompiler_46_main.c
+42
-0
version.rc
dlls/d3dcompiler_46/version.rc
+27
-0
make_specfiles
tools/make_specfiles
+1
-0
No files found.
configure
View file @
ca7ce167
...
...
@@ -984,6 +984,7 @@ enable_d3dcompiler_40
enable_d3dcompiler_41
enable_d3dcompiler_42
enable_d3dcompiler_43
enable_d3dcompiler_46
enable_d3dim
enable_d3drm
enable_d3dx10_33
...
...
@@ -17179,6 +17180,7 @@ wine_fn_config_dll d3dcompiler_41 enable_d3dcompiler_41
wine_fn_config_dll d3dcompiler_42 enable_d3dcompiler_42
wine_fn_config_dll d3dcompiler_43 enable_d3dcompiler_43 implib d3dcompiler
wine_fn_config_test dlls/d3dcompiler_43/tests d3dcompiler_43_test
wine_fn_config_dll d3dcompiler_46 enable_d3dcompiler_46
wine_fn_config_dll d3dim enable_d3dim implib
wine_fn_config_dll d3drm enable_d3drm implib
wine_fn_config_test dlls/d3drm/tests d3drm_test
...
...
configure.ac
View file @
ca7ce167
...
...
@@ -2856,6 +2856,7 @@ WINE_CONFIG_DLL(d3dcompiler_41)
WINE_CONFIG_DLL(d3dcompiler_42)
WINE_CONFIG_DLL(d3dcompiler_43,,[implib],[d3dcompiler])
WINE_CONFIG_TEST(dlls/d3dcompiler_43/tests)
WINE_CONFIG_DLL(d3dcompiler_46)
WINE_CONFIG_DLL(d3dim,,[implib])
WINE_CONFIG_DLL(d3drm,,[implib])
WINE_CONFIG_TEST(dlls/d3drm/tests)
...
...
dlls/d3dcompiler_46/Makefile.in
0 → 100644
View file @
ca7ce167
MODULE
=
d3dcompiler_46.dll
C_SRCS
=
\
d3dcompiler_46_main.c
RC_SRCS
=
version.rc
dlls/d3dcompiler_46/d3dcompiler_46.spec
0 → 100644
View file @
ca7ce167
@ stdcall D3DAssemble(ptr long str ptr ptr long ptr ptr) d3dcompiler_43.D3DAssemble
@ stdcall D3DCompile(ptr long str ptr ptr str str long long ptr ptr) d3dcompiler_43.D3DCompile
@ stub D3DCompile2
@ stub D3DCompileFromFile
@ stub D3DCompressShaders
@ stdcall D3DCreateBlob(long ptr) d3dcompiler_43.D3DCreateBlob
@ stub D3DDecompressShaders
@ stdcall D3DDisassemble(ptr long long ptr ptr) d3dcompiler_43.D3DDisassemble
@ stdcall D3DDisassemble10Effect(ptr long ptr) d3dcompiler_43.D3DDisassemble10Effect
@ stub D3DDisassemble11Trace
@ stub D3DDisassembleRegion
@ stdcall D3DGetBlobPart(ptr long long long ptr) d3dcompiler_43.D3DGetBlobPart
@ stdcall D3DGetDebugInfo(ptr long ptr) d3dcompiler_43.D3DGetDebugInfo
@ stdcall D3DGetInputAndOutputSignatureBlob(ptr long ptr) d3dcompiler_43.D3DGetInputAndOutputSignatureBlob
@ stdcall D3DGetInputSignatureBlob(ptr long ptr) d3dcompiler_43.D3DGetInputSignatureBlob
@ stdcall D3DGetOutputSignatureBlob(ptr long ptr) d3dcompiler_43.D3DGetOutputSignatureBlob
@ stub D3DGetTraceInstructionOffsets
@ stdcall D3DPreprocess(ptr long str ptr ptr ptr ptr) d3dcompiler_43.D3DPreprocess
@ stub D3DReadFileToBlob
@ stdcall D3DReflect(ptr long ptr ptr) d3dcompiler_43.D3DReflect
@ stub D3DReturnFailure1
@ stub D3DSetBlobPart
@ stdcall D3DStripShader(ptr long long ptr) d3dcompiler_43.D3DStripShader
@ stub D3DWriteBlobToFile
@ stub DebugSetMute
dlls/d3dcompiler_46/d3dcompiler_46_main.c
0 → 100644
View file @
ca7ce167
/*
* Direct3D shader compiler main file
*
* Copyright 2015 Alistair Leslie-Hughes
*
* 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 "wine/port.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
BOOL
WINAPI
DllMain
(
HINSTANCE
instance
,
DWORD
reason
,
void
*
reserved
)
{
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
instance
);
break
;
}
return
TRUE
;
}
dlls/d3dcompiler_46/version.rc
0 → 100644
View file @
ca7ce167
/*
* Copyright 2015 Alistair Leslie-Hughes
*
* 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
*
*/
#define WINE_FILEDESCRIPTION_STR "Wine D3DCompiler"
#define WINE_FILENAME_STR "d3dcompiler_46.dll"
#define WINE_FILEVERSION 9,30,9200,20789
#define WINE_FILEVERSION_STR "9.30.9200.20789"
#define WINE_PRODUCTVERSION 9,30,9200,20789
#define WINE_PRODUCTVERSION_STR "9.30.9200.20789"
#include "wine/wine_common_ver.rc"
tools/make_specfiles
View file @
ca7ce167
...
...
@@ -94,6 +94,7 @@ my @dll_groups =
],
[
"d3dcompiler_43"
,
"d3dcompiler_46"
,
"d3dcompiler_42"
,
"d3dcompiler_41"
,
"d3dcompiler_40"
,
...
...
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