mirror of
https://github.com/sparkle-project/Sparkle.git
synced 2025-11-01 15:34:38 +00:00
19 lines
541 B
Objective-C
19 lines
541 B
Objective-C
//
|
|
// SUBinaryDeltaCreate.m
|
|
// Sparkle
|
|
//
|
|
// Created by Mayur Pawashe on 4/9/15.
|
|
// Copyright (c) 2015 Sparkle Project. All rights reserved.
|
|
//
|
|
|
|
#ifndef SUBINARYDELTACREATE_H
|
|
#define SUBINARYDELTACREATE_H
|
|
|
|
#import "SUBinaryDeltaCommon.h"
|
|
#import "SPUDeltaArchiveProtocol.h"
|
|
|
|
@class NSString;
|
|
BOOL createBinaryDelta(NSString *source, NSString *destination, NSString *patchFile, SUBinaryDeltaMajorVersion majorVersion, SPUDeltaCompressionMode compression, uint8_t compressionLevel, BOOL verbose, NSError * __autoreleasing *error);
|
|
|
|
#endif
|