Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    r987cf3f r26ad412  
    7474
    7575#define OWL_DEBUG 0
    76 #define OWL_DEBUG_FILE "/var/tmp/owldebug"
     76#define OWL_DEBUG_FILE "/var/tmp/barnowl-debug"
    7777
    7878#define OWL_CONFIG_DIR "/.owl"             /* this is relative to the user's home directory */
     
    344344
    345345typedef struct _owl_zwrite {
    346   char *cmd;
    347346  char *zwriteline;
    348347  char *class;
     
    477476  char     *desc;               /* description */
    478477  owl_list  bindings;           /* key bindings */
    479   const struct _owl_keymap *parent;     /* parent */
     478  const struct _owl_keymap *submap;     /* submap */
    480479  void (*default_fn)(owl_input j);      /* default action (takes a keypress) */
    481480  void (*prealways_fn)(owl_input  j);   /* always called before a keypress is received */
     
    522521  short **pairs;
    523522} owl_colorpair_mgr;
     523
     524typedef struct _owl_obarray {
     525  owl_list strings;
     526} owl_obarray;
    524527
    525528typedef struct _owl_io_dispatch {
     
    596599  owl_colorpair_mgr cpmgr;
    597600  pid_t newmsgproc_pid;
     601  int malloced, freed;
    598602  owl_regex search_re;
    599603  aim_session_t aimsess;
     
    606610  char *aim_screenname_for_filters;     /* currently logged in AIM screen name */
    607611  owl_buddylist buddylist;  /* list of logged in AIM buddies */
    608   GQueue *messagequeue;     /* for queueing up aim and other messages */
     612  owl_list messagequeue;    /* for queueing up aim and other messages */
    609613  owl_dict styledict;       /* global dictionary of available styles */
    610614  char *response;           /* response to the last question asked */
     
    619623  int pseudologin_notify;
    620624  struct termios startup_tio;
     625  owl_obarray obarray;
    621626  owl_list io_dispatch_list;
    622627  owl_list psa_list;
     
    625630  int load_initial_subs;
    626631  volatile sig_atomic_t interrupted;
     632  FILE *debug_file;
    627633} owl_global;
    628634
Note: See TracChangeset for help on using the changeset viewer.