view src/win32/mingw_plus/winuser_extra.h @ 3968:e0ed2597587b

[gaim-migrate @ 4152] Initial import committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Sat, 16 Nov 2002 01:00:53 +0000
parents
children e0f868943dee
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 dosn't have */
/*#if(WINVER >= 0x0500)*/
#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
/*#endif /* WINVER >= 0x0500 */


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

/*
 *  PROTOS
 */
/* From MS user32.lib (mingw 1.1 dosn't have it) */
extern BOOL FlashWindowEx(PFLASHWINFO pfwi);

#endif /* _WINUSER_EXTRA_H_ */