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
06562d16
Commit
06562d16
authored
Jan 10, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub implementation of GetThreadIOPendingFlag.
parent
d3f456d1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
thread.c
dlls/kernel32/thread.c
+10
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
06562d16
...
@@ -649,7 +649,7 @@
...
@@ -649,7 +649,7 @@
@ stdcall GetThreadContext(long ptr)
@ stdcall GetThreadContext(long ptr)
@ stdcall GetThreadErrorMode()
@ stdcall GetThreadErrorMode()
@ stdcall GetThreadId(ptr)
@ stdcall GetThreadId(ptr)
# @ stub GetThreadIOPendingFlag
@ stdcall GetThreadIOPendingFlag(long ptr)
@ stdcall GetThreadLocale()
@ stdcall GetThreadLocale()
@ stdcall GetThreadPriority(long)
@ stdcall GetThreadPriority(long)
@ stdcall GetThreadPriorityBoost(long ptr)
@ stdcall GetThreadPriorityBoost(long ptr)
...
...
dlls/kernel32/thread.c
View file @
06562d16
...
@@ -796,3 +796,13 @@ LANGID WINAPI GetThreadUILanguage( void )
...
@@ -796,3 +796,13 @@ LANGID WINAPI GetThreadUILanguage( void )
FIXME
(
": stub, returning default language.
\n
"
);
FIXME
(
": stub, returning default language.
\n
"
);
return
lang
;
return
lang
;
}
}
/***********************************************************************
* GetThreadIOPendingFlag (KERNEL32.@)
*/
BOOL
WINAPI
GetThreadIOPendingFlag
(
HANDLE
thread
,
PBOOL
io_pending
)
{
FIXME
(
"%p, %p
\n
"
,
thread
,
io_pending
);
*
io_pending
=
FALSE
;
return
TRUE
;
}
include/winbase.h
View file @
06562d16
...
@@ -1775,6 +1775,7 @@ WINBASEAPI DWORD WINAPI GetTempPathA(DWORD,LPSTR);
...
@@ -1775,6 +1775,7 @@ WINBASEAPI DWORD WINAPI GetTempPathA(DWORD,LPSTR);
WINBASEAPI
DWORD
WINAPI
GetTempPathW
(
DWORD
,
LPWSTR
);
WINBASEAPI
DWORD
WINAPI
GetTempPathW
(
DWORD
,
LPWSTR
);
#define GetTempPath WINELIB_NAME_AW(GetTempPath)
#define GetTempPath WINELIB_NAME_AW(GetTempPath)
WINBASEAPI
DWORD
WINAPI
GetThreadId
(
HANDLE
);
WINBASEAPI
DWORD
WINAPI
GetThreadId
(
HANDLE
);
WINBASEAPI
BOOL
WINAPI
GetThreadIOPendingFlag
(
HANDLE
,
PBOOL
);
WINBASEAPI
DWORD
WINAPI
GetTickCount
(
void
);
WINBASEAPI
DWORD
WINAPI
GetTickCount
(
void
);
WINBASEAPI
ULONGLONG
WINAPI
GetTickCount64
(
void
);
WINBASEAPI
ULONGLONG
WINAPI
GetTickCount64
(
void
);
WINBASEAPI
DWORD
WINAPI
GetTimeZoneInformation
(
LPTIME_ZONE_INFORMATION
);
WINBASEAPI
DWORD
WINAPI
GetTimeZoneInformation
(
LPTIME_ZONE_INFORMATION
);
...
...
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