Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update UnRAR to 6.11.0 #36

Merged
merged 1 commit into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified plugins/RARBuilder/unrar.dll
Binary file not shown.
10 changes: 7 additions & 3 deletions plugins/RARBuilder/unrar.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef _UNRAR_DLL_
#define _UNRAR_DLL_

#pragma pack(1)
#pragma pack(push, 1)

#define ERAR_SUCCESS 0
#define ERAR_END_ARCHIVE 10
Expand Down Expand Up @@ -135,6 +135,8 @@ typedef int (CALLBACK *UNRARCALLBACK)(UINT msg,LPARAM UserData,LPARAM P1,LPARAM
#define ROADF_ENCHEADERS 0x0080
#define ROADF_FIRSTVOLUME 0x0100

#define ROADOF_KEEPBROKEN 0x0001

struct RAROpenArchiveDataEx
{
char *ArcName;
Expand All @@ -148,7 +150,9 @@ struct RAROpenArchiveDataEx
unsigned int Flags;
UNRARCALLBACK Callback;
LPARAM UserData;
unsigned int Reserved[28];
unsigned int OpFlags;
wchar_t *CmtBufW;
unsigned int Reserved[25];
};

enum UNRARCALLBACK_MESSAGES {
Expand Down Expand Up @@ -180,6 +184,6 @@ int PASCAL RARGetDllVersion();
}
#endif

#pragma pack()
#pragma pack(pop)

#endif
Binary file modified plugins/RARBuilder/unrar64.dll
Binary file not shown.