Files
Aerofoil/PortabilityLayer/MacBinary2.h
2020-09-12 13:32:53 -04:00

20 lines
300 B
C++

#pragma once
#ifndef __PL_MACBINARY2_H__
#define __PL_MACBINARY2_H__
class GpIOStream;
namespace PortabilityLayer
{
class MacFileMem;
namespace MacBinary2
{
void WriteBin(const MacFileMem *file, GpIOStream *stream);
MacFileMem *ReadBin(GpIOStream *stream);
};
}
#endif