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_ARGUMENT_H_INCLUDED_
16 #define _XBALLOON_ARGUMENT_H_INCLUDED_
17 
18 /*****************************************************************************/
19 /* Include Header Files.                                                     */
20 /*****************************************************************************/
21 
22 #include <stdio.h>
23 #include <stdlib.h>
24 
25 #include "configure.h"
26 #include "xballoon.h"
27 
28 /*****************************************************************************/
29 /* Definitions of Functions.                                                 */
30 /*****************************************************************************/
31 
32 void Help();
33 void SetDefaultValue();
34 void DeleteParameter(int * argc, char ** argv, int i);
35 int CheckParameters(int * argc, char ** argv, char * s);
36 char * GetStringFromParameters(int * argc, char ** argv, char * s);
37 void ReadParameters(int * argc, char ** argv);
38 
39 #endif
40 
41 /*****************************************************************************/
42 /* End of XBalloon.                                                          */
43 /*****************************************************************************/
44