(deps/7zip) Update

This commit is contained in:
twinaphex 2020-06-28 05:07:30 +02:00
parent 722f13165b
commit 8a8ddb2468
2 changed files with 3 additions and 2 deletions

1
deps/7zip/7zFile.c vendored
View File

@ -2,6 +2,7 @@
2009-11-24 : Igor Pavlov : Public domain */
#include <stdint.h>
#include <streams/file_stream_transforms.h>
#include "7zFile.h"
#ifndef UNDER_CE

4
deps/7zip/7zFile.h vendored
View File

@ -5,7 +5,7 @@
#define __7Z_FILE_H
#include <stdio.h>
#include <streams/file_stream_transforms.h>
#include <streams/file_stream.h>
#include "7zTypes.h"
@ -17,7 +17,7 @@ extern "C" {
typedef struct
{
RFILE *file;
FILE *file;
} CSzFile;
void File_Construct(CSzFile *p);