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
589f58d8
Commit
589f58d8
authored
10 years ago
by
Martin Storsjö
Committed by
Alexandre Julliard
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msvcr120: Implement the _vacopy function.
parent
9978bfb6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
dlls/msvcr120/msvcr120.spec
+1
-1
1 addition, 1 deletion
dlls/msvcr120/msvcr120.spec
dlls/msvcrt/misc.c
+8
-0
8 additions, 0 deletions
dlls/msvcrt/misc.c
include/msvcrt/crtdefs.h
+6
-0
6 additions, 0 deletions
include/msvcrt/crtdefs.h
include/windef.h
+6
-0
6 additions, 0 deletions
include/windef.h
with
21 additions
and
1 deletion
dlls/msvcr120/msvcr120.spec
+
1
−
1
View file @
589f58d8
...
...
@@ -1792,7 +1792,7 @@
@ cdecl _unlock_file(ptr) MSVCRT__unlock_file
@ cdecl _utime32(str ptr)
@ cdecl _utime64(str ptr)
@
stub
_vacopy
@
cdecl _vacopy(ptr ptr) MSVCR120_
_vacopy
@ cdecl _vcprintf(str ptr)
@ stub _vcprintf_l
@ stub _vcprintf_p
...
...
This diff is collapsed.
Click to expand it.
dlls/msvcrt/misc.c
+
8
−
0
View file @
589f58d8
...
...
@@ -490,3 +490,11 @@ BOOL CDECL MSVCR110__crtInitializeCriticalSectionEx(
TRACE
(
"(%p %x %x)
\n
"
,
cs
,
spin_count
,
flags
);
return
InitializeCriticalSectionEx
(
cs
,
spin_count
,
flags
);
}
/*********************************************************************
* _vacopy (MSVCR120.@)
*/
void
CDECL
MSVCR120__vacopy
(
__ms_va_list
*
dest
,
__ms_va_list
src
)
{
__ms_va_copy
(
*
dest
,
src
);
}
This diff is collapsed.
Click to expand it.
include/msvcrt/crtdefs.h
+
6
−
0
View file @
589f58d8
...
...
@@ -80,10 +80,16 @@
# define __ms_va_list __builtin_ms_va_list
# define __ms_va_start(list,arg) __builtin_ms_va_start(list,arg)
# define __ms_va_end(list) __builtin_ms_va_end(list)
# define __ms_va_copy(dest,src) __builtin_ms_va_copy(dest,src)
# else
# define __ms_va_list va_list
# define __ms_va_start(list,arg) va_start(list,arg)
# define __ms_va_end(list) va_end(list)
# ifdef va_copy
# define __ms_va_copy(dest,src) va_copy(dest,src)
# else
# define __ms_va_copy(dest,src) ((dest) = (src))
# endif
# endif
#endif
...
...
This diff is collapsed.
Click to expand it.
include/windef.h
+
6
−
0
View file @
589f58d8
...
...
@@ -89,10 +89,16 @@ extern "C" {
# define __ms_va_list __builtin_ms_va_list
# define __ms_va_start(list,arg) __builtin_ms_va_start(list,arg)
# define __ms_va_end(list) __builtin_ms_va_end(list)
# define __ms_va_copy(dest,src) __builtin_ms_va_copy(dest,src)
# else
# define __ms_va_list va_list
# define __ms_va_start(list,arg) va_start(list,arg)
# define __ms_va_end(list) va_end(list)
# ifdef va_copy
# define __ms_va_copy(dest,src) va_copy(dest,src)
# else
# define __ms_va_copy(dest,src) ((dest) = (src))
# endif
# endif
#endif
...
...
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