Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cqwrteur
wine
Commits
98ca10c8
Commit
98ca10c8
authored
14 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
ntdll: Export RtlInterlockedCompareExchange64.
parent
6d1ba98f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/ntdll/large_int.c
+12
-0
12 additions, 0 deletions
dlls/ntdll/large_int.c
dlls/ntdll/ntdll.spec
+1
-0
1 addition, 0 deletions
dlls/ntdll/ntdll.spec
with
13 additions
and
0 deletions
dlls/ntdll/large_int.c
+
12
−
0
View file @
98ca10c8
...
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include
"config.h"
#include
"wine/port.h"
#include
<stdarg.h>
#include
"ntstatus.h"
...
...
@@ -375,6 +378,15 @@ LONGLONG WINAPI RtlExtendedMagicDivide(
}
/* if */
}
/*************************************************************************
* RtlInterlockedCompareExchange64 (NTDLL.@)
*/
LONGLONG
WINAPI
RtlInterlockedCompareExchange64
(
LONGLONG
*
dest
,
LONGLONG
xchg
,
LONGLONG
compare
)
{
return
interlocked_cmpxchg64
(
dest
,
xchg
,
compare
);
}
#endif
/* _WIN64 */
/******************************************************************************
...
...
This diff is collapsed.
Click to expand it.
dlls/ntdll/ntdll.spec
+
1
−
0
View file @
98ca10c8
...
...
@@ -684,6 +684,7 @@
@ stdcall RtlInt64ToUnicodeString(double long ptr)
@ stdcall RtlIntegerToChar(long long long ptr)
@ stdcall RtlIntegerToUnicodeString(long long ptr)
@ stdcall -arch=win32 -ret64 RtlInterlockedCompareExchange64(ptr double double)
@ stdcall RtlInterlockedFlushSList(ptr)
@ stdcall RtlInterlockedPopEntrySList(ptr)
@ stdcall RtlInterlockedPushEntrySList(ptr ptr)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment