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
da012ed8
Commit
da012ed8
authored
Sep 17, 2008
by
Paul Chitescu
Committed by
Alexandre Julliard
Sep 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Stub for LockWorkStation.
parent
382ef908
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
user32.spec
dlls/user32/user32.spec
+1
-1
user_main.c
dlls/user32/user_main.c
+10
-0
No files found.
dlls/user32/user32.spec
View file @
da012ed8
...
@@ -475,7 +475,7 @@
...
@@ -475,7 +475,7 @@
@ stdcall LockSetForegroundWindow (long)
@ stdcall LockSetForegroundWindow (long)
@ stub LockWindowStation
@ stub LockWindowStation
@ stdcall LockWindowUpdate(long)
@ stdcall LockWindowUpdate(long)
@ st
ub LockWorkStation
@ st
dcall LockWorkStation()
@ stdcall LookupIconIdFromDirectory(ptr long)
@ stdcall LookupIconIdFromDirectory(ptr long)
@ stdcall LookupIconIdFromDirectoryEx(ptr long long long long)
@ stdcall LookupIconIdFromDirectoryEx(ptr long long long long)
@ stub MBToWCSEx
@ stub MBToWCSEx
...
...
dlls/user32/user_main.c
View file @
da012ed8
...
@@ -391,6 +391,16 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reason )
...
@@ -391,6 +391,16 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reason )
}
}
/***********************************************************************
/***********************************************************************
* LockWorkStation (USER32.@)
*/
BOOL
WINAPI
LockWorkStation
(
void
)
{
TRACE
(
": stub
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* RegisterServicesProcess (USER32.@)
* RegisterServicesProcess (USER32.@)
*/
*/
int
WINAPI
RegisterServicesProcess
(
DWORD
ServicesProcessId
)
int
WINAPI
RegisterServicesProcess
(
DWORD
ServicesProcessId
)
...
...
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