summaryrefslogtreecommitdiffstats
path: root/unrar_exec.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-20 10:10:26 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-20 10:10:26 +0000
commitf9455f34d0010686377dca01294a7f7be80d738c (patch)
tree479b5a68da55a2c63447561a610a19f194999831 /unrar_exec.h
parentf2281fa06aa6659464910913c3a49b10e5221583 (diff)
downloadmpv-f9455f34d0010686377dca01294a7f7be80d738c.tar.bz2
mpv-f9455f34d0010686377dca01294a7f7be80d738c.tar.xz
Remove internal unrarlib copy, the new unrarexec code is a strict superset.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25468 b3059339-0415-0410-9bf9-f77b7e298cf2
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;