OSDN Git Service

first
[psychlops/cpp.git] / psychlops / platform / win32 / psychlops_io_sound_Win32.cpp
1 /*
2  *  psychlops_io_sound_Win32.cpp
3  *  Psychlops Standard Library (MacOSX)
4  *
5  *  Last Modified 2008/10/1 by Kenchi HOSOKAWA
6  *  (C) 2005 Kenchi HOSOKAWA, Kazushi MARUYA, Takao SATO
7  */
8
9 #include <Windows.h>
10
11 #include "../../core/devices/psychlops_io_sound.h"
12
13
14 namespace Psychlops {
15
16         void Sound::beep() {
17                 //::Beep(440, 100);\r
18                 MessageBeep(MB_OK);
19         }
20
21 }       /*      <- namespace Psycholops         */