mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 08:24:11 -06:00
9.16
This commit is contained in:
committed by
Kornel Lesiński
parent
e279500d76
commit
044e4bb741
@@ -164,7 +164,7 @@ Byte CByteInBufWrap::ReadByteFromNewBlock()
|
||||
return 0;
|
||||
}
|
||||
|
||||
extern "C" static Byte Wrap_ReadByte(void *pp)
|
||||
static Byte Wrap_ReadByte(void *pp)
|
||||
{
|
||||
CByteInBufWrap *p = (CByteInBufWrap *)pp;
|
||||
if (p->Cur != p->Lim)
|
||||
@@ -210,7 +210,7 @@ HRESULT CByteOutBufWrap::Flush()
|
||||
return Res;
|
||||
}
|
||||
|
||||
extern "C" static void Wrap_WriteByte(void *pp, Byte b)
|
||||
static void Wrap_WriteByte(void *pp, Byte b)
|
||||
{
|
||||
CByteOutBufWrap *p = (CByteOutBufWrap *)pp;
|
||||
Byte *dest = p->Cur;
|
||||
|
||||
Reference in New Issue
Block a user