mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
20 lines
282 B
C++
20 lines
282 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
|