Changeset f4d0975 for owl.h


Ignore:
Timestamp:
Oct 10, 2003, 5:12:19 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
e374dee
Parents:
12582d3
Message:
Fixed bug with idle times causing broken pipes.
New libfaim
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    r2404c3a rf4d0975  
    2121static const char owl_h_fileIdent[] = "$Id$";
    2222
    23 #define OWL_VERSION         2.0.8-pre-4
    24 #define OWL_VERSION_STRING "2.0.8-pre-4"
     23#define OWL_VERSION         2.0.8-pre-5
     24#define OWL_VERSION_STRING "2.0.8-pre-5"
    2525
    2626#define OWL_DEBUG 0
     
    4747#define OWL_EDITWIN_STYLE_MULTILINE 0
    4848#define OWL_EDITWIN_STYLE_ONELINE   1
     49
     50#define OWL_PROTOCOL_ZEPHYR         0
     51#define OWL_PROTOCOL_AIM            1
     52#define OWL_PROTOCOL_JABBER         2
     53#define OWL_PROTOCOL_ICQ            3
     54#define OWL_PROTOCOL_YAHOO          4
     55#define OWL_PROTOCOL_MSN            5
    4956
    5057#define OWL_MESSAGE_TYPE_ADMIN      0
     
    384391} owl_keyhandler;
    385392
     393typedef struct _owl_buddy {
     394  int proto;
     395  char *name;
     396  int isidle;
     397  int idlesince;
     398} owl_buddy;
     399
    386400typedef struct _owl_buddylist {
    387401  owl_list buddies;
    388   owl_list idletimes;
    389402} owl_buddylist;
    390403
Note: See TracChangeset for help on using the changeset viewer.