summaryrefslogtreecommitdiffstats
path: root/unrar_exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'unrar_exec.h')
-rw-r--r--unrar_exec.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/unrar_exec.h b/unrar_exec.h
index f34cac4f10..403ef63efe 100644
--- a/unrar_exec.h
+++ b/unrar_exec.h
@@ -24,7 +24,23 @@
#ifndef UNRAR_EXEC_H
#define UNRAR_EXEC_H
-#include "unrarlib.h"
+struct RAR_archive_entry
+{
+ char *Name;
+ unsigned long PackSize;
+ unsigned long UnpSize;
+ unsigned long FileCRC;
+ unsigned long FileTime;
+ unsigned char UnpVer;
+ unsigned char Method;
+ unsigned long FileAttr;
+};
+
+typedef struct archivelist
+{
+ struct RAR_archive_entry item;
+ struct archivelist *next;
+} ArchiveList_struct;
extern char* unrar_executable;