1 /*****************************************************************************/
2 /* XBalloon - Balloons move on root window.                                  */
3 /*                                                                           */
4 /* XBalloon Copyright (c) 1999 Sakai Hiroaki.                                */
5 /* All Rights Reserved.                                                      */
6 /*                                                                           */
7 /* XBalloon is a simple demonstration program for X. Balloons move on root   */
8 /* window. You can use a faborite pixmap as balloons.                        */
9 /*                                                                           */
10 /* XBalloon is a free software. You may copy or distribute the original      */
11 /* XBalloon freely. But, you may not modify or distribute the original       */
12 /* XBalloon without permission of the author.                                */
13 /*****************************************************************************/
14 
15 #ifndef _XBALLOON_INIT_H_INCLUDED_
16 #define _XBALLOON_INIT_H_INCLUDED_
17 
18 /*****************************************************************************/
19 /* Include Header Files.                                                     */
20 /*****************************************************************************/
21 
22 #include <time.h>
23 
24 #include "configure.h"
25 #include "xballoon.h"
26 
27 /*****************************************************************************/
28 /* Definitions of Functions.                                                 */
29 /*****************************************************************************/
30 
31 void MakeBalloon(int i);
32 void InitializeBalloon();
33 
34 #endif
35 
36 /*****************************************************************************/
37 /* End of XBalloon.                                                          */
38 /*****************************************************************************/
39