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
0ffe5a34
Commit
0ffe5a34
authored
Sep 26, 2006
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Sep 26, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: Remove no longer used imports.
parent
8b776d0a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
15 deletions
+3
-15
d3d9_main.c
dlls/d3d9/d3d9_main.c
+3
-15
No files found.
dlls/d3d9/d3d9_main.c
View file @
0ffe5a34
...
...
@@ -29,10 +29,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
static
int
D3DPERF_event_level
=
0
;
void
(
*
wine_tsx11_lock_ptr
)(
void
)
=
NULL
;
void
(
*
wine_tsx11_unlock_ptr
)(
void
)
=
NULL
;
HRESULT
WINAPI
D3D9GetSWInfo
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
0
;
...
...
@@ -55,20 +51,12 @@ IDirect3D9* WINAPI Direct3DCreate9(UINT SDKVersion) {
}
/* At process attach */
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDLL
,
DWORD
fdwReason
,
LPVOID
lpv
)
{
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDLL
,
DWORD
fdwReason
,
LPVOID
lpv
)
{
TRACE
(
"fdwReason=%ld
\n
"
,
fdwReason
);
if
(
fdwReason
==
DLL_PROCESS_ATTACH
)
{
HMODULE
mod
;
if
(
fdwReason
==
DLL_PROCESS_ATTACH
)
DisableThreadLibraryCalls
(
hInstDLL
);
mod
=
GetModuleHandleA
(
"winex11.drv"
);
if
(
mod
)
{
wine_tsx11_lock_ptr
=
(
void
*
)
GetProcAddress
(
mod
,
"wine_tsx11_lock"
);
wine_tsx11_unlock_ptr
=
(
void
*
)
GetProcAddress
(
mod
,
"wine_tsx11_unlock"
);
}
}
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