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
6febc8a7
Commit
6febc8a7
authored
Jan 07, 2005
by
Diego Pettenò
Committed by
Alexandre Julliard
Jan 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub implementation for WINNLS* functions.
parent
869a66a8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
73 additions
and
7 deletions
+73
-7
misc.c
dlls/user/misc.c
+34
-3
user32.spec
dlls/user/user32.spec
+4
-4
Makefile.in
include/Makefile.in
+1
-0
winnls32.h
include/winnls32.h
+34
-0
No files found.
dlls/user/misc.c
View file @
6febc8a7
...
...
@@ -358,7 +358,38 @@ LONG WINAPI stub_USER_496(void) { FIXME("stub\n"); return 0; }
/***********************************************************************
* User32InitializeImmEntryTable
*/
BOOL
WINAPI
User32InitializeImmEntryTable
(
LPVOID
ptr
)
{
FIXME
(
"(%p): stub
\n
"
,
ptr
);
return
TRUE
;
BOOL
WINAPI
User32InitializeImmEntryTable
(
LPVOID
ptr
)
{
FIXME
(
"(%p): stub
\n
"
,
ptr
);
return
TRUE
;
}
/**********************************************************************
* WINNLSGetIMEHotkey [USER32.@]
*
*/
UINT
WINAPI
WINNLSGetIMEHotkey
(
HWND
hUnknown1
)
{
FIXME
(
"hUnknown1 %p: stub!
\n
"
,
hUnknown1
);
return
0
;
/* unknown */
}
/**********************************************************************
* WINNLSEnableIME [USER32.@]
*
*/
BOOL
WINAPI
WINNLSEnableIME
(
HWND
hUnknown1
,
BOOL
bUnknown2
)
{
FIXME
(
"hUnknown1 %p bUnknown2 %d: stub!
\n
"
,
hUnknown1
,
bUnknown2
);
return
TRUE
;
/* success (?) */
}
/**********************************************************************
* WINNLSGetEnableStatus [USER32.@]
*
*/
BOOL
WINAPI
WINNLSGetEnableStatus
(
HWND
hUnknown1
)
{
FIXME
(
"hUnknown1 %p: stub!
\n
"
,
hUnknown1
);
return
TRUE
;
/* success (?) */
}
dlls/user/user32.spec
View file @
6febc8a7
...
...
@@ -294,7 +294,7 @@
@ stdcall GetPropA(long str)
@ stdcall GetPropW(long wstr)
@ stdcall GetQueueStatus(long)
# @ stub GetScrollBarInfo
@ stdcall GetScrollBarInfo(long long ptr)
@ stdcall GetScrollInfo(long long ptr)
@ stdcall GetScrollPos(long long)
@ stdcall GetScrollRange(long long ptr ptr)
...
...
@@ -616,9 +616,9 @@
@ stdcall VkKeyScanExA(long long)
@ stdcall VkKeyScanExW(long long)
@ stdcall VkKeyScanW(long)
# @ stub WINNLSEnableIME
# @ stub WINNLSGetEnableStatus
# @ stub WINNLSGetIMEHotkey
@ stdcall WINNLSEnableIME(long long)
@ stdcall WINNLSGetEnableStatus(long)
@ stdcall WINNLSGetIMEHotkey(long)
@ stdcall WaitForInputIdle(long long)
@ stdcall WaitMessage()
@ stub WCSToMBEx
...
...
include/Makefile.in
View file @
6febc8a7
...
...
@@ -229,6 +229,7 @@ WINDOWS_INCLUDES = \
winioctl.h
\
winnetwk.h
\
winnls.h
\
winnls32.h
\
winnt.h
\
winreg.h
\
winres.h
\
...
...
include/winnls32.h
0 → 100644
View file @
6febc8a7
/*
* Copyright (C) 2005 Diego Petten
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _WINNLS32_
#define _WINNLS32_
#ifdef __cplusplus
extern
"C"
{
#endif
UINT
WINAPI
WINNLSGetIMEHotkey
(
HWND
);
BOOL
WINAPI
WINNLSEnableIME
(
HWND
,
BOOL
);
BOOL
WINAPI
WINNLSGetEnableStatus
(
HWND
);
#ifdef __cplusplus
}
#endif
#endif
/* _WINNLS32_ */
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