Move IOStream to GpCommon

This commit is contained in:
elasota
2020-09-12 13:32:53 -04:00
parent 480a4b6098
commit f07137b52d
57 changed files with 483 additions and 477 deletions

View File

@@ -1,17 +1,18 @@
#pragma once
#ifndef __PL_MACBINARY2_H__
#define __PL_MACBINARY2_H__
#define __PL_MACBINARY2_H__
class GpIOStream;
namespace PortabilityLayer
{
class IOStream;
class MacFileMem;
namespace MacBinary2
{
void WriteBin(const MacFileMem *file, IOStream *stream);
MacFileMem *ReadBin(IOStream *stream);
void WriteBin(const MacFileMem *file, GpIOStream *stream);
MacFileMem *ReadBin(GpIOStream *stream);
};
}