Files
Aerofoil/PortabilityLayer/MacBinary2.h

20 lines
300 B
C
Raw Normal View History

2019-11-11 00:11:59 -05:00
#pragma once
#ifndef __PL_MACBINARY2_H__
2020-09-12 13:32:53 -04:00
#define __PL_MACBINARY2_H__
class GpIOStream;
2019-11-11 00:11:59 -05:00
namespace PortabilityLayer
{
class MacFileMem;
namespace MacBinary2
{
2020-09-12 13:32:53 -04:00
void WriteBin(const MacFileMem *file, GpIOStream *stream);
MacFileMem *ReadBin(GpIOStream *stream);
2019-11-11 00:11:59 -05:00
};
}
#endif