mirror of https://github.com/PCSX2/pcsx2.git
14 lines
344 B
C#
14 lines
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GSDumpGUI
|
|
{
|
|
static public class GSDXImport
|
|
{
|
|
public delegate void GSReplay(IntPtr HWND, IntPtr HInstance, String File, Boolean Show);
|
|
public delegate void GSConfigure();
|
|
public delegate IntPtr PSEgetLibName();
|
|
}
|
|
}
|