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
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
Alexey Alyaev
wine
Commits
718959e8
Commit
718959e8
authored
12 years ago
by
Piotr Caban
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msvcr80: Copy _encode_pointer and _decode_pointer functions from msvcp90.
parent
9228d979
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/msvcr80/msvcr80.c
+10
-0
10 additions, 0 deletions
dlls/msvcr80/msvcr80.c
dlls/msvcr80/msvcr80.spec
+2
-2
2 additions, 2 deletions
dlls/msvcr80/msvcr80.spec
with
12 additions
and
2 deletions
dlls/msvcr80/msvcr80.c
+
10
−
0
View file @
718959e8
...
...
@@ -37,3 +37,13 @@ BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
}
return
TRUE
;
}
void
*
CDECL
MSVCR80__decode_pointer
(
void
*
ptr
)
{
return
DecodePointer
(
ptr
);
}
void
*
CDECL
MSVCR80__encode_pointer
(
void
*
ptr
)
{
return
EncodePointer
(
ptr
);
}
This diff is collapsed.
Click to expand it.
dlls/msvcr80/msvcr80.spec
+
2
−
2
View file @
718959e8
...
...
@@ -415,7 +415,7 @@
@ varargs _cwscanf_s(wstr) msvcrt._cwscanf_s
@ varargs _cwscanf_s_l(wstr ptr) msvcrt._cwscanf_s_l
@ extern _daylight msvcrt._daylight
@ cdecl _decode_pointer(ptr)
msvcr90.
_decode_pointer
@ cdecl _decode_pointer(ptr)
MSVCR80_
_decode_pointer
@ cdecl _difftime32(long long) msvcrt._difftime32
@ cdecl _difftime64(long long) msvcrt._difftime64
@ stub _dosmaperr
...
...
@@ -425,7 +425,7 @@
@ cdecl _dupenv_s(ptr ptr str) msvcrt._dupenv_s
@ cdecl _ecvt(double long ptr ptr) msvcrt._ecvt
@ cdecl _ecvt_s(str long double long ptr ptr) msvcrt._ecvt_s
@ cdecl _encode_pointer(ptr)
msvcr90.
_encode_pointer
@ cdecl _encode_pointer(ptr)
MSVCR80_
_encode_pointer
@ cdecl _encoded_null() msvcr100._encoded_null
@ cdecl _endthread() msvcrt._endthread
@ cdecl _endthreadex(long) msvcrt._endthreadex
...
...
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