X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Finput.h;h=ad291c0f82648adec2d2ea022a9c50ede3196d85;hb=104f041111da41ee57fc3da5e7edc60ab503b697;hp=873f05c010a92032c650983c8bcd7cd29fd96ef0;hpb=0e80187cec763daaf02a3dae725233c6885cf41a;p=cc65 diff --git a/src/cc65/input.h b/src/cc65/input.h index 873f05c01..ad291c0f8 100644 --- a/src/cc65/input.h +++ b/src/cc65/input.h @@ -63,9 +63,11 @@ extern char NextC; /* Struct that describes an input file */ typedef struct IFile IFile; struct IFile { - unsigned Index; /* File index */ - unsigned Usage; /* Usage counter */ - char Name[1]; /* Name of file (dynamically allocated) */ + unsigned Index; /* File index */ + unsigned Usage; /* Usage counter */ + unsigned long Size; /* File size */ + unsigned long MTime; /* Time of last modification */ + char Name[1]; /* Name of file (dynamically allocated) */ }; @@ -84,7 +86,7 @@ void OpenIncludeFile (const char* Name, unsigned DirSpec); void ClearLine (void); /* Clear the current input line */ - + void InitLine (const char* Buf); /* Initialize lptr from Buf and read CurC and NextC from the new input line */