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
18b8f951
Commit
18b8f951
authored
Apr 20, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _resetstkoflw implementation.
parent
bd1fab78
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
7 deletions
+17
-7
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr70.spec
dlls/msvcr70/msvcr70.spec
+1
-1
msvcr71.spec
dlls/msvcr71/msvcr71.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
misc.c
dlls/msvcrt/misc.c
+11
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
18b8f951
...
...
@@ -1045,7 +1045,7 @@
@ cdecl _realloc_crt(ptr long) msvcrt.realloc
@ cdecl _recalloc(ptr long long) msvcr90._recalloc
@ stub _recalloc_crt
@
stub
_resetstkoflw
@
cdecl _resetstkoflw() msvcrt.
_resetstkoflw
@ cdecl _rmdir(str) msvcrt._rmdir
@ cdecl _rmtmp() msvcrt._rmtmp
@ cdecl _rotl(long long) msvcrt._rotl
...
...
dlls/msvcr70/msvcr70.spec
View file @
18b8f951
...
...
@@ -499,7 +499,7 @@
@ cdecl _putws(wstr) msvcrt._putws
@ stub _pwctype
@ cdecl _read(long ptr long) msvcrt._read
@
stub
_resetstkoflw
@
cdecl _resetstkoflw() msvcrt.
_resetstkoflw
@ cdecl _rmdir(str) msvcrt._rmdir
@ cdecl _rmtmp() msvcrt._rmtmp
@ cdecl _rotl(long long) msvcrt._rotl
...
...
dlls/msvcr71/msvcr71.spec
View file @
18b8f951
...
...
@@ -494,7 +494,7 @@
@ cdecl _putws(wstr) msvcrt._putws
@ extern _pwctype msvcrt._pwctype
@ cdecl _read(long ptr long) msvcrt._read
@
stub
_resetstkoflw
@
cdecl _resetstkoflw() msvcrt.
_resetstkoflw
@ cdecl _rmdir(str) msvcrt._rmdir
@ cdecl _rmtmp() msvcrt._rmtmp
@ cdecl _rotl(long long) msvcrt._rotl
...
...
dlls/msvcr80/msvcr80.spec
View file @
18b8f951
...
...
@@ -893,7 +893,7 @@
@ cdecl _realloc_crt(ptr long) msvcrt.realloc
@ cdecl _recalloc(ptr long long) msvcr90._recalloc
@ stub _recalloc_crt
@
stub
_resetstkoflw
@
cdecl _resetstkoflw() msvcrt.
_resetstkoflw
@ cdecl _rmdir(str) msvcrt._rmdir
@ cdecl _rmtmp() msvcrt._rmtmp
@ cdecl _rotl(long long) msvcrt._rotl
...
...
dlls/msvcr90/msvcr90.spec
View file @
18b8f951
...
...
@@ -879,7 +879,7 @@
@ cdecl _realloc_crt(ptr long) msvcrt.realloc
@ cdecl _recalloc(ptr long long)
@ stub _recalloc_crt
@
stub
_resetstkoflw
@
cdecl _resetstkoflw() msvcrt.
_resetstkoflw
@ cdecl _rmdir(str) msvcrt._rmdir
@ cdecl _rmtmp() msvcrt._rmtmp
@ cdecl _rotl(long long) msvcrt._rotl
...
...
dlls/msvcrt/misc.c
View file @
18b8f951
...
...
@@ -256,9 +256,19 @@ void CDECL MSVCRT_qsort_s(void *base, MSVCRT_size_t nmemb, MSVCRT_size_t size,
/*********************************************************************
* _get_output_format (MSVCRT.@)
*
*/
unsigned
int
CDECL
_get_output_format
(
void
)
{
return
0
;
}
/*********************************************************************
* _resetstkoflw (MSVCRT.@)
*/
int
CDECL
_resetstkoflw
(
void
)
{
int
stack_addr
;
/* causes stack fault that updates NtCurrentTeb()->Tib.StackLimit */
return
VirtualProtect
(
&
stack_addr
,
1
,
PAGE_GUARD
|
PAGE_READWRITE
,
NULL
);
}
dlls/msvcrt/msvcrt.spec
View file @
18b8f951
...
...
@@ -827,7 +827,7 @@
# extern _pwctype
@ cdecl _read(long ptr long) MSVCRT__read
# stub _realloc_dbg
# stub _resetstkoflw
@ cdecl _resetstkoflw()
@ cdecl _rmdir(str) MSVCRT__rmdir
@ cdecl _rmtmp()
@ cdecl _rotl(long long)
...
...
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