view src/win32/mingw_plus/winuser_extra.h @ 10689:04e61e64db63

[gaim-migrate @ 12238] Update of the apspec file by Curtis. amoung other things, it now uses some of the same descriptions as the rpm spec file. I wonder why these don't match the about box? committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Sun, 13 Mar 2005 14:23:10 +0000
parents 92cbf9713795
children
line wrap: on
line source

/* 
 * winuser_extra.h
 *
 * Description: The following is missing from mingw 1.1
 */

#ifndef _WINUSER_EXTRA_H_
#define _WINUSER_EXTRA_H_

/* From MSDN Lib - Mingw doesn't have */
#define FLASHW_STOP         0
#define FLASHW_CAPTION      0x00000001
#define FLASHW_TRAY         0x00000002
#define FLASHW_ALL          (FLASHW_CAPTION | FLASHW_TRAY)
#define FLASHW_TIMER        0x00000004
#define FLASHW_TIMERNOFG    0x0000000C


/* From MSDN Lib - Mingw doesn't have */
typedef struct {
    UINT  cbSize;
    HWND  hwnd;
    DWORD dwFlags;
    UINT  uCount;
    DWORD dwTimeout;
} FLASHWINFO, *PFLASHWINFO;

#endif /* _WINUSER_EXTRA_H_ */