2010-02-26 11:43:19 +00:00
|
|
|
#pragma once
|
2010-02-03 07:34:59 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2013-04-14 20:14:45 +00:00
|
|
|
#include <limits.h>
|
2010-02-03 07:34:59 +00:00
|
|
|
#include <rsym.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "stat.h"
|
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
|
|
|
|
struct lineinfo_struct
|
|
|
|
{
|
2013-04-14 20:14:45 +00:00
|
|
|
int valid;
|
2010-02-03 07:34:59 +00:00
|
|
|
char file1[LINESIZE];
|
|
|
|
char func1[NAMESIZE];
|
|
|
|
int nr1;
|
|
|
|
char file2[LINESIZE];
|
|
|
|
char func2[NAMESIZE];
|
|
|
|
int nr2;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct lineinfo_struct LINEINFO;
|
|
|
|
|
|
|
|
extern SUMM summ;
|
|
|
|
extern LIST cache;
|
|
|
|
extern FILE *logFile;
|
|
|
|
extern LINEINFO lastLine;
|
|
|
|
extern LIST sources;
|
|
|
|
|
|
|
|
/* EOF */
|