mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +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
|