Files
Aerofoil/PortabilityLayer/MacBinary2.h

20 lines
282 B
C
Raw Normal View History

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