Files
Aerofoil/PortabilityLayer/MacBinary2.h
2019-11-11 00:11:59 -05:00

19 lines
294 B
C++

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