Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
0e27c979
Commit
0e27c979
authored
Aug 12, 2003
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 12, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation of FlashWindowEx.
parent
f6983b28
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
user32.spec
dlls/user/user32.spec
+1
-1
winuser.h
include/winuser.h
+17
-0
win.c
windows/win.c
+8
-0
No files found.
dlls/user/user32.spec
View file @
0e27c979
...
...
@@ -203,7 +203,7 @@
@ stdcall FindWindowExW(long long wstr wstr)
@ stdcall FindWindowW(wstr wstr)
@ stdcall FlashWindow(long long)
# @ stub FlashWindowEx
@ stdcall FlashWindowEx(ptr)
@ stdcall FrameRect(long ptr long)
@ stdcall FreeDDElParam(long long)
@ stdcall GetActiveWindow()
...
...
include/winuser.h
View file @
0e27c979
...
...
@@ -2943,6 +2943,22 @@ typedef struct tagMINIMIZEDMETRICS {
#define AW_VER_POSITIVE 0x00000004
#define AW_VER_NEGATIVE 0x00000008
/* FlashWindowEx() flags */
#define FLASHW_STOP 0x00000000
#define FLASHW_CAPTION 0x00000001
#define FLASHW_TRAY 0x00000002
#define FLASHW_ALL (FLASHW_CAPTION|FLASHW_TRAY)
#define FLASHW_TIMER 0x00000004
#define FLASHW_TIMERNOFG 0x0000000C
typedef
struct
{
UINT
cbSize
;
HWND
hwnd
;
DWORD
dwFlags
;
UINT
uCount
;
DWORD
dwTimeout
;
}
FLASHWINFO
,
*
PFLASHWINFO
;
/* WM_SHOWWINDOW wParam codes */
#define SW_PARENTCLOSING 1
#define SW_OTHERMAXIMIZED 2
...
...
@@ -4077,6 +4093,7 @@ HWND WINAPI FindWindowExA(HWND,HWND,LPCSTR,LPCSTR);
HWND
WINAPI
FindWindowExW
(
HWND
,
HWND
,
LPCWSTR
,
LPCWSTR
);
#define FindWindowEx WINELIB_NAME_AW(FindWindowEx)
BOOL
WINAPI
FlashWindow
(
HWND
,
BOOL
);
BOOL
WINAPI
FlashWindowEx
(
PFLASHWINFO
);
INT
WINAPI
FrameRect
(
HDC
,
const
RECT
*
,
HBRUSH
);
HWND
WINAPI
GetActiveWindow
(
void
);
HWND
WINAPI
GetAncestor
(
HWND
,
UINT
);
...
...
windows/win.c
View file @
0e27c979
...
...
@@ -3137,6 +3137,14 @@ BOOL WINAPI FlashWindow( HWND hWnd, BOOL bInvert )
}
}
/*******************************************************************
* FlashWindowEx (USER32.@)
*/
BOOL
WINAPI
FlashWindowEx
(
PFLASHWINFO
pfwi
)
{
FIXME
(
"%p
\n
"
,
pfwi
);
return
TRUE
;
}
/*******************************************************************
* GetWindowContextHelpId (USER32.@)
...
...
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