xtd - Reference Guide  0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
system_sounds.h
Go to the documentation of this file.
1 #pragma once
5 #include "../core_export.h"
6 #include "../object.h"
7 #include "../static.h"
8 #include "system_sound.h"
9 
11 namespace xtd {
13  namespace media {
21  public:
31 
40  static system_sound beep();
41 
51 
60  static system_sound hand();
61 
71  };
72  }
73 }
Represents a system sound type.
Definition: system_sound.h:20
Retrieves sounds associated with a set of Windows operating system sound-event types....
Definition: system_sounds.h:20
static system_sound exclamation()
Gets the sound associated with the Exclamation program event in the current Windows sound scheme.
static system_sound beep()
Gets the sound associated with the Beep program event in the current Windows sound scheme.
static system_sound hand()
Gets the sound associated with the Hand program event in the current Windows sound scheme.
static system_sound question()
Gets the sound associated with the Question program event in the current Windows sound scheme.
static system_sound asterisk()
Gets the sound associated with the Asterisk program event in the current Windows sound scheme.
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition: static.h:38
#define core_export_
Define shared library export.
Definition: core_export.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17
Contains xtd::media::system_sound class.