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

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

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

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

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

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