Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e1635e9a
Commit
e1635e9a
authored
Feb 28, 2001
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed dependency on comctl32.
parent
880cd395
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
12 deletions
+0
-12
info.c
dlls/winspool/info.c
+0
-0
wspool.c
dlls/winspool/wspool.c
+0
-12
No files found.
dlls/winspool/info.c
View file @
e1635e9a
This diff is collapsed.
Click to expand it.
dlls/winspool/wspool.c
View file @
e1635e9a
...
...
@@ -5,15 +5,10 @@
* Copyright 1999 Thuy Nguyen
*/
#include "commctrl.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
winspool
);
HINSTANCE
hcomctl32
=
0
;
HDPA
WINAPI
(
*
WINSPOOL_DPA_CreateEx
)(
INT
,
HANDLE
);
LPVOID
WINAPI
(
*
WINSPOOL_DPA_GetPtr
)(
const
HDPA
,
INT
);
INT
WINAPI
(
*
WINSPOOL_DPA_InsertPtr
)(
const
HDPA
,
INT
,
LPVOID
);
/******************************************************************************
* WINSPOOL_EntryPoint
...
...
@@ -28,16 +23,9 @@ BOOL WINAPI WINSPOOL_EntryPoint(HINSTANCE hInstance,
switch
(
reason
)
{
case
DLL_PROCESS_ATTACH
:
hcomctl32
=
LoadLibraryA
(
"COMCTL32.DLL"
);
WINSPOOL_DPA_CreateEx
=
(
void
*
)
GetProcAddress
(
hcomctl32
,
(
LPCSTR
)
340L
);
WINSPOOL_DPA_GetPtr
=
(
void
*
)
GetProcAddress
(
hcomctl32
,
(
LPCSTR
)
332L
);
WINSPOOL_DPA_InsertPtr
=
(
void
*
)
GetProcAddress
(
hcomctl32
,
(
LPCSTR
)
334L
);
break
;
case
DLL_PROCESS_DETACH
:
FreeLibrary
(
hcomctl32
);
break
;
}
...
...
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