mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 13:25:23 +00:00
19 lines
294 B
C
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
|