1 /* @include embinit ***********************************************************
2 **
3 ** General routines for initialisation
4 **
5 ** @author Copyright (c) 1999 Alan Bleasby
6 ** @version $Revision: 1.7 $
7 ** @modified $Date: 2011/09/27 11:19:27 $ by $Author: rice $
8 ** @@
9 **
10 ** This library is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU Lesser General Public
12 ** License as published by the Free Software Foundation; either
13 ** version 2.1 of the License, or (at your option) any later version.
14 **
15 ** This library is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ** Lesser General Public License for more details.
19 **
20 ** You should have received a copy of the GNU Lesser General Public
21 ** License along with this library; if not, write to the Free Software
22 ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
23 ** MA  02110-1301,  USA.
24 ******************************************************************************/
25 
26 #ifndef EMBINIT_H
27 #define EMBINIT_H
28 
29 
30 
31 
32 /* ========================================================================= */
33 /* ============================= include files ============================= */
34 /* ========================================================================= */
35 
36 #include "ajdefine.h"
37 
38 AJ_BEGIN_DECLS
39 
40 
41 
42 
43 /* ========================================================================= */
44 /* =============================== constants =============================== */
45 /* ========================================================================= */
46 
47 
48 
49 
50 /* ========================================================================= */
51 /* ============================== public data ============================== */
52 /* ========================================================================= */
53 
54 
55 
56 
57 /* ========================================================================= */
58 /* =========================== public functions ============================ */
59 /* ========================================================================= */
60 
61 
62 
63 /*
64 ** Prototype definitions
65 */
66 
67 void embInit (const char *pgm, ajint argc, char * const argv[]);
68 void embInitP (const char *pgm, ajint argc, char * const argv[],
69 	       const char *package);
70 
71 void embInitPV (const char *pgm, ajint argc, char * const argv[],
72 	       const char *package, const char *packversion);
73 
74 /*
75 ** End of prototype definitions
76 */
77 
78 AJ_END_DECLS
79 
80 #endif  /* !EMBINIT_H */
81