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
9fdceb8a
Commit
9fdceb8a
authored
Nov 08, 1998
by
Uwe Bonnes
Committed by
Alexandre Julliard
Nov 08, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- adds GetExitCodeProcess
- corrects the return-type of GetKeyState - corrects the winelib definition of IsDialogMessage - adds winelib definitions for PrintDlg
parent
c66d9af7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
commdlg.h
include/commdlg.h
+4
-1
windows.h
include/windows.h
+4
-3
input.c
windows/input.c
+2
-2
No files found.
include/commdlg.h
View file @
9fdceb8a
...
...
@@ -579,7 +579,10 @@ BOOL32 WINAPI GetSaveFileName32W(LPOPENFILENAME32W ofn);
BOOL32
WINAPI
PageSetupDlg32A
(
LPPAGESETUPDLG32A
);
BOOL32
WINAPI
PageSetupDlg32W
(
LPPAGESETUPDLG32W
);
#define PageSetupDlg WINELIB_NAME_AW(PageSetupDlg)
BOOL16
WINAPI
PrintDlg
(
SEGPTR
print
);
BOOL16
WINAPI
PrintDlg16
(
SEGPTR
print
);
BOOL32
WINAPI
PrintDlg32A
(
LPPRINTDLG32A
printdlg
);
BOOL32
WINAPI
PrintDlg32W
(
LPPRINTDLG32W
printdlg
);
#define PrintDlg WINELIB_NAME_AW(PrintDlg)
HWND16
WINAPI
ReplaceText16
(
SEGPTR
find
);
HWND32
WINAPI
ReplaceText32A
(
LPFINDREPLACE32A
lpFind
);
HWND32
WINAPI
ReplaceText32W
(
LPFINDREPLACE32W
lpFind
);
...
...
include/windows.h
View file @
9fdceb8a
...
...
@@ -8095,8 +8095,8 @@ INT16 WINAPI GetKeyboardLayoutName16(LPSTR);
INT32
WINAPI
GetKeyboardLayoutName32A
(
LPSTR
);
INT32
WINAPI
GetKeyboardLayoutName32W
(
LPWSTR
);
#define GetKeyboardLayoutName WINELIB_NAME_AW(GetKeyboardLayoutName)
WORD
WINAPI
GetKeyState16
(
INT16
);
WORD
WINAPI
GetKeyState32
(
INT32
);
INT16
WINAPI
GetKeyState16
(
INT16
);
INT16
WINAPI
GetKeyState32
(
INT32
);
#define GetKeyState WINELIB_NAME(GetKeyState)
HWND16
WINAPI
GetLastActivePopup16
(
HWND16
);
HWND32
WINAPI
GetLastActivePopup32
(
HWND32
);
...
...
@@ -8358,6 +8358,7 @@ INT32 WINAPI GetUpdateRgn32(HWND32,HRGN32,BOOL32);
LONG
WINAPI
GetVersion16
(
void
);
LONG
WINAPI
GetVersion32
(
void
);
#define GetVersion WINELIB_NAME(GetVersion)
BOOL32
WINAPI
GetExitCodeProcess
(
HANDLE32
,
LPDWORD
);
BOOL16
WINAPI
GetViewportExtEx16
(
HDC16
,
LPSIZE16
);
BOOL32
WINAPI
GetViewportExtEx32
(
HDC32
,
LPSIZE32
);
#define GetViewportExtEx WINELIB_NAME(GetViewportExtEx)
...
...
@@ -8556,7 +8557,7 @@ BOOL32 WINAPI IsDBCSLeadByte32(BYTE);
BOOL16
WINAPI
IsDialogMessage16
(
HWND16
,
LPMSG16
);
BOOL32
WINAPI
IsDialogMessage32A
(
HWND32
,
LPMSG32
);
BOOL32
WINAPI
IsDialogMessage32W
(
HWND32
,
LPMSG32
);
#define IsDialogMessage WINELIB_NAME(IsDialogMessage)
#define IsDialogMessage WINELIB_NAME
_AW
(IsDialogMessage)
UINT16
WINAPI
IsDlgButtonChecked16
(
HWND16
,
UINT16
);
UINT32
WINAPI
IsDlgButtonChecked32
(
HWND32
,
UINT32
);
#define IsDlgButtonChecked WINELIB_NAME(IsDlgButtonChecked)
...
...
windows/input.c
View file @
9fdceb8a
...
...
@@ -355,7 +355,7 @@ HWND32 WINAPI GetCapture32(void)
/**********************************************************************
* GetKeyState (USER.106)
*/
WORD
WINAPI
GetKeyState16
(
INT16
vkey
)
INT16
WINAPI
GetKeyState16
(
INT16
vkey
)
{
return
GetKeyState32
(
vkey
);
}
...
...
@@ -367,7 +367,7 @@ WORD WINAPI GetKeyState16(INT16 vkey)
* keyboard-input message. This function retrieves the state of the key
* at the time the input message was generated. (SDK 3.1 Vol 2. p 390)
*/
WORD
WINAPI
GetKeyState32
(
INT32
vkey
)
INT16
WINAPI
GetKeyState32
(
INT32
vkey
)
{
INT32
retval
;
...
...
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