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
533d3330
Commit
533d3330
authored
Mar 28, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Mar 28, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Added/fixed some documentation reported by winapi_check
- Renamed MapVirtualKeyEx32A to MapVirtualKeyExA - Renamed CRTDLL__dllonexit to CRTDLL___dllinit
parent
39fc90a7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
25 deletions
+25
-25
crtdll.spec
dlls/crtdll/crtdll.spec
+1
-1
crtdll_main.c
dlls/crtdll/crtdll_main.c
+1
-1
user32.spec
dlls/user/user32.spec
+1
-1
winuser.h
include/winuser.h
+1
-1
input.c
windows/input.c
+21
-21
No files found.
dlls/crtdll/crtdll.spec
View file @
533d3330
...
...
@@ -27,7 +27,7 @@ init CRTDLL_Init
@ cdecl __GetMainArgs(ptr ptr ptr long) CRTDLL__GetMainArgs
@ extern __argc_dll CRTDLL_argc_dll
@ extern __argv_dll CRTDLL_argv_dll
@ cdecl __dllonexit() CRTDLL__dllonexit
@ cdecl __dllonexit() CRTDLL__
_
dllonexit
@ stub __doserrno
@ stub __fpecode
@ stub __isascii
...
...
dlls/crtdll/crtdll_main.c
View file @
533d3330
...
...
@@ -1825,7 +1825,7 @@ INT __cdecl CRTDLL__memicmp(
/*********************************************************************
* __dllonexit (CRTDLL.25)
*/
VOID
__cdecl
CRTDLL__dllonexit
()
VOID
__cdecl
CRTDLL__
_
dllonexit
()
{
FIXME
(
"stub
\n
"
);
}
...
...
dlls/user/user32.spec
View file @
533d3330
...
...
@@ -386,7 +386,7 @@ rsrc user32
381 stub MBToWCSEx
382 stdcall MapDialogRect(long ptr) MapDialogRect
383 stdcall MapVirtualKeyA(long long) MapVirtualKeyA
384 stdcall MapVirtualKeyExA(long long long) MapVirtualKeyEx
32
A
384 stdcall MapVirtualKeyExA(long long long) MapVirtualKeyExA
385 stdcall MapVirtualKeyW(long long) MapVirtualKeyA
386 stdcall MapWindowPoints(long long ptr long) MapWindowPoints
387 stdcall MenuItemFromPoint(long long long long) MenuItemFromPoint
...
...
include/winuser.h
View file @
533d3330
...
...
@@ -3475,7 +3475,7 @@ INT WINAPI LookupIconIdFromDirectoryEx(LPBYTE,BOOL,INT,INT,UINT);
UINT
WINAPI
MapVirtualKeyA
(
UINT
,
UINT
);
UINT
WINAPI
MapVirtualKeyW
(
UINT
,
UINT
);
#define MapVirtualKey WINELIB_NAME_AW(MapVirtualKey)
UINT
WINAPI
MapVirtualKeyEx32
A
(
UINT
,
UINT
,
HKL
);
UINT
WINAPI
MapVirtualKeyEx
A
(
UINT
,
UINT
,
HKL
);
#define MapVirtualKeyEx WINELIB_NAME_AW(MapVirtualKeyEx)
BOOL
WINAPI
MapDialogRect
(
HWND
,
LPRECT
);
INT
WINAPI
MapWindowPoints
(
HWND
,
HWND
,
LPPOINT
,
UINT
);
...
...
windows/input.c
View file @
533d3330
...
...
@@ -320,7 +320,7 @@ BOOL16 WINAPI SwapMouseButton16( BOOL16 fSwap )
/***********************************************************************
* SwapMouseButton
32
(USER32.537)
* SwapMouseButton (USER32.537)
*/
BOOL
WINAPI
SwapMouseButton
(
BOOL
fSwap
)
{
...
...
@@ -422,7 +422,7 @@ HWND16 WINAPI SetCapture16( HWND16 hwnd )
/**********************************************************************
* SetCapture
32
(USER32.464)
* SetCapture (USER32.464)
*/
HWND
WINAPI
SetCapture
(
HWND
hwnd
)
{
...
...
@@ -448,7 +448,7 @@ HWND16 WINAPI GetCapture16(void)
}
/**********************************************************************
* GetCapture
32
(USER32.208)
* GetCapture (USER32.208)
*/
HWND
WINAPI
GetCapture
(
void
)
{
...
...
@@ -546,7 +546,7 @@ BOOL WINAPI SetKeyboardState(LPBYTE lpKeyState)
}
/**********************************************************************
* GetAsyncKeyState
32
(USER32.207)
* GetAsyncKeyState (USER32.207)
*
* Determine if a key is or was pressed. retval has high-order
* bit set to 1 if currently pressed, low-order bit set to 1 if key has
...
...
@@ -740,7 +740,7 @@ static BOOL KBD_translate_accelerator(HWND hWnd,LPMSG msg,
}
/**********************************************************************
* TranslateAccelerator
32
(USER32.551)(USER32.552)(USER32.553)
* TranslateAccelerator (USER32.551)(USER32.552)(USER32.553)
*/
INT
WINAPI
TranslateAccelerator
(
HWND
hWnd
,
HACCEL
hAccel
,
LPMSG
msg
)
{
...
...
@@ -856,7 +856,7 @@ WORD WINAPI VkKeyScanExW(WCHAR cChar, HKL dwhkl)
}
/******************************************************************************
* GetKeyboardType
32
(USER32.255)
* GetKeyboardType (USER32.255)
*/
INT
WINAPI
GetKeyboardType
(
INT
nTypeFlag
)
{
...
...
@@ -864,7 +864,7 @@ INT WINAPI GetKeyboardType(INT nTypeFlag)
}
/******************************************************************************
* MapVirtualKey
32
A (USER32.383)
* MapVirtualKeyA (USER32.383)
*/
UINT
WINAPI
MapVirtualKeyA
(
UINT
code
,
UINT
maptype
)
{
...
...
@@ -872,7 +872,7 @@ UINT WINAPI MapVirtualKeyA(UINT code, UINT maptype)
}
/******************************************************************************
* MapVirtualKey
32
W (USER32.385)
* MapVirtualKeyW (USER32.385)
*/
UINT
WINAPI
MapVirtualKeyW
(
UINT
code
,
UINT
maptype
)
{
...
...
@@ -880,9 +880,9 @@ UINT WINAPI MapVirtualKeyW(UINT code, UINT maptype)
}
/******************************************************************************
* MapVirtualKeyEx
32
A (USER32.384)
* MapVirtualKeyExA (USER32.384)
*/
UINT
WINAPI
MapVirtualKeyEx
32
A
(
UINT
code
,
UINT
maptype
,
HKL
hkl
)
UINT
WINAPI
MapVirtualKeyExA
(
UINT
code
,
UINT
maptype
,
HKL
hkl
)
{
if
(
hkl
)
FIXME_
(
keyboard
)(
"(%d,%d,0x%08lx), hkl unhandled!
\n
"
,
code
,
maptype
,(
DWORD
)
hkl
);
...
...
@@ -890,7 +890,7 @@ UINT WINAPI MapVirtualKeyEx32A(UINT code, UINT maptype, HKL hkl)
}
/****************************************************************************
* GetKBCodePage
32
(USER32.246)
* GetKBCodePage (USER32.246)
*/
UINT
WINAPI
GetKBCodePage
(
void
)
{
...
...
@@ -922,7 +922,7 @@ HKL WINAPI GetKeyboardLayout(DWORD dwLayout)
}
/****************************************************************************
* GetKeyboardLayoutName
32
A (USER32.252)
* GetKeyboardLayoutNameA (USER32.252)
*/
INT
WINAPI
GetKeyboardLayoutNameA
(
LPSTR
pwszKLID
)
{
...
...
@@ -931,7 +931,7 @@ INT WINAPI GetKeyboardLayoutNameA(LPSTR pwszKLID)
}
/****************************************************************************
* GetKeyboardLayoutName
32
W (USER32.253)
* GetKeyboardLayoutNameW (USER32.253)
*/
INT
WINAPI
GetKeyboardLayoutNameW
(
LPWSTR
pwszKLID
)
{
...
...
@@ -943,7 +943,7 @@ INT WINAPI GetKeyboardLayoutNameW(LPWSTR pwszKLID)
}
/****************************************************************************
* GetKeyNameText
32
A (USER32.247)
* GetKeyNameTextA (USER32.247)
*/
INT
WINAPI
GetKeyNameTextA
(
LONG
lParam
,
LPSTR
lpBuffer
,
INT
nSize
)
{
...
...
@@ -951,7 +951,7 @@ INT WINAPI GetKeyNameTextA(LONG lParam, LPSTR lpBuffer, INT nSize)
}
/****************************************************************************
* GetKeyNameText
32
W (USER32.248)
* GetKeyNameTextW (USER32.248)
*/
INT
WINAPI
GetKeyNameTextW
(
LONG
lParam
,
LPWSTR
lpBuffer
,
INT
nSize
)
{
...
...
@@ -964,7 +964,7 @@ INT WINAPI GetKeyNameTextW(LONG lParam, LPWSTR lpBuffer, INT nSize)
}
/****************************************************************************
* ToAscii
32
(USER32.546)
* ToAscii (USER32.546)
*/
INT
WINAPI
ToAscii
(
UINT
virtKey
,
UINT
scanCode
,
LPBYTE
lpKeyState
,
LPWORD
lpChar
,
UINT
flags
)
...
...
@@ -973,7 +973,7 @@ INT WINAPI ToAscii( UINT virtKey,UINT scanCode,LPBYTE lpKeyState,
}
/****************************************************************************
* ToAscii
32
(USER32.547)
* ToAscii
Ex
(USER32.547)
*/
INT
WINAPI
ToAsciiEx
(
UINT
virtKey
,
UINT
scanCode
,
LPBYTE
lpKeyState
,
LPWORD
lpChar
,
UINT
flags
,
HKL
dwhkl
)
...
...
@@ -983,7 +983,7 @@ INT WINAPI ToAsciiEx( UINT virtKey, UINT scanCode, LPBYTE lpKeyState,
}
/**********************************************************************
* ActivateKeyboardLayout
32
(USER32.1)
* ActivateKeyboardLayout (USER32.1)
*
* Call ignored. WINE supports only system default keyboard layout.
*/
...
...
@@ -1034,7 +1034,7 @@ BOOL WINAPI UnregisterHotKey(HWND hwnd,INT id) {
/***********************************************************************
* ToUnicode
32
(USER32.548)
* ToUnicode (USER32.548)
*/
INT
WINAPI
ToUnicode
(
UINT
wVirtKey
,
...
...
@@ -1049,7 +1049,7 @@ INT WINAPI ToUnicode(
}
/***********************************************************************
* LoadKeyboardLayout
32
A (USER32.367)
* LoadKeyboardLayoutA (USER32.367)
* Call ignored. WINE supports only system default keyboard layout.
*/
HKL
WINAPI
LoadKeyboardLayoutA
(
LPCSTR
pwszKLID
,
UINT
Flags
)
...
...
@@ -1060,7 +1060,7 @@ HKL WINAPI LoadKeyboardLayoutA(LPCSTR pwszKLID, UINT Flags)
}
/***********************************************************************
* LoadKeyboardLayout
32
W (USER32.368)
* LoadKeyboardLayoutW (USER32.368)
*/
HKL
WINAPI
LoadKeyboardLayoutW
(
LPCWSTR
pwszKLID
,
UINT
Flags
)
{
...
...
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