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
c66f5d59
Commit
c66f5d59
authored
Jan 24, 1999
by
Guy Albertelli
Committed by
Alexandre Julliard
Jan 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for SetThreadLocale.
parent
53292172
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
windows.h
include/windows.h
+1
-0
kernel32.spec
relay32/kernel32.spec
+1
-1
thread.c
scheduler/thread.c
+16
-0
No files found.
include/windows.h
View file @
c66f5d59
...
...
@@ -4187,6 +4187,7 @@ BOOL32 WINAPI SetStdHandle(DWORD,HANDLE32);
BOOL32
WINAPI
SetSystemPowerState
(
BOOL32
,
BOOL32
);
BOOL32
WINAPI
SetSystemTime
(
const
SYSTEMTIME
*
);
DWORD
WINAPI
SetThreadAffinityMask
(
HANDLE32
,
DWORD
);
BOOL32
WINAPI
SetThreadLocale
(
LCID
);
BOOL32
WINAPI
SetThreadPriority
(
HANDLE32
,
INT32
);
BOOL32
WINAPI
SetTimeZoneInformation
(
const
LPTIME_ZONE_INFORMATION
);
VOID
WINAPI
Sleep
(
DWORD
);
...
...
relay32/kernel32.spec
View file @
c66f5d59
...
...
@@ -687,7 +687,7 @@ init MAIN_KernelInit
668 stub SetTapePosition
669 stdcall SetThreadAffinityMask(long long) SetThreadAffinityMask
670 stub SetThreadContext
671 st
ub
SetThreadLocale
671 st
dcall SetThreadLocale(long)
SetThreadLocale
672 stdcall SetThreadPriority(long long) SetThreadPriority
673 stdcall SetTimeZoneInformation(ptr) SetTimeZoneInformation
674 stdcall SetUnhandledExceptionFilter(ptr) SetUnhandledExceptionFilter
...
...
scheduler/thread.c
View file @
c66f5d59
...
...
@@ -825,3 +825,19 @@ VOID WINAPI VWin32_BoostThreadStatic( DWORD threadId, INT32 boost )
FIXME
(
thread
,
"(0x%08lx,%d): stub
\n
"
,
threadId
,
boost
);
}
/**********************************************************************
* SetThreadLocale [KERNEL32.671] Sets the calling threads current locale.
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*
* NOTES
* Implemented in NT only (3.1 and above according to MS
*/
BOOL32
WINAPI
SetThreadLocale
(
LCID
lcid
)
/* [in] Locale identifier */
{
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
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