xtd 0.2.0
Loading...
Searching...
No Matches
sounds.h
Go to the documentation of this file.
1
4#pragma once
6#if !defined(__XTD_CORE_NATIVE_LIBRARY__)
7#error "Do not include this file: Internal use only"
8#endif
10
11#include <cstdint>
12
19constexpr uint32_t ST_OK = 0x00000000;
20
27constexpr uint32_t ST_ICONERROR = 0x00000010;
28
35constexpr uint32_t ST_ICONHAND = 0x00000010;
36
43constexpr uint32_t ST_ICONSTOP = 0x00000010;
44
51constexpr uint32_t ST_ICONQUESTION = 0x00000020;
52
59constexpr uint32_t ST_ICONWARNING = 0x00000030;
60
67constexpr uint32_t ST_ICONEXCLAMATION = 0x00000030;
68
75constexpr uint32_t ST_ICONINFORMATION = 0x00000040;
76
83constexpr uint32_t ST_ICONASTERISK = 0x00000040;
84
91constexpr uint32_t ST_BEEP = 0xFFFFFFFF;
constexpr uint32_t ST_ICONQUESTION
The sound specified as the Windows Question sound.
Definition sounds.h:51
constexpr uint32_t ST_BEEP
A simple beep. If the sound card is not available, the sound is generated using the speaker.
Definition sounds.h:91
constexpr uint32_t ST_ICONINFORMATION
The sound specified as the Windows Asterisk sound.
Definition sounds.h:75
constexpr uint32_t ST_ICONEXCLAMATION
See ST_ICONWARNING.
Definition sounds.h:67
constexpr uint32_t ST_OK
The sound specified as the Windows Default Beep sound.
Definition sounds.h:19
constexpr uint32_t ST_ICONERROR
The sound specified as the Windows Critical Stop sound.
Definition sounds.h:27
constexpr uint32_t ST_ICONSTOP
See ST_ICONERROR.
Definition sounds.h:43
constexpr uint32_t ST_ICONASTERISK
See ST_ICONINFORMATION.
Definition sounds.h:83
constexpr uint32_t ST_ICONHAND
See ST_ICONERROR.
Definition sounds.h:35
constexpr uint32_t ST_ICONWARNING
The sound specified as the Windows Exclamation sound.
Definition sounds.h:59