source: owl.h @ 9c1e61d4

release-1.10release-1.7release-1.8release-1.9
Last change on this file since 9c1e61d4 was 9c1e61d4, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Add OWL_SEARCH_CONTINUE and OWL_SEARCH_MATCH_CURRENT Instead of having a confusing mode argument, define more constants.
  • Property mode set to 100644
File size: 18.4 KB
Line 
1/*  Copyright (c) 2006-2010 The BarnOwl Developers. All rights reserved.
2 *  Copyright (c) 2004 James Kretchmar. All rights reserved.
3 *
4 *  This program is free software. You can redistribute it and/or
5 *  modify under the terms of the Sleepycat License. See the COPYING
6 *  file included with the distribution for more information.
7 */
8
9#ifndef INC_BARNOWL_OWL_H
10#define INC_BARNOWL_OWL_H
11
12#include "config.h"
13
14#ifdef HAVE_STDBOOL_H
15#include <stdbool.h>
16#else
17#ifndef HAVE__BOOL
18#define _Bool signed char
19#endif
20#define bool _Bool
21#define false 0
22#define true 1
23#define __bool_true_false_are_defined 1
24#endif  /* HAVE_STDBOOL_H */
25
26#ifndef OWL_PERL
27#include <curses.h>
28#include <panel.h>
29#endif
30#include <sys/param.h>
31#include <EXTERN.h>
32#include <netdb.h>
33#include <regex.h>
34#include <time.h>
35#include <signal.h>
36#include <termios.h>
37#include "libfaim/aim.h"
38#include <wchar.h>
39#include "glib.h"
40#ifdef HAVE_LIBZEPHYR
41#include <zephyr/zephyr.h>
42#endif
43#ifdef HAVE_COM_ERR_H
44#include <com_err.h>
45#endif
46
47/* Perl and curses don't play nice. */
48#ifdef OWL_PERL
49typedef void WINDOW;
50typedef void PANEL;
51/* logout is defined in FreeBSD. */
52#define logout logout_
53#define HAS_BOOL
54#include <perl.h>
55#include "owl_perl.h"
56#undef logout
57#include "XSUB.h"
58#else
59typedef void SV;
60typedef void AV;
61typedef void HV;
62#endif
63
64#include "window.h"
65
66#ifdef  GIT_VERSION
67#define stringify(x)       __stringify(x)
68#define __stringify(x)     #x
69#define OWL_VERSION_STRING stringify(GIT_VERSION)
70#else
71#define OWL_VERSION_STRING PACKAGE_VERSION
72#endif
73
74/* Feature that is being tested to redirect stderr through a pipe.
75 * There may still be some portability problems with this. */
76#define OWL_STDERR_REDIR 1
77
78#define OWL_DEBUG 0
79#define OWL_DEBUG_FILE "/var/tmp/barnowl-debug"
80
81#define OWL_CONFIG_DIR "/.owl"             /* this is relative to the user's home directory */
82#define OWL_STARTUP_FILE "/.owl/startup"   /* this is relative to the user's home directory */
83
84#define OWL_FMTEXT_ATTR_NONE      0
85#define OWL_FMTEXT_ATTR_BOLD      1
86#define OWL_FMTEXT_ATTR_REVERSE   2
87#define OWL_FMTEXT_ATTR_UNDERLINE 4
88
89#define OWL_FMTEXT_UC_BASE 0x100000 /* Unicode Plane 16 - Supplementary Private Use Area-B*/
90#define OWL_FMTEXT_UC_ATTR ( OWL_FMTEXT_UC_BASE | 0x800 )
91#define OWL_FMTEXT_UC_ATTR_MASK 0x7
92#define OWL_FMTEXT_UC_COLOR_BASE ( OWL_FMTEXT_UC_BASE | 0x400 )
93#define OWL_FMTEXT_UC_FGCOLOR OWL_FMTEXT_UC_COLOR_BASE
94#define OWL_FMTEXT_UC_BGCOLOR ( OWL_FMTEXT_UC_COLOR_BASE | 0x200 )
95#define OWL_FMTEXT_UC_DEFAULT_COLOR 0x100
96#define OWL_FMTEXT_UC_FGDEFAULT ( OWL_FMTEXT_UC_FGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR )
97#define OWL_FMTEXT_UC_BGDEFAULT ( OWL_FMTEXT_UC_BGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR )
98#define OWL_FMTEXT_UC_COLOR_MASK 0xFF
99#define OWL_FMTEXT_UC_ALLCOLOR_MASK ( OWL_FMTEXT_UC_COLOR_MASK | OWL_FMTEXT_UC_DEFAULT_COLOR | 0x200)
100#define OWL_FMTEXT_UC_STARTBYTE_UTF8 '\xf4'
101
102#define OWL_FMTEXT_UTF8_ATTR_NONE "\xf4\x80\xa0\x80"
103#define OWL_FMTEXT_UTF8_FGDEFAULT "\xf4\x80\x94\x80"
104#define OWL_FMTEXT_UTF8_BGDEFAULT "\xf4\x80\x9C\x80"
105
106#define OWL_COLOR_BLACK     0
107#define OWL_COLOR_RED       1
108#define OWL_COLOR_GREEN     2
109#define OWL_COLOR_YELLOW    3
110#define OWL_COLOR_BLUE      4
111#define OWL_COLOR_MAGENTA   5
112#define OWL_COLOR_CYAN      6
113#define OWL_COLOR_WHITE     7
114#define OWL_COLOR_DEFAULT   -1
115#define OWL_COLOR_INVALID   -2
116
117#define OWL_TAB_WIDTH 8
118
119#define OWL_EDITWIN_STYLE_MULTILINE 0
120#define OWL_EDITWIN_STYLE_ONELINE   1
121
122#define OWL_PROTOCOL_ZEPHYR         0
123#define OWL_PROTOCOL_AIM            1
124#define OWL_PROTOCOL_JABBER         2
125#define OWL_PROTOCOL_ICQ            3
126#define OWL_PROTOCOL_YAHOO          4
127#define OWL_PROTOCOL_MSN            5
128
129#define OWL_MESSAGE_DIRECTION_NONE  0
130#define OWL_MESSAGE_DIRECTION_IN    1
131#define OWL_MESSAGE_DIRECTION_OUT   2
132
133#define OWL_IO_READ   1
134#define OWL_IO_WRITE  2
135#define OWL_IO_EXCEPT 4
136
137#define OWL_DIRECTION_NONE      0
138#define OWL_DIRECTION_DOWNWARDS 1
139#define OWL_DIRECTION_UPWARDS   2
140
141#define OWL_SEARCH_MATCH_CURRENT 0
142#define OWL_SEARCH_CONTINUE      1
143
144#define OWL_LOGGING_DIRECTION_BOTH 0
145#define OWL_LOGGING_DIRECTION_IN   1
146#define OWL_LOGGING_DIRECTION_OUT  2
147
148#define OWL_SCROLLMODE_NORMAL      0
149#define OWL_SCROLLMODE_TOP         1
150#define OWL_SCROLLMODE_NEARTOP     2
151#define OWL_SCROLLMODE_CENTER      3
152#define OWL_SCROLLMODE_PAGED       4
153#define OWL_SCROLLMODE_PAGEDCENTER 5
154
155#define OWL_TAB               3  /* This *HAS* to be the size of TABSTR below */
156#define OWL_TABSTR        "   "
157#define OWL_MSGTAB            7
158#define OWL_TYPWIN_SIZE       8
159#define OWL_HISTORYSIZE       50
160
161/* Indicate current state, as well as what is allowed */
162#define OWL_CTX_ANY          0xffff
163/* Only one of these may be active at a time... */
164#define OWL_CTX_MODE_BITS    0x000f
165#define OWL_CTX_STARTUP      0x0001
166#define OWL_CTX_READCONFIG   0x0002
167#define OWL_CTX_INTERACTIVE  0x0004
168/* Only one of these may be active at a time... */
169#define OWL_CTX_ACTIVE_BITS  0xfff0
170#define OWL_CTX_POPWIN       0x00f0
171#define OWL_CTX_POPLESS      0x0010
172#define OWL_CTX_RECWIN       0x0f00
173#define OWL_CTX_RECV         0x0100
174#define OWL_CTX_TYPWIN       0xf000
175#define OWL_CTX_EDIT         0x7000
176#define OWL_CTX_EDITLINE     0x1000
177#define OWL_CTX_EDITMULTI    0x2000
178#define OWL_CTX_EDITRESPONSE 0x4000
179
180#define OWL_VARIABLE_OTHER      0
181#define OWL_VARIABLE_INT        1
182#define OWL_VARIABLE_BOOL       2
183#define OWL_VARIABLE_STRING     3
184
185#define OWL_OUTPUT_RETURN       0
186#define OWL_OUTPUT_POPUP        1
187#define OWL_OUTPUT_ADMINMSG     2
188
189#define OWL_FILTER_MAX_DEPTH    300
190
191#define OWL_KEYMAP_MAXSTACK     20
192
193#define OWL_KEYBINDING_COMMAND  1   /* command string */
194#define OWL_KEYBINDING_FUNCTION 2   /* function taking no args */
195
196#define OWL_DEFAULT_ZAWAYMSG    "I'm sorry, but I am currently away from the terminal and am\nnot able to receive your message.\n"
197#define OWL_DEFAULT_AAWAYMSG    "I'm sorry, but I am currently away from the terminal and am\nnot able to receive your message.\n"
198
199#define OWL_CMD_ALIAS_SUMMARY_PREFIX "command alias to: "
200
201#define OWL_WEBZEPHYR_PRINCIPAL "daemon.webzephyr"
202#define OWL_WEBZEPHYR_CLASS     "webzephyr"
203#define OWL_WEBZEPHYR_OPCODE    "webzephyr"
204
205#define OWL_REGEX_QUOTECHARS    "+*.?[]^\\${}()"
206#define OWL_REGEX_QUOTEWITH     "\\"
207
208#if defined(HAVE_DES_STRING_TO_KEY) && defined(HAVE_DES_KEY_SCHED) && defined(HAVE_DES_ECB_ENCRYPT)
209#define OWL_ENABLE_ZCRYPT 1
210#endif
211
212#define OWL_META(key) ((key)|010000)
213/* OWL_CTRL is definied in kepress.c */
214
215#define LINE 2048
216
217#ifdef HAVE_LIBZEPHYR
218/* libzephyr doesn't use const, so we appease the type system with this kludge.
219 * This just casts const char * to char * in a way that doesn't yield a warning
220 * from gcc -Wcast-qual. */
221static inline char *zstr(const char *str)
222{
223  union { char *rw; const char *ro; } u;
224  u.ro = str;
225  return u.rw;
226}
227#endif
228
229/* Convert char *const * into const char *const *.  This conversion is safe,
230 * and implicit in C++ (conv.qual 4) but for some reason not in C. */
231static inline const char *const *strs(char *const *pstr)
232{
233  return (const char *const *)pstr;
234}
235
236typedef struct _owl_variable {
237  char *name;
238  int   type;  /* OWL_VARIABLE_* */
239  void *pval_default;  /* for types other and string */
240  int   ival_default;  /* for types int and bool     */
241  char *validsettings;          /* documentation of valid settings */
242  char *summary;                /* summary of usage */
243  char *description;            /* detailed description */
244  void *val;                    /* current value */
245  int  (*validate_fn)(const struct _owl_variable *v, const void *newval);
246                                /* returns 1 if newval is valid */
247  int  (*set_fn)(struct _owl_variable *v, const void *newval); 
248                                /* sets the variable to a value
249                                 * of the appropriate type.
250                                 * unless documented, this
251                                 * should make a copy.
252                                 * returns 0 on success. */
253  int  (*set_fromstring_fn)(struct _owl_variable *v, const char *newval);
254                                /* sets the variable to a value
255                                 * of the appropriate type.
256                                 * unless documented, this
257                                 * should make a copy.
258                                 * returns 0 on success. */
259  const void *(*get_fn)(const struct _owl_variable *v);
260                                /* returns a reference to the current value.
261                                 * WARNING:  this approach is hard to make
262                                 * thread-safe... */
263  int  (*get_tostring_fn)(const struct _owl_variable *v, 
264                          char *buf, int bufsize, const void *val); 
265                                /* converts val to a string
266                                 * and puts into buf */
267  void (*delete_fn)(struct _owl_variable *v);
268                                /* frees val as needed */
269} owl_variable;
270
271typedef struct _owl_input {
272  int ch;
273  gunichar uch;
274} owl_input;
275
276typedef struct _owl_fmtext {
277  int textlen;
278  int bufflen;
279  char *textbuff;
280  char default_attrs;
281  short default_fgcolor;
282  short default_bgcolor;
283} owl_fmtext;
284
285typedef struct _owl_list {
286  int size;
287  int avail;
288  void **list;
289} owl_list;
290
291typedef struct _owl_dict_el {
292  char *k;                      /* key   */
293  void *v;                      /* value */
294} owl_dict_el;
295
296typedef struct _owl_dict {
297  int size;
298  int avail;
299  owl_dict_el *els;             /* invariant: sorted by k */
300} owl_dict;
301typedef owl_dict owl_vardict;   /* dict of variables */
302typedef owl_dict owl_cmddict;   /* dict of commands */
303
304typedef struct _owl_context {
305  int   mode;
306  void *data;           /* determined by mode */
307  char *keymap;
308  owl_window *cursor;
309  void (*deactivate_cb)(struct _owl_context*);
310  void (*delete_cb)(struct _owl_context*);
311  void *cbdata;
312} owl_context;
313
314typedef struct _owl_cmd {       /* command */
315  char *name;
316
317  char *summary;                /* one line summary of command */
318  char *usage;                  /* usage synopsis */
319  char *description;            /* long description of command */
320
321  int validctx;                 /* bitmask of valid contexts */
322
323  /* we should probably have a type here that says which of
324   * the following is valid, and maybe make the below into a union... */
325
326  /* Only one of these may be non-NULL ... */
327
328  char *cmd_aliased_to;         /* what this command is aliased to... */
329 
330  /* These don't take any context */
331  char *(*cmd_args_fn)(int argc, const char *const *argv, const char *buff); 
332                                /* takes argv and the full command as buff.
333                                 * caller must free return value if !NULL */
334  void (*cmd_v_fn)(void);       /* takes no args */
335  void (*cmd_i_fn)(int i);      /* takes an int as an arg */
336
337  /* The following also take the active context if it's valid */
338  char *(*cmd_ctxargs_fn)(void *ctx, int argc, const char *const *argv, const char *buff); 
339                                /* takes argv and the full command as buff.
340                                 * caller must free return value if !NULL */
341  void (*cmd_ctxv_fn)(void *ctx);               /* takes no args */
342  void (*cmd_ctxi_fn)(void *ctx, int i);        /* takes an int as an arg */
343  SV *cmd_perl;                                /* Perl closure that takes a list of args */
344} owl_cmd;
345
346
347typedef struct _owl_zwrite {
348  char *cmd;
349  char *zwriteline;
350  char *class;
351  char *inst;
352  char *realm;
353  char *opcode;
354  char *zsig;
355  char *message;
356  owl_list recips;
357  int cc;
358  int noping;
359} owl_zwrite;
360
361typedef struct _owl_pair {
362  const char *key;
363  char *value;
364} owl_pair;
365
366struct _owl_fmtext_cache;
367
368typedef struct _owl_message {
369  int id;
370  int direction;
371#ifdef HAVE_LIBZEPHYR
372  ZNotice_t notice;
373#endif
374  struct _owl_fmtext_cache * fmtext;
375  int delete;
376  const char *hostname;
377  owl_list attributes;            /* this is a list of pairs */
378  char *timestr;
379  time_t time;
380} owl_message;
381
382#define OWL_FMTEXT_CACHE_SIZE 1000
383/* We cache the saved fmtexts for the last bunch of messages we
384   rendered */
385typedef struct _owl_fmtext_cache {
386    owl_message * message;
387    owl_fmtext fmtext;
388} owl_fmtext_cache;
389
390typedef struct _owl_style {
391  char *name;
392  SV *perlobj;
393} owl_style;
394
395typedef struct _owl_mainwin {
396  int curtruncated;
397  int lasttruncated;
398  int lastdisplayed;
399  owl_window *window;
400} owl_mainwin;
401
402typedef struct _owl_editwin owl_editwin;
403typedef struct _owl_editwin_excursion owl_editwin_excursion;
404
405typedef struct _owl_viewwin {
406  owl_fmtext fmtext;
407  int textlines;
408  int topline;
409  int rightshift;
410  owl_window *window;
411  void (*onclose_hook) (struct _owl_viewwin *vwin, void *data);
412  void *onclose_hook_data;
413
414  gulong sig_resize_id;
415  owl_window *content;
416  gulong sig_content_redraw_id;
417  owl_window *status;
418  gulong sig_status_redraw_id;
419  owl_window *cmdwin;
420  owl_editwin *cmdline;
421} owl_viewwin;
422 
423typedef struct _owl_popwin {
424  owl_window *border;
425  owl_window *content;
426  gulong sig_redraw_id;
427  gulong sig_resize_id;
428} owl_popwin;
429 
430typedef struct _owl_msgwin {
431  char *msg;
432  owl_window *window;
433  gulong redraw_id;
434} owl_msgwin;
435
436typedef struct _owl_messagelist {
437  owl_list list;
438} owl_messagelist;
439
440typedef struct _owl_regex {
441  int negate;
442  char *string;
443  regex_t re;
444} owl_regex;
445
446typedef struct _owl_filterelement {
447  int (*match_message)(const struct _owl_filterelement *fe, const owl_message *m);
448  /* Append a string representation of the filterelement onto buf*/
449  void (*print_elt)(const struct _owl_filterelement *fe, GString *buf);
450  /* Operands for and,or,not*/
451  struct _owl_filterelement *left, *right;
452  /* For regex filters*/
453  owl_regex re;
454  /* Used by regexes, filter references, and perl */
455  char *field;
456} owl_filterelement;
457
458typedef struct _owl_filter {
459  char *name;
460  owl_filterelement * root;
461  int fgcolor;
462  int bgcolor;
463} owl_filter;
464
465typedef struct _owl_view {
466  char *name;
467  owl_filter *filter;
468  owl_messagelist ml;
469  const owl_style *style;
470  int cachedmsgid;
471} owl_view;
472
473typedef struct _owl_history {
474  owl_list hist;
475  int cur;
476  int touched;
477  int partial;
478  int repeats;
479} owl_history;
480
481typedef struct _owl_mainpanel {
482  owl_window *panel;
483  owl_window *typwin;
484  owl_window *sepwin;
485  owl_window *msgwin;
486  owl_window *recwin;
487  int recwinlines;
488} owl_mainpanel;
489
490typedef struct _owl_keybinding {
491  int  *keys;                   /* keypress stack */
492  int   len;                    /* length of stack */
493  int   type;                   /* command or function? */
494  char *desc;                   /* description (or "*user*") */
495  char *command;                /* command, if of type command */
496  void (*function_fn)(void);    /* function ptr, if of type function */
497} owl_keybinding;
498
499typedef struct _owl_keymap {
500  char     *name;               /* name of keymap */
501  char     *desc;               /* description */
502  owl_list  bindings;           /* key bindings */
503  const struct _owl_keymap *parent;     /* parent */
504  void (*default_fn)(owl_input j);      /* default action (takes a keypress) */
505  void (*prealways_fn)(owl_input  j);   /* always called before a keypress is received */
506  void (*postalways_fn)(owl_input  j);  /* always called after keypress is processed */
507} owl_keymap;
508
509typedef struct _owl_keyhandler {
510  owl_dict  keymaps;            /* dictionary of keymaps */
511  const owl_keymap *active;             /* currently active keymap */
512  int       in_esc;             /* escape pressed? */
513  int       kpstack[OWL_KEYMAP_MAXSTACK+1]; /* current stack of keypresses */
514  int       kpstackpos;         /* location in stack (-1 = none) */
515} owl_keyhandler;
516
517typedef struct _owl_buddy {
518  int proto;
519  char *name;
520  int isidle;
521  int idlesince;
522} owl_buddy;
523
524typedef struct _owl_buddylist {
525  owl_list buddies;
526} owl_buddylist;
527
528typedef struct _owl_zbuddylist {
529  owl_list zusers;
530} owl_zbuddylist;
531
532typedef struct _owl_timer {
533  time_t time;
534  int interval;
535  void (*callback)(struct _owl_timer *, void *);
536  void (*destroy)(struct _owl_timer *);
537  void *data;
538} owl_timer;
539
540typedef struct _owl_errqueue {
541  owl_list errlist;
542} owl_errqueue;
543
544typedef struct _owl_colorpair_mgr {
545  int next;
546  short **pairs;
547} owl_colorpair_mgr;
548
549typedef struct _owl_io_dispatch {
550  int fd;                                     /* FD to watch for dispatch. */
551  int mode;
552  int needs_gc;
553  void (*callback)(const struct _owl_io_dispatch *, void *); /* C function to dispatch to. */
554  void (*destroy)(const struct _owl_io_dispatch *);  /* Destructor */
555  void *data;
556} owl_io_dispatch;
557
558typedef struct _owl_ps_action {
559  int needs_gc;
560  int (*callback)(struct _owl_ps_action *, void *);
561  void (*destroy)(struct _owl_ps_action *);
562  void *data;
563} owl_ps_action;
564
565typedef struct _owl_popexec {
566  int refcount;
567  owl_viewwin *vwin;
568  int winactive;
569  pid_t pid;                    /* or 0 if it has terminated */
570  const owl_io_dispatch *dispatch;
571} owl_popexec;
572
573typedef struct _OwlGlobalNotifier OwlGlobalNotifier;
574
575typedef struct _owl_global {
576  owl_mainwin mw;
577  owl_popwin *pw;
578  owl_msgwin msgwin;
579  owl_history cmdhist;          /* command history */
580  owl_history msghist;          /* outgoing message history */
581  owl_keyhandler kh;
582  owl_dict filters;
583  GList *filterlist;
584  owl_list puntlist;
585  owl_vardict vars;
586  owl_cmddict cmds;
587  GList *context_stack;
588  owl_errqueue errqueue;
589  int lines, cols;
590  int curmsg, topmsg;
591  int markedmsgid;              /* for finding the marked message when it has moved. */
592  int curmsg_vert_offset;
593  owl_view current_view;
594  owl_messagelist msglist;
595  WINDOW *input_pad;
596  owl_mainpanel mainpanel;
597  gulong typwin_erase_id;
598  int rightshift;
599  volatile sig_atomic_t resizepending;
600  char *thishost;
601  char *homedir;
602  char *confdir;
603  char *startupfile;
604  int direction;
605  int zaway;
606  char *cur_zaway_msg;
607  int haveconfig;
608  int config_format;
609  void *buffercbdata;
610  owl_editwin *tw;
611  owl_viewwin *vw;
612  void *perl;
613  int debug;
614  time_t starttime;
615  time_t lastinputtime;
616  char *startupargs;
617  int nextmsgid;
618  int hascolors;
619  int colorpairs;
620  owl_colorpair_mgr cpmgr;
621  pid_t newmsgproc_pid;
622  owl_regex search_re;
623  aim_session_t aimsess;
624  aim_conn_t bosconn;
625  owl_timer aim_noop_timer;
626  owl_timer aim_ignorelogin_timer;
627  int aim_loggedin;         /* true if currently logged into AIM */
628  int aim_doprocessing;     /* true if we should process AIM events (like pending login) */
629  char *aim_screenname;     /* currently logged in AIM screen name */
630  char *aim_screenname_for_filters;     /* currently logged in AIM screen name */
631  owl_buddylist buddylist;  /* list of logged in AIM buddies */
632  GQueue *messagequeue;     /* for queueing up aim and other messages */
633  owl_dict styledict;       /* global dictionary of available styles */
634  char *response;           /* response to the last question asked */
635  int havezephyr;
636  int haveaim;
637  int ignoreaimlogin;
638  volatile sig_atomic_t got_err_signal; /* 1 if we got an unexpected signal */
639  volatile siginfo_t err_signal_info;
640  owl_zbuddylist zbuddies;
641  owl_timer zephyr_buddycheck_timer;
642  GList *zaldlist;
643  int pseudologin_notify;
644  struct termios startup_tio;
645  owl_list io_dispatch_list;
646  owl_list psa_list;
647  GList *timerlist;
648  owl_timer *aim_nop_timer;
649  int load_initial_subs;
650  volatile sig_atomic_t interrupted;
651  FILE *debug_file;
652} owl_global;
653
654/* globals */
655extern owl_global g;
656
657#include "owl_prototypes.h"
658
659/* these are missing from the zephyr includes for some reason */
660#ifdef HAVE_LIBZEPHYR
661int ZGetSubscriptions(ZSubscription_t *, int *);
662int ZGetLocations(ZLocations_t *,int *);
663#endif
664
665#endif /* INC_BARNOWL_OWL_H */
Note: See TracBrowser for help on using the repository browser.