OSDN Git Service

Merge branch 'feature/37178_プロジェクトとソリューションファイルの英語化' into develop
[dtxmania/dtxmania.git] / FDK17プロジェクト / コード / 03.サウンド / SoundDecoder.cs
diff --git a/FDK17プロジェクト/コード/03.サウンド/SoundDecoder.cs b/FDK17プロジェクト/コード/03.サウンド/SoundDecoder.cs
deleted file mode 100644 (file)
index 8eb04e9..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;\r
-using System.Collections.Generic;\r
-using System.Text;\r
-using System.Diagnostics;\r
-\r
-namespace FDK\r
-{\r
-       /// <summary>\r
-       /// xa,oggデコード用の基底クラス\r
-       /// </summary>\r
-       public abstract class SoundDecoder //: IDisposable\r
-       {\r
-               public abstract int Open( string filename );\r
-               public abstract int GetFormat( int nHandle, ref CWin32.WAVEFORMATEX wfx );\r
-               public abstract uint GetTotalPCMSize( int nHandle );\r
-               public abstract int Seek( int nHandle, uint dwPosition );\r
-               public abstract int Decode( int nHandle, IntPtr pDest, uint szDestSize, int bLoop );\r
-               public abstract void Close( int nHandle );\r
-       }\r
-}\r