Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    r7892963 r20aced3  
    184184#define OWL_VARIABLE_BOOL       2
    185185#define OWL_VARIABLE_STRING     3
     186
     187#define OWL_OUTPUT_RETURN       0
     188#define OWL_OUTPUT_POPUP        1
     189#define OWL_OUTPUT_ADMINMSG     2
    186190
    187191#define OWL_FILTER_MAX_DEPTH    300
     
    518522} owl_colorpair_mgr;
    519523
    520 typedef struct _owl_obarray {
    521   owl_list strings;
    522 } owl_obarray;
    523 
    524524typedef struct _owl_io_dispatch {
    525525  int fd;                                     /* FD to watch for dispatch. */
     
    565565  owl_view current_view;
    566566  owl_messagelist msglist;
     567  WINDOW *input_pad;
    567568  PANEL *recpan, *seppan, *msgpan, *typpan;
    568569  int needrefresh;
    569570  int rightshift;
    570571  volatile sig_atomic_t resizepending;
     572  int relayoutpending;
    571573  int recwinlines;
    572574  char *thishost;
     
    604606  char *aim_screenname_for_filters;     /* currently logged in AIM screen name */
    605607  owl_buddylist buddylist;  /* list of logged in AIM buddies */
    606   owl_list messagequeue;    /* for queueing up aim and other messages */
     608  GQueue *messagequeue;     /* for queueing up aim and other messages */
    607609  owl_dict styledict;       /* global dictionary of available styles */
    608610  char *response;           /* response to the last question asked */
     
    617619  int pseudologin_notify;
    618620  struct termios startup_tio;
    619   owl_obarray obarray;
    620621  owl_list io_dispatch_list;
    621622  owl_list psa_list;
Note: See TracChangeset for help on using the changeset viewer.