head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2005.08.12.06.55.16; author behdad; state Exp; branches; next ; commitid 677642fc47b54567; desc @@ 1.1 log @2005-08-12 Behdad Esfahbod * *: port to Gtk+ >= 2.7 instead of GtkCairo. Change the name everywhere (in filenames too) to reflect this change. (used to be in gtkcairo_slide) @ text @#ifndef PUZZLE_H #define PUZZLE_H #include #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define PUZZLE(obj) GTK_CHECK_CAST (obj, puzzle_get_type (), Puzzle) #define PUZZLE_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, puzzle_get_type (), PuzzleClass) #define IS_PUZZLE(obj) GTK_CHECK_TYPE (obj, puzzle_get_type ()) typedef struct _Puzzle Puzzle; typedef struct _PuzzleClass PuzzleClass; GtkType puzzle_get_type (void); GtkWidget *puzzle_new (void); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* PUZZLE_H */ @