상세 컨텐츠

본문 제목

WAV 파일 재생

C#

by 탑~! 2012. 4. 19. 11:28

본문

[System.Runtime.InteropServices.DllImport("winmm.DLL", EntryPoint = "PlaySound", SetLastError = true)]
        private static extern bool PlaySound(string szSound, System.IntPtr hMod, PlaySoundFlags flags);

        [System.Flags]
        public enum PlaySoundFlags : int
        {
            SND_SYNC = 0x0000,
            SND_ASYNC = 0x0001,
            SND_NODEFAULT = 0x0002,
            SND_LOOP = 0x0008,
            SND_NOSTOP = 0x0010,
            SND_NOWAIT = 0x00002000,
            SND_FILENAME = 0x00020000,
            SND_RESOURCE = 0x00040004
        }
        private static void PlayWav()
        {
            PlaySound("./sound.wav", new System.IntPtr(), PlaySoundFlags.SND_SYNC);
        }

'C#' 카테고리의 다른 글

Elevated 권한상승  (0) 2012.08.07
신뢰사이트 자동 등록  (0) 2012.08.07
OS bit 체크  (0) 2012.04.06
WebBrowser 컨트롤 모든 문서 다운로드 완료체크  (0) 2012.04.04
Build Cross-Platform Mobile Apps using C# and .NET  (0) 2012.03.16

관련글 더보기