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
d2304aa8
Commit
d2304aa8
authored
Jan 05, 2000
by
Adam Sacarny
Committed by
Alexandre Julliard
Jan 05, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for compilers that don't support 'long long' (From Ove Kaaven).
parent
95e7acb9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
rtl.c
dlls/ntdll/rtl.c
+8
-3
No files found.
dlls/ntdll/rtl.c
View file @
d2304aa8
...
...
@@ -402,7 +402,8 @@ INT WINAPI RtlExtendedLargeIntegerDivide(
*
rest
=
x1
%
divisor
;
return
x1
/
divisor
;
#else
FIXME
(
"((%ld<<32)+%ld,%ld,%p), implement this using normal integer arithmetic!
\n
"
,
dividend
.
HighPart
,
dividend
.
LowPart
,
divisor
,
rest
);
FIXME
(
"((%ld<<32)+%ld,%ld,%p), implement this using normal integer arithmetic!
\n
"
,
dividend
.
s
.
HighPart
,
dividend
.
s
.
LowPart
,
divisor
,
rest
);
return
0
;
#endif
}
...
...
@@ -420,8 +421,12 @@ LARGE_INTEGER WINAPI RtlExtendedIntegerMultiply(
long
long
result
=
(
*
(
long
long
*
)
&
factor1
)
*
factor2
;
return
(
*
(
LARGE_INTEGER
*
)
&
result
);
#else
FIXME
(
"((%ld<<32)+%ld,%d), implement this using normal integer arithmetic!
\n
"
,
factor1
.
HighPart
,
factor1
.
LowPart
,
factor2
);
return
0
;
LARGE_INTEGER
result
;
result
.
s
.
HighPart
=
0
;
result
.
s
.
LowPart
=
0
;
FIXME
(
"((%ld<<32)+%ld,%d), implement this using normal integer arithmetic!
\n
"
,
factor1
.
s
.
HighPart
,
factor1
.
s
.
LowPart
,
factor2
);
return
result
;
#endif
}
...
...
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