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
c730eec6
Commit
c730eec6
authored
Jan 03, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementations for GetAltTabInfo{A,W}.
Forward GetAltTabInfo to GetAltTabInfoA.
parent
e603d1a0
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
1 deletion
+31
-1
misc.c
dlls/user/misc.c
+11
-0
user32.spec
dlls/user/user32.spec
+3
-1
winuser.h
include/winuser.h
+17
-0
No files found.
dlls/user/misc.c
View file @
c730eec6
...
...
@@ -82,6 +82,17 @@ void WINAPI SetLastErrorEx(
SetLastError
(
error
);
}
BOOL
WINAPI
GetAltTabInfoA
(
HWND
hwnd
,
int
iItem
,
PALTTABINFO
pati
,
LPSTR
pszItemText
,
UINT
cchItemText
)
{
FIXME
(
"(%p, 0x%08x, %p, %p, 0x%08x)
\n
"
,
hwnd
,
iItem
,
pati
,
pszItemText
,
cchItemText
);
return
FALSE
;
}
BOOL
WINAPI
GetAltTabInfoW
(
HWND
hwnd
,
int
iItem
,
PALTTABINFO
pati
,
LPWSTR
pszItemText
,
UINT
cchItemText
)
{
FIXME
(
"(%p, 0x%08x, %p, %p, 0x%08x)
\n
"
,
hwnd
,
iItem
,
pati
,
pszItemText
,
cchItemText
);
return
FALSE
;
}
/******************************************************************************
* GetProcessWindowStation [USER32.@] Returns handle of window station
...
...
dlls/user/user32.spec
View file @
c730eec6
...
...
@@ -693,7 +693,9 @@
@ stdcall DrawMenuBarTemp(long long long long long)
@ stdcall EnumDisplaySettingsExA(str long ptr long)
@ stdcall EnumDisplaySettingsExW(wstr long ptr long)
# @ stub GetAltTabInfo
@ stdcall GetAltTabInfo(long long ptr ptr long) GetAltTabInfoA
@ stdcall GetAltTabInfoA(long long ptr ptr long)
@ stdcall GetAltTabInfoW(long long ptr ptr long)
@ stdcall GetAncestor(long long)
@ stdcall GetClipboardSequenceNumber ()
@ stdcall GetWindowModuleFileNameA(long ptr long)
...
...
include/winuser.h
View file @
c730eec6
...
...
@@ -3610,6 +3610,20 @@ typedef struct tagLASTINPUTINFO {
DWORD
dwTime
;
}
LASTINPUTINFO
,
*
PLASTINPUTINFO
;
/* used by GetAltTabInfo */
typedef
struct
{
DWORD
cbSize
;
INT
cItems
;
INT
cColumns
;
INT
cRows
;
INT
iColFocus
;
INT
iRowFocus
;
INT
cxItem
;
INT
cyItem
;
POINT
ptStart
;
}
ALTTABINFO
,
*
PALTTABINFO
,
*
LPALTTABINFO
;
/* SetWinEventHook() flags */
#define WINEVENT_OUTOFCONTEXT 0x0
#define WINEVENT_SKIPOWNTHREAD 0x1
...
...
@@ -3815,6 +3829,9 @@ INT WINAPI EnumPropsExW(HWND,PROPENUMPROCEXW,LPARAM);
#define EnumPropsEx WINELIB_NAME_AW(EnumPropsEx)
BOOL
WINAPI
EnumThreadWindows
(
DWORD
,
WNDENUMPROC
,
LPARAM
);
BOOL
WINAPI
ExitWindowsEx
(
UINT
,
DWORD
);
BOOL
WINAPI
GetAltTabInfoA
(
HWND
,
INT
,
PALTTABINFO
,
LPSTR
,
UINT
);
BOOL
WINAPI
GetAltTabInfoW
(
HWND
,
INT
,
PALTTABINFO
,
LPWSTR
,
UINT
);
#define GetAltTabInfo WINELIB_NAME_AW(GetAltTabInfo)
BOOL
WINAPI
GetIconInfo
(
HICON
,
PICONINFO
);
HKL
WINAPI
GetKeyboardLayout
(
DWORD
);
UINT
WINAPI
GetKeyboardLayoutList
(
INT
,
HKL
*
);
...
...
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