Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    ra88f35a r37f27bc  
    4848static const char owl_h_fileIdent[] = "$Id$";
    4949
    50 #define BARNOWL_STRINGIFY(x) _STRINGIFY(x)
    51 #define _STRINGIFY(x) #x
    52 
    53 #ifndef OWL_VERSION_STRING
    54 #define OWL_VERSION_STRING "1.3"
    55 #endif
     50#define OWL_VERSION_STRING PACKAGE_VERSION
    5651
    5752/* Feature that is being tested to redirect stderr through a pipe.
     
    424419} owl_history;
    425420
    426 typedef struct _owl_editwin owl_editwin;
    427 typedef struct _owl_editwin_excursion owl_editwin_excursion;
     421typedef struct _owl_editwin {
     422  char *buff;
     423  owl_history *hist;
     424  int bufflen;
     425  int allocated;
     426  int buffx, buffy;
     427  int topline;
     428  int winlines, wincols, fillcol, wrapcol;
     429  WINDOW *curswin;
     430  int style;
     431  int lock;
     432  int dotsend;
     433  int echochar;
     434
     435  char *command;
     436  void (*callback)(struct _owl_editwin*);
     437  void *cbdata;
     438} owl_editwin;
    428439
    429440typedef struct _owl_keybinding {
     
    540551  int config_format;
    541552  void *buffercbdata;
    542   owl_editwin *tw;
     553  owl_editwin tw;
    543554  owl_viewwin vw;
    544555  void *perl;
Note: See TracChangeset for help on using the changeset viewer.