Play-/Source/discimages/ChdStreamSupport.h
Jean-Philip Desjardins 62edca57d9 Alternate CHD lib integration method.
Hopefully fixes linking issues on GCC.
2021-07-27 09:08:47 -04:00

12 lines
179 B
C++

#pragma once
namespace Framework
{
class CStream;
};
typedef struct _core_file core_file;
namespace ChdStreamSupport
{
core_file* CreateFileFromStream(Framework::CStream*);
}