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
9e042653
Commit
9e042653
authored
Sep 26, 2006
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Sep 26, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d8: Remove no longer used imports.
parent
0ffe5a34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
15 deletions
+3
-15
d3d8_main.c
dlls/d3d8/d3d8_main.c
+3
-15
No files found.
dlls/d3d8/d3d8_main.c
View file @
9e042653
...
...
@@ -26,10 +26,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d8
);
void
(
*
wine_tsx11_lock_ptr
)(
void
)
=
NULL
;
void
(
*
wine_tsx11_unlock_ptr
)(
void
)
=
NULL
;
HRESULT
WINAPI
D3D8GetSWInfo
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
0
;
...
...
@@ -52,20 +48,12 @@ IDirect3D8* WINAPI Direct3DCreate8(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