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
e85f5aa6
Commit
e85f5aa6
authored
Nov 17, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecrt0: Build without -DWINE_NO_LONG_TYPES.
parent
de3a8366
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/winecrt0/Makefile.in
+0
-1
debug.c
dlls/winecrt0/debug.c
+3
-3
No files found.
dlls/winecrt0/Makefile.in
View file @
e85f5aa6
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
STATICLIB
=
libwinecrt0.a
C_SRCS
=
\
...
...
dlls/winecrt0/debug.c
View file @
e85f5aa6
...
...
@@ -191,11 +191,11 @@ static int __cdecl fallback__wine_dbg_header( enum __wine_debug_class cls,
if
(
TRACE_ON
(
timestamp
))
{
U
LONG
ticks
=
GetTickCount
();
U
INT
ticks
=
GetTickCount
();
pos
+=
sprintf
(
pos
,
"%3u.%03u:"
,
ticks
/
1000
,
ticks
%
1000
);
}
if
(
TRACE_ON
(
pid
))
pos
+=
sprintf
(
pos
,
"%04x:"
,
GetCurrentProcessId
()
);
pos
+=
sprintf
(
pos
,
"%04x:"
,
GetCurrentThreadId
()
);
if
(
TRACE_ON
(
pid
))
pos
+=
sprintf
(
pos
,
"%04x:"
,
(
UINT
)
GetCurrentProcessId
()
);
pos
+=
sprintf
(
pos
,
"%04x:"
,
(
UINT
)
GetCurrentThreadId
()
);
if
(
function
&&
cls
<
ARRAY_SIZE
(
debug_classes
))
snprintf
(
pos
,
sizeof
(
buffer
)
-
(
pos
-
buffer
),
"%s:%s:%s "
,
debug_classes
[
cls
],
channel
->
name
,
function
);
...
...
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