mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
32 lines
487 B
C
32 lines
487 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <limits.h>
|
|
#include <rsym.h>
|
|
|
|
#include "config.h"
|
|
#include "stat.h"
|
|
#include "list.h"
|
|
|
|
|
|
struct lineinfo_struct
|
|
{
|
|
int valid;
|
|
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 */
|