Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
6e777041
Commit
6e777041
authored
May 24, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
May 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _getptd implementation.
parent
abb3db5c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
3 deletions
+13
-3
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-0
thread.c
dlls/msvcrt/thread.c
+9
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
6e777041
...
...
@@ -708,7 +708,7 @@
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
@ cdecl _getmbcp() msvcrt._getmbcp
@ cdecl _getpid() msvcrt._getpid
@
stub
_getptd
@
cdecl _getptd() msvcrt.
_getptd
@ cdecl _getsystime(ptr) msvcrt._getsystime
@ cdecl _getw(ptr) msvcrt._getw
@ stub _getwch
...
...
dlls/msvcr80/msvcr80.spec
View file @
6e777041
...
...
@@ -555,7 +555,7 @@
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
@ cdecl _getmbcp() msvcrt._getmbcp
@ cdecl _getpid() msvcrt._getpid
@
stub
_getptd
@
cdecl _getptd() msvcrt.
_getptd
@ cdecl _getsystime(ptr) msvcrt._getsystime
@ cdecl _getw(ptr) msvcrt._getw
@ stub _getwch
...
...
dlls/msvcr90/msvcr90.spec
View file @
6e777041
...
...
@@ -543,7 +543,7 @@
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
@ cdecl _getmbcp() msvcrt._getmbcp
@ cdecl _getpid() msvcrt._getpid
@
stub
_getptd
@
cdecl _getptd() msvcrt.
_getptd
@ cdecl _getsystime(ptr) msvcrt._getsystime
@ cdecl _getw(ptr) msvcrt._getw
@ stub _getwch
...
...
dlls/msvcrt/msvcrt.spec
View file @
6e777041
...
...
@@ -1502,3 +1502,4 @@
@ cdecl _wdupenv_s(ptr ptr wstr)
@ cdecl _get_printf_count_output()
@ cdecl _set_printf_count_output(long)
@ cdecl _getptd()
dlls/msvcrt/thread.c
View file @
6e777041
...
...
@@ -159,3 +159,12 @@ void CDECL _endthreadex(
/* FIXME */
ExitThread
(
retval
);
}
/*********************************************************************
* _getptd - not exported in native msvcrt
*/
thread_data_t
*
CDECL
_getptd
(
void
)
{
FIXME
(
"returns undocumented/not fully filled data
\n
"
);
return
msvcrt_get_thread_data
();
}
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