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
7160af00
Commit
7160af00
authored
Aug 15, 2005
by
Vincent Béron
Committed by
Alexandre Julliard
Aug 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Uniformize DllMain TRACEing across dlls.
parent
7284e6d4
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
12 additions
and
12 deletions
+12
-12
factory.c
dlls/avifil32/factory.c
+1
-1
cdlg32.c
dlls/commdlg/cdlg32.c
+1
-1
dplayx_main.c
dlls/dplayx/dplayx_main.c
+1
-1
dsound_main.c
dlls/dsound/dsound_main.c
+1
-1
main.c
dlls/hhctrl.ocx/main.c
+1
-1
mapi32_main.c
dlls/mapi32/mapi32_main.c
+1
-1
mscms_main.c
dlls/mscms/mscms_main.c
+1
-1
msisys.c
dlls/msisys/msisys.c
+1
-1
oleaut.c
dlls/oleaut32/oleaut.c
+1
-1
main.c
dlls/snmpapi/main.c
+1
-1
init.c
dlls/wineps/init.c
+1
-1
main.c
dlls/wldap32/main.c
+1
-1
No files found.
dlls/avifil32/factory.c
View file @
7160af00
...
...
@@ -205,7 +205,7 @@ HRESULT WINAPI DllCanUnloadNow(void)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDll
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p,%l
u
,%p)
\n
"
,
hInstDll
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,%l
d
,%p)
\n
"
,
hInstDll
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
...
...
dlls/commdlg/cdlg32.c
View file @
7160af00
...
...
@@ -73,7 +73,7 @@ static const char * GPA_string = "Failed to get entry point %s for hinst = 0x%08
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstance
,
DWORD
Reason
,
LPVOID
Reserved
)
{
TRACE
(
"(%p, %
08lx
, %p)
\n
"
,
hInstance
,
Reason
,
Reserved
);
TRACE
(
"(%p, %
ld
, %p)
\n
"
,
hInstance
,
Reason
,
Reserved
);
switch
(
Reason
)
{
...
...
dlls/dplayx/dplayx_main.c
View file @
7160af00
...
...
@@ -73,7 +73,7 @@ DWORD gdwDPlaySPRefCount = 0; /* FIXME: Should it be initialized here? */
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p,
0x%08lx
,%p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,
%ld
,%p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
...
...
dlls/dsound/dsound_main.c
View file @
7160af00
...
...
@@ -653,7 +653,7 @@ HRESULT WINAPI DllCanUnloadNow(void)
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
int
i
;
TRACE
(
"(%p
0x%lx
%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p
%ld
%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
...
...
dlls/hhctrl.ocx/main.c
View file @
7160af00
...
...
@@ -30,7 +30,7 @@ HINSTANCE hhctrl_hinstance;
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstance
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p,
0x%08lx
,%p)
\n
"
,
hInstance
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,
%ld
,%p)
\n
"
,
hInstance
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
...
...
dlls/mapi32/mapi32_main.c
View file @
7160af00
...
...
@@ -36,7 +36,7 @@ LONG MAPI_ObjectCount = 0;
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
fImpLoad
)
{
TRACE
(
"(%p,
0x%lx
,%p)
\n
"
,
hinstDLL
,
fdwReason
,
fImpLoad
);
TRACE
(
"(%p,
%ld
,%p)
\n
"
,
hinstDLL
,
fdwReason
,
fImpLoad
);
switch
(
fdwReason
)
{
...
...
dlls/mscms/mscms_main.c
View file @
7160af00
...
...
@@ -36,7 +36,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(mscms);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
TRACE
(
"(%p,
0x%08lx
, %p)
\n
"
,
hinst
,
reason
,
reserved
);
TRACE
(
"(%p,
%ld
, %p)
\n
"
,
hinst
,
reason
,
reserved
);
switch
(
reason
)
{
...
...
dlls/msisys/msisys.c
View file @
7160af00
...
...
@@ -59,7 +59,7 @@ BOOL WINAPI DllMain(
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p,%
08lx
,%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,%
ld
,%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
...
...
dlls/oleaut32/oleaut.c
View file @
7160af00
...
...
@@ -755,7 +755,7 @@ HRESULT WINAPI DllCanUnloadNow(void)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDll
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p,%l
u
,%p)
\n
"
,
hInstDll
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,%l
d
,%p)
\n
"
,
hInstDll
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
...
...
dlls/snmpapi/main.c
View file @
7160af00
...
...
@@ -36,7 +36,7 @@ BOOL WINAPI DllMain(
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p,%
08lx
,%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,%
ld
,%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
...
...
dlls/wineps/init.c
View file @
7160af00
...
...
@@ -118,7 +118,7 @@ static LOGFONTA DefaultLogFont = {
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
TRACE
(
"(%p,
0x%08lx
, %p)
\n
"
,
hinst
,
reason
,
reserved
);
TRACE
(
"(%p,
%ld
, %p)
\n
"
,
hinst
,
reason
,
reserved
);
switch
(
reason
)
{
...
...
dlls/wldap32/main.c
View file @
7160af00
...
...
@@ -32,7 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
TRACE
(
"(%p,
0x%08lx
, %p)
\n
"
,
hinst
,
reason
,
reserved
);
TRACE
(
"(%p,
%ld
, %p)
\n
"
,
hinst
,
reason
,
reserved
);
switch
(
reason
)
{
...
...
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