C# wav file play
기본 사용법. using System.Media; private SoundPlayer soundPlayer = null; this.soundPlayer = new SoundPlayer(filePath); this.soundPlayer.PlayLooping(); this.s...
기본 사용법. using System.Media; private SoundPlayer soundPlayer = null; this.soundPlayer = new SoundPlayer(filePath); this.soundPlayer.PlayLooping(); this.s...
c# combobox 리스트에 check box와 text와 param input 하고 싶은건 combobox로 드랍다운하고.. list중에 선택을 하고 특정값을 써 넣을수 있게 하는 방식.. ref : https://www.codeproject.com/Articles/18...
가끔씩 라이브러리를 추가해야 할때가 있는데.. 흠.. SDK 에서 가이드해주는 방식으로 추가가 안된다.. 그러니까 project에서 f4를 눌러서 추가하는데.. 흠흠.. 그냥 empty project 만들고 libs에 aar file 넣구.. build.gradle file에...
linux application ipc를 socket를 활용해서 제작.. 서버는 소켓을 열고 받은걸 바로 다시 보내는 형태로 제작 클라이언트는 연결된 소켓을 사용해서 보내고 받는걸 처리 (read에서 계속 대기 하는 형태입니다.) server.c #include <...
APP간 IPC통신을 하기 위해서 mmap을 사용하는 방법을 확인해 보았습니다. file을 하나 잡고 memory mapping해서 쓰는건데 흠.. 전 shared memory에 한표를 던지고 싶네요 ^^; 아래 예제 코드는 maker가 mm file을 만들고 메모리 메핑한 ...