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
b655da64
Commit
b655da64
authored
Dec 05, 2007
by
Roy Shea
Committed by
Alexandre Julliard
Dec 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: Renamed bits_main.c to qmgr_main.c and updated comments.
parent
1cc75303
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
+12
-11
Makefile.in
dlls/qmgr/Makefile.in
+1
-1
qmgr_main.c
dlls/qmgr/qmgr_main.c
+11
-10
No files found.
dlls/qmgr/Makefile.in
View file @
b655da64
...
...
@@ -7,7 +7,7 @@ IMPORTS = kernel32
EXTRALIBS
=
C_SRCS
=
\
bits
_main.c
qmgr
_main.c
@MAKE_DLL_RULES@
...
...
dlls/qmgr/
bits
_main.c
→
dlls/qmgr/
qmgr
_main.c
View file @
b655da64
/*
*
Implementation of qmgr.dll
*
Main DLL interface to Queue Manager (BITS)
*
* Background Intelligent Transfer Service (BITS) interface. Dll is named
* qmgr for backwards compatibility with early versions of BITS.
...
...
@@ -25,24 +25,25 @@
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
#include "objbase.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
bits
);
WINE_DEFAULT_DEBUG_CHANNEL
(
qmgr
);
/* Entry point for DLL */
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
case
DLL_PROCESS_DETACH
:
break
;
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
case
DLL_PROCESS_DETACH
:
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