~ubuntu-branches/ubuntu/lucid/lablgtk2/lucid

« back to all changes in this revision

Viewing changes to src/ml_gdkpixbuf.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian OCaml Maintainers, Samuel Mimram, Stefano Zacchiroli
  • Date: 2005-11-16 23:50:37 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051116235037-n5x1ull5p95lxzhv
Tags: 2.6.0-1
[ Samuel Mimram ]

* Rebuild with OCaml 3.09.0.
* No longer hardcoding OCaml's ABI in debian/* files (thanks Sven Luther).
* Updated standards version to 3.6.2, no changes needed.

[ Stefano Zacchiroli ]

* New upstream release
* debian/META*
  - bumped versions
* debian/control.in
  - bumped lablgl deps to the minimum version rebuilt with OCaml 3.09.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: ml_gdkpixbuf.h,v 1.4 2004/08/23 21:37:40 oandrieu Exp $ */
 
1
/* $Id: ml_gdkpixbuf.h,v 1.6 2005/10/03 11:12:53 oandrieu Exp $ */
2
2
 
3
3
#define GdkPixbuf_val(val)       (check_cast(GDK_PIXBUF, val))
4
 
#define Val_GdkPixbuf(val)       Val_GAnyObject(val)
5
 
#define Val_GdkPixbuf_new(val)   Val_GAnyObject_new(val)
 
4
value Val_GdkPixbuf_ (GdkPixbuf *, gboolean);
 
5
#define Val_GdkPixbuf(p)         Val_GdkPixbuf_(p, TRUE)
 
6
#define Val_GdkPixbuf_new(p)     Val_GdkPixbuf_(p, FALSE)