Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    r26ad412 r987cf3f  
    7474
    7575#define OWL_DEBUG 0
    76 #define OWL_DEBUG_FILE "/var/tmp/barnowl-debug"
     76#define OWL_DEBUG_FILE "/var/tmp/owldebug"
    7777
    7878#define OWL_CONFIG_DIR "/.owl"             /* this is relative to the user's home directory */
     
    344344
    345345typedef struct _owl_zwrite {
     346  char *cmd;
    346347  char *zwriteline;
    347348  char *class;
     
    476477  char     *desc;               /* description */
    477478  owl_list  bindings;           /* key bindings */
    478   const struct _owl_keymap *submap;     /* submap */
     479  const struct _owl_keymap *parent;     /* parent */
    479480  void (*default_fn)(owl_input j);      /* default action (takes a keypress) */
    480481  void (*prealways_fn)(owl_input  j);   /* always called before a keypress is received */
     
    521522  short **pairs;
    522523} owl_colorpair_mgr;
    523 
    524 typedef struct _owl_obarray {
    525   owl_list strings;
    526 } owl_obarray;
    527524
    528525typedef struct _owl_io_dispatch {
     
    599596  owl_colorpair_mgr cpmgr;
    600597  pid_t newmsgproc_pid;
    601   int malloced, freed;
    602598  owl_regex search_re;
    603599  aim_session_t aimsess;
     
    610606  char *aim_screenname_for_filters;     /* currently logged in AIM screen name */
    611607  owl_buddylist buddylist;  /* list of logged in AIM buddies */
    612   owl_list messagequeue;    /* for queueing up aim and other messages */
     608  GQueue *messagequeue;     /* for queueing up aim and other messages */
    613609  owl_dict styledict;       /* global dictionary of available styles */
    614610  char *response;           /* response to the last question asked */
     
    623619  int pseudologin_notify;
    624620  struct termios startup_tio;
    625   owl_obarray obarray;
    626621  owl_list io_dispatch_list;
    627622  owl_list psa_list;
     
    630625  int load_initial_subs;
    631626  volatile sig_atomic_t interrupted;
    632   FILE *debug_file;
    633627} owl_global;
    634628
Note: See TracChangeset for help on using the changeset viewer.