~ubuntu-branches/ubuntu/karmic/alogg/karmic

« back to all changes in this revision

Viewing changes to datogg.inc

  • Committer: Bazaar Package Importer
  • Author(s): Alexandre Pineau
  • Date: 2004-02-15 23:01:45 UTC
  • Revision ID: james.westby@ubuntu.com-20040215230145-6ij4xz3m3t2zijg4
Tags: upstream-1.3.3
ImportĀ upstreamĀ versionĀ 1.3.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2002 Vincent Penquerc'h.
 
2
   This file is part of the alogg library.
 
3
   Written by Vincent Penquerc'h <lyrian -at- kezako -dot- net>.
 
4
 
 
5
   Allegro and the alogg grabber plugin are gift-ware. They were created by
 
6
   a number of people working in cooperation, and are given to you freely as
 
7
   a gift. You may use, modify, redistribute, and generally hack them about
 
8
   in any way you like, and you do not have to give us anything in return.
 
9
   However, if you like these products you are encouraged to thank us by
 
10
   making a return gift to the Allegro/alogg community. This could be by
 
11
   writing an add-on package, providing a useful bug report, making an
 
12
   improvement to the library and/or the plugin, or perhaps just releasing
 
13
   the sources of your program so that other people can learn from them.
 
14
   If you redistribute parts of this code or make a game using it, it
 
15
   would be nice if you mentioned Allegro and alogg somewhere in the
 
16
   credits, but you are not required to do this. We trust you not to abuse
 
17
   our generosity. */
 
18
 
 
19
/* registration code for setting up the Ogg/Vorbis object plugin */
 
20
{
 
21
   extern DATEDIT_OBJECT_INFO datogg_info;
 
22
   extern DATEDIT_GRABBER_INFO datogg_grabber;
 
23
 
 
24
   extern void datogg_init();
 
25
   datogg_init();
 
26
 
 
27
   datedit_register_object(&datogg_info);
 
28
   datedit_register_grabber(&datogg_grabber);
 
29
}
 
30