public CSound tサウンドを作成する(string strファイル名, ESoundGroup soundGroup)
        {
            var sound = new CSound(soundGroup);

            sound.tASIOサウンドを作成する(strファイル名, this.hMixer);
            return(sound);
        }
Example #2
0
        public CSound tサウンドを作成する(byte[] byArrWAVファイルイメージ, CSound.EInstType eInstType)
        {
            var sound = new CSound();

            sound.tASIOサウンドを作成する(byArrWAVファイルイメージ, this.hMixer, eInstType);
            return(sound);
        }
Example #3
0
        public CSound tサウンドを作成する(string strファイル名, CSound.EInstType eInstType)
        {
            var sound = new CSound();

            sound.tASIOサウンドを作成する(strファイル名, this.hMixer, eInstType);
            return(sound);
        }
Example #4
0
        public CSound tサウンドを作成する(byte[] byArrWAVファイルイメージ)
        {
            var sound = new CSound();

            sound.tASIOサウンドを作成する(byArrWAVファイルイメージ, this.hMixer);
            return(sound);
        }
Example #5
0
        public CSound tCreateSound(string strFilename, ESoundGroup soundGroup)
        {
            var sound = new CSound(soundGroup);

            sound.tASIOサウンドを作成する(strFilename, this.hMixer);
            return(sound);
        }
 public void tサウンドを作成する(byte[] byArrWAVファイルイメージ, CSound sound)
 {
     sound.tASIOサウンドを作成する(byArrWAVファイルイメージ, this.hMixer);
 }
 public void tサウンドを作成する(string strファイル名, CSound sound)
 {
     sound.tASIOサウンドを作成する(strファイル名, this.hMixer);
 }
Example #8
0
 public void tサウンドを作成する(byte[] byArrWAVファイルイメージ, ref CSound sound, CSound.EInstType eInstType)
 {
     sound.tASIOサウンドを作成する(byArrWAVファイルイメージ, this.hMixer, eInstType);
 }
Example #9
0
 public void tサウンドを作成する(string strファイル名, ref CSound sound, CSound.EInstType eInstType)
 {
     sound.tASIOサウンドを作成する(strファイル名, this.hMixer, eInstType);
 }
Example #10
0
 public void tCreateSound(string strFilename, CSound sound)
 {
     sound.tASIOサウンドを作成する(strFilename, this.hMixer);
 }