hot-babe/loader.h
Eirik Øverby 19b9d73eba Release 0.1.4
Seems to introduce PNG support. From original change log:

0.1.4:
    New option: -n, --nice
    New option: --dir
    Load images from a directory

0.1.3:
    Bugfixes and optimisation release (use much less cpu).
    Nothing new here.
2025-02-09 17:54:26 +01:00

31 lines
1.1 KiB
C

/* Hot-babe
* Copyright (C) 2002 DindinX <David@dindinx.org>
* Copyright (C) 2002 Bruno Bellamy.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Please note that part of this code is from wmbubble, and such should be
* copyrighted by <timecop@japan.co.jp>
*
*/
typedef struct
{
gint height, width;
gint samples, current_sample;
GdkPixbuf **pixbuf;
} HotBabeAnim;
int load_anim( HotBabeAnim *anim, gchar *dirname );