mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 00:07:43 +02:00
11 lines
194 B
C#
11 lines
194 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface IProgram : IDisposable
|
|
{
|
|
ProgramLinkStatus CheckProgramLink(bool blocking);
|
|
|
|
byte[] GetBinary();
|
|
}
|
|
}
|