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

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

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

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

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

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