mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Externals: Add libLZMA.
This commit is contained in:
parent
4385afdb0a
commit
9fd03cda9d
156 changed files with 35414 additions and 0 deletions
20
Externals/liblzma/delta/delta_common.h
vendored
Normal file
20
Externals/liblzma/delta/delta_common.h
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
/// \file delta_common.h
|
||||
/// \brief Common stuff for Delta encoder and decoder
|
||||
//
|
||||
// Author: Lasse Collin
|
||||
//
|
||||
// This file has been put into the public domain.
|
||||
// You can do whatever you want with this file.
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef LZMA_DELTA_COMMON_H
|
||||
#define LZMA_DELTA_COMMON_H
|
||||
|
||||
#include "common.h"
|
||||
|
||||
extern uint64_t lzma_delta_coder_memusage(const void *options);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue