view src/win32/mingw_plus/winuser_extra.h @ 5865:412c5a0f9ef1

[gaim-migrate @ 6296] Tweedle-Dee gave Tweedle-Dumb an orange. The cat watched with amusement. The cow jumped over the balloon. The Balloon got very worried, indeed. I'm going to publish a book of nursery rhymes. Oh, and this commit just adds a '*'. It's great stuff. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 14 Jun 2003 11:18:08 +0000
parents 473b1ea6b616
children 92cbf9713795
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 */
#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 dosn't have */
typedef struct {
    UINT  cbSize;
    HWND  hwnd;
    DWORD dwFlags;
    UINT  uCount;
    DWORD dwTimeout;
} FLASHWINFO, *PFLASHWINFO;

#endif /* _WINUSER_EXTRA_H_ */