[cairo-commit]
cairo-ocaml/src svg_cairo.mli, 1.1, 1.2 svg_cairo.ml,
1.1, 1.2 ml_svg_cairo.c, 1.1, 1.2 ml_cairo_wrappers.h, 1.7,
1.8 ml_cairo_wrappers.c, 1.2, 1.3 ml_cairo_status.h, 1.2,
1.3 ml_cairo_status.c, 1.4, 1.5 ml_cairo_path.c, 1.2,
1.3 ml_cairo_lablgtk.c, 1.9, 1.10 ml_cairo_gtkcairo.c, 1.2,
1.3 ml_cairo_ft.c, 1.3, 1.4 ml_cairo_channel.h, 1.1.1.1,
1.2 ml_cairo_channel.c, 1.3, 1.4 ml_cairo_bigarr.c, 1.4,
1.5 ml_cairo.h, 1.7, 1.8 ml_cairo.c, 1.18,
1.19 cairo_lablgtk.mli, 1.3, 1.4 cairo_lablgtk.ml, 1.1,
1.2 cairo_gtkcairo.mli, 1.2, 1.3 cairo_gtkcairo.ml, 1.2,
1.3 cairo_ft.mli, 1.2, 1.3 cairo_ft.ml, 1.2,
1.3 cairo_channel.mli, 1.3, 1.4 cairo_channel.ml, 1.1,
1.2 cairo_bigarray.mli, 1.2, 1.3 cairo_bigarray.ml, 1.2,
1.3 cairo.mli, 1.13, 1.14 cairo.ml, 1.11, 1.12
Olivier Andrieu
commit at pdx.freedesktop.org
Wed Mar 2 10:52:32 PST 2005
- Previous message: [cairo-commit] cairo-ocaml README, NONE, 1.1 COPYING, NONE,
1.1 .cvsignore, 1.1, 1.2
- Next message: [cairo-commit] roadster ChangeLog,1.29,1.30 configure.ac,1.8,1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: oandrieu
Update of /cvs/cairo/cairo-ocaml/src
In directory gabe:/tmp/cvs-serv19695/src
Modified Files:
svg_cairo.mli svg_cairo.ml ml_svg_cairo.c ml_cairo_wrappers.h
ml_cairo_wrappers.c ml_cairo_status.h ml_cairo_status.c
ml_cairo_path.c ml_cairo_lablgtk.c ml_cairo_gtkcairo.c
ml_cairo_ft.c ml_cairo_channel.h ml_cairo_channel.c
ml_cairo_bigarr.c ml_cairo.h ml_cairo.c cairo_lablgtk.mli
cairo_lablgtk.ml cairo_gtkcairo.mli cairo_gtkcairo.ml
cairo_ft.mli cairo_ft.ml cairo_channel.mli cairo_channel.ml
cairo_bigarray.mli cairo_bigarray.ml cairo.mli cairo.ml
Log Message:
add a README, the license (LGPL) and add a copyright header to all
source files
Index: svg_cairo.mli
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/svg_cairo.mli,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- svg_cairo.mli 1 Mar 2005 22:19:52 -0000 1.1
+++ svg_cairo.mli 2 Mar 2005 18:52:29 -0000 1.2
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
type status =
NO_MEMORY
| IO_ERROR
Index: svg_cairo.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/svg_cairo.ml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- svg_cairo.ml 1 Mar 2005 22:19:52 -0000 1.1
+++ svg_cairo.ml 2 Mar 2005 18:52:29 -0000 1.2
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
type status =
NO_MEMORY
| IO_ERROR
Index: ml_svg_cairo.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_svg_cairo.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ml_svg_cairo.c 1 Mar 2005 22:19:52 -0000 1.1
+++ ml_svg_cairo.c 2 Mar 2005 18:52:29 -0000 1.2
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <caml/alloc.h>
#include <caml/memory.h>
#include <caml/fail.h>
Index: ml_cairo_wrappers.h
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_wrappers.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- ml_cairo_wrappers.h 1 Mar 2005 22:19:52 -0000 1.7
+++ ml_cairo_wrappers.h 2 Mar 2005 18:52:29 -0000 1.8
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#define Pointer_val(val) ((void*)Field(val,1))
#define Store_pointer(val, p) (Field(val, 1)=Val_bp(p))
Index: ml_cairo_wrappers.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_wrappers.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ml_cairo_wrappers.c 28 Oct 2004 13:46:00 -0000 1.2
+++ ml_cairo_wrappers.c 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <caml/mlvalues.h>
#include <caml/alloc.h>
#include "ml_cairo_wrappers.h"
Index: ml_cairo_status.h
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_status.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ml_cairo_status.h 18 Oct 2004 00:27:34 -0000 1.2
+++ ml_cairo_status.h 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
void cairo_treat_status (cairo_status_t);
void check_cairo_status (value cr);
Index: ml_cairo_status.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_status.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ml_cairo_status.c 26 Jan 2005 00:54:15 -0000 1.4
+++ ml_cairo_status.c 2 Mar 2005 18:52:29 -0000 1.5
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <cairo.h>
#include <caml/callback.h>
#include <caml/fail.h>
Index: ml_cairo_path.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_path.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ml_cairo_path.c 28 Oct 2004 13:46:00 -0000 1.2
+++ ml_cairo_path.c 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <caml/mlvalues.h>
#include <caml/alloc.h>
#include <caml/memory.h>
Index: ml_cairo_lablgtk.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_lablgtk.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- ml_cairo_lablgtk.c 26 Jan 2005 00:54:15 -0000 1.9
+++ ml_cairo_lablgtk.c 2 Mar 2005 18:52:29 -0000 1.10
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gdk/gdkx.h>
Index: ml_cairo_gtkcairo.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_gtkcairo.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ml_cairo_gtkcairo.c 26 Jan 2005 00:54:15 -0000 1.2
+++ ml_cairo_gtkcairo.c 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <gtkcairo.h>
#include <caml/mlvalues.h>
Index: ml_cairo_ft.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_ft.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ml_cairo_ft.c 1 Mar 2005 22:19:52 -0000 1.3
+++ ml_cairo_ft.c 2 Mar 2005 18:52:29 -0000 1.4
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <caml/mlvalues.h>
#include <caml/alloc.h>
#include <caml/memory.h>
Index: ml_cairo_channel.h
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_channel.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ml_cairo_channel.h 18 Nov 2003 19:02:25 -0000 1.1.1.1
+++ ml_cairo_channel.h 2 Mar 2005 18:52:29 -0000 1.2
@@ -1,2 +1,9 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
#define FILE_val(v) ((FILE *) Pointer_val(v))
Index: ml_cairo_channel.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_channel.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ml_cairo_channel.c 28 Oct 2004 13:46:01 -0000 1.3
+++ ml_cairo_channel.c 2 Mar 2005 18:52:29 -0000 1.4
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <caml/mlvalues.h>
#include <caml/alloc.h>
#include <caml/memory.h>
Index: ml_cairo_bigarr.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo_bigarr.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ml_cairo_bigarr.c 28 Oct 2004 13:46:01 -0000 1.4
+++ ml_cairo_bigarr.c 2 Mar 2005 18:52:29 -0000 1.5
@@ -1,3 +1,10 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
#include <caml/bigarray.h>
Index: ml_cairo.h
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- ml_cairo.h 26 Jan 2005 00:54:15 -0000 1.7
+++ ml_cairo.h 2 Mar 2005 18:52:29 -0000 1.8
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
struct ml_cairo {
cairo_t *cr;
int suspend_exn;
Index: ml_cairo.c
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/ml_cairo.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- ml_cairo.c 1 Mar 2005 22:19:52 -0000 1.18
+++ ml_cairo.c 2 Mar 2005 18:52:29 -0000 1.19
@@ -1,3 +1,11 @@
+/**************************************************************************/
+/* cairo-ocaml -- Objective Caml bindings for Cairo */
+/* Copyright © 2004-2005 Olivier Andrieu */
+/* */
+/* This code is free software and is licensed under the terms of the */
+/* GNU Lesser General Public License version 2.1 (the "LGPL"). */
+/**************************************************************************/
+
#include <caml/mlvalues.h>
#include <caml/alloc.h>
#include <caml/memory.h>
Index: cairo_lablgtk.mli
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_lablgtk.mli,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cairo_lablgtk.mli 28 Oct 2004 13:46:01 -0000 1.3
+++ cairo_lablgtk.mli 2 Mar 2005 18:52:29 -0000 1.4
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
(** Support for the X11 backend, via LablGTK *)
external image_of_pixbuf : GdkPixbuf.pixbuf -> Cairo.image = "cairo_lablgtk_of_pixbuf"
Index: cairo_lablgtk.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_lablgtk.ml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cairo_lablgtk.ml 24 Mar 2004 10:39:24 -0000 1.1
+++ cairo_lablgtk.ml 2 Mar 2005 18:52:29 -0000 1.2
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
external image_of_pixbuf : GdkPixbuf.pixbuf -> Cairo.image = "cairo_lablgtk_of_pixbuf"
external shuffle_pixels : GdkPixbuf.pixbuf -> unit = "cairo_lablgtk_shuffle_pixels"
Index: cairo_gtkcairo.mli
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_gtkcairo.mli,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cairo_gtkcairo.mli 6 Jul 2004 17:22:02 -0000 1.2
+++ cairo_gtkcairo.mli 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
type gtkcairo = [Gtk.widget | `gtkcairo]
external get_cairo : [> `gtkcairo ] Gtk.obj -> Cairo.t
Index: cairo_gtkcairo.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_gtkcairo.ml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cairo_gtkcairo.ml 6 Jul 2004 17:22:02 -0000 1.2
+++ cairo_gtkcairo.ml 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
type gtkcairo = [Gtk.widget | `gtkcairo]
Index: cairo_ft.mli
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_ft.mli,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cairo_ft.mli 26 Jan 2005 00:54:15 -0000 1.2
+++ cairo_ft.mli 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
(** Minimal support for the Fontconfig/Freetype font interface *)
exception FT_Error of int
Index: cairo_ft.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_ft.ml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cairo_ft.ml 26 Jan 2005 00:54:15 -0000 1.2
+++ cairo_ft.ml 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
exception FT_Error of int
let _ = Callback.register_exception "FT_exn" (FT_Error 0)
Index: cairo_channel.mli
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_channel.mli,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cairo_channel.mli 26 Jan 2005 00:54:15 -0000 1.3
+++ cairo_channel.mli 2 Mar 2005 18:52:29 -0000 1.4
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
(** Support module for file-based backends (PostScript, PDF and PNG) *)
type t
Index: cairo_channel.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_channel.ml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cairo_channel.ml 26 Jan 2005 00:54:15 -0000 1.1
+++ cairo_channel.ml 2 Mar 2005 18:52:29 -0000 1.2
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
type t
external of_out_channel : out_channel -> t = "ml_FILE_of_channel"
external of_file_descr : Unix.file_descr -> t = "ml_FILE_of_file_descr"
Index: cairo_bigarray.mli
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_bigarray.mli,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cairo_bigarray.mli 28 Oct 2004 13:46:01 -0000 1.2
+++ cairo_bigarray.mli 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
(** Support for the in-memory image backend, via Bigarray *)
open Bigarray
Index: cairo_bigarray.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo_bigarray.ml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cairo_bigarray.ml 28 Oct 2004 13:46:01 -0000 1.2
+++ cairo_bigarray.ml 2 Mar 2005 18:52:29 -0000 1.3
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
type image = {
data : Obj.t ;
format : Cairo.format ;
Index: cairo.mli
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo.mli,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- cairo.mli 26 Jan 2005 00:54:15 -0000 1.13
+++ cairo.mli 2 Mar 2005 18:52:29 -0000 1.14
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
(** Cairo Graphics *)
Index: cairo.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/src/cairo.ml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- cairo.ml 26 Jan 2005 00:54:15 -0000 1.11
+++ cairo.ml 2 Mar 2005 18:52:29 -0000 1.12
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(* cairo-ocaml -- Objective Caml bindings for Cairo *)
+(* Copyright © 2004-2005 Olivier Andrieu *)
+(* *)
+(* This code is free software and is licensed under the terms of the *)
+(* GNU Lesser General Public License version 2.1 (the "LGPL"). *)
+(**************************************************************************)
+
type status =
NO_MEMORY
| INVALID_RESTORE
- Previous message: [cairo-commit] cairo-ocaml README, NONE, 1.1 COPYING, NONE,
1.1 .cvsignore, 1.1, 1.2
- Next message: [cairo-commit] roadster ChangeLog,1.29,1.30 configure.ac,1.8,1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list