~bialix/fte-mirror/tag-fixup.before-cvs-support

« back to all changes in this revision

Viewing changes to src/o_messages.h

  • Committer: cvs2svn
  • Date: 2003-07-16 00:04:56 UTC
  • mfrom: (201)
  • Revision ID: admin@example.com-20030716000456-79o4ogy6zduzth2y
Tags: before-cvs-support
This commit was manufactured by cvs2svn to create tag 'before-cvs-support'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    int line;
17
17
    char *msg;
18
18
    char *text;
19
 
    int hilit;
20
19
    EBuffer *Buf;
21
20
} Error;
22
21
 
58
57
    virtual int ExecCommand(int Command, ExState &State);
59
58
 
60
59
    void AddError(Error *p);
61
 
    void AddError(char *file, int line, char *msg, const char *text, int hilit=0);
 
60
    void AddError(char *file, int line, char *msg, const char *text);
62
61
    
63
62
    void FreeErrors();
64
63
    int GetLine(char *Line, int maxim);
67
66
    void ShowError(EView *V, int err);
68
67
    void DrawLine(PCell B, int Line, int Col, ChColor color, int Width);
69
68
    char* FormatLine(int Line);
70
 
    int IsHilited(int Line);
71
69
    void UpdateList();
72
70
    int Activate(int No);
73
71
    int CanActivate(int Line);
76
74
    virtual void GetInfo(char *AInfo, int MaxLen);
77
75
    virtual void GetPath(char *APath, int MaxLen);
78
76
    virtual void GetTitle(char *ATitle, int MaxLen, char *ASTitle, int SMaxLen);
79
 
    virtual int GetRowLength(int ARow);
80
 
 
81
77
 
82
78
    int RunPipe(char *Dir, char *Command);
83
79