mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 13:25:23 +00:00
18 lines
225 B
C
18 lines
225 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef __PL_BINHEX4_H__
|
||
|
|
#define __PL_BINHEX4_H__
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
class IOStream;
|
||
|
|
class MacFileMem;
|
||
|
|
|
||
|
|
namespace BinHex4
|
||
|
|
{
|
||
|
|
MacFileMem *LoadHQX(IOStream *stream);
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|