~ubuntu-branches/ubuntu/jaunty/ekiga/jaunty-updates

« back to all changes in this revision

Viewing changes to lib/gui/gmtray/pixbuf_to_hicon.c

  • Committer: Bazaar Package Importer
  • Author(s): Fernando Ribeiro
  • Date: 2007-09-24 11:58:54 UTC
  • mfrom: (1.2.1 etch) (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070924115854-ayk5euq2uvz3h1r8
Tags: 2.0.11-1ubuntu1
* Close (LP: #117732)
* Resynchronized with Debian, only Ubuntu changes are:
  - debian/control.in, debian/patches/01_lpi.dpatch, 
    debian/patches/02_autoconf.dpatch: 
    - Launchpad Integration
  - debian/control.in, debian/patches/42_change_pixmaps.dpatch:
    - patched icons.
  - debian/patches/trayicon_transparency.dpatch,
    debian/patches/os-detection.dpatch,
    debian/patches/50_fix_POTFILES.in.dpatch:
    - Distro fixes.
  - debian/control.in:
    - Added Maintainer to MOTU
    - Updated Build-Depends
    - Updated Depends
    - Dropped Suggests
  - debian/ekiga.menu:
    - Updated
  - debian/rules:
    - Added dbus support
    - intltool magic.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 * released.
49
49
 */
50
50
 
51
 
typedef struct { 
52
 
  DWORD        bV5Size; 
53
 
  LONG         bV5Width; 
54
 
  LONG         bV5Height; 
55
 
  WORD         bV5Planes; 
56
 
  WORD         bV5BitCount; 
57
 
  DWORD        bV5Compression; 
58
 
  DWORD        bV5SizeImage; 
59
 
  LONG         bV5XPelsPerMeter; 
60
 
  LONG         bV5YPelsPerMeter; 
61
 
  DWORD        bV5ClrUsed; 
62
 
  DWORD        bV5ClrImportant; 
63
 
  DWORD        bV5RedMask; 
64
 
  DWORD        bV5GreenMask; 
65
 
  DWORD        bV5BlueMask; 
66
 
  DWORD        bV5AlphaMask; 
67
 
  DWORD        bV5CSType; 
68
 
  CIEXYZTRIPLE bV5Endpoints; 
69
 
  DWORD        bV5GammaRed; 
70
 
  DWORD        bV5GammaGreen; 
71
 
  DWORD        bV5GammaBlue; 
72
 
  DWORD        bV5Intent; 
73
 
  DWORD        bV5ProfileData; 
74
 
  DWORD        bV5ProfileSize; 
75
 
  DWORD        bV5Reserved; 
76
 
} BITMAPV5HEADER;
77
 
 
78
51
 
79
52
gboolean
80
53
_gdk_win32_pixbuf_to_hicon_supports_alpha (void)