Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    r68e5464 r7ba9e0de  
    476476  char     *desc;               /* description */
    477477  owl_list  bindings;           /* key bindings */
    478   const struct _owl_keymap *parent;     /* parent */
     478  const struct _owl_keymap *submap;     /* submap */
    479479  void (*default_fn)(owl_input j);      /* default action (takes a keypress) */
    480480  void (*prealways_fn)(owl_input  j);   /* always called before a keypress is received */
     
    521521  short **pairs;
    522522} owl_colorpair_mgr;
     523
     524typedef struct _owl_obarray {
     525  owl_list strings;
     526} owl_obarray;
    523527
    524528typedef struct _owl_io_dispatch {
     
    595599  owl_colorpair_mgr cpmgr;
    596600  pid_t newmsgproc_pid;
     601  int malloced, freed;
    597602  owl_regex search_re;
    598603  aim_session_t aimsess;
     
    605610  char *aim_screenname_for_filters;     /* currently logged in AIM screen name */
    606611  owl_buddylist buddylist;  /* list of logged in AIM buddies */
    607   GQueue *messagequeue;     /* for queueing up aim and other messages */
     612  owl_list messagequeue;    /* for queueing up aim and other messages */
    608613  owl_dict styledict;       /* global dictionary of available styles */
    609614  char *response;           /* response to the last question asked */
     
    618623  int pseudologin_notify;
    619624  struct termios startup_tio;
     625  owl_obarray obarray;
    620626  owl_list io_dispatch_list;
    621627  owl_list psa_list;
Note: See TracChangeset for help on using the changeset viewer.