aboutsummaryrefslogtreecommitdiff
path: root/vendor/winapi/src/um/playsoundapi.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-01-08 00:21:28 +0300
committerValentin Popov <valentin@popov.link>2024-01-08 00:21:28 +0300
commit1b6a04ca5504955c571d1c97504fb45ea0befee4 (patch)
tree7579f518b23313e8a9748a88ab6173d5e030b227 /vendor/winapi/src/um/playsoundapi.rs
parent5ecd8cf2cba827454317368b68571df0d13d7842 (diff)
downloadfparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.tar.xz
fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.zip
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'vendor/winapi/src/um/playsoundapi.rs')
-rw-r--r--vendor/winapi/src/um/playsoundapi.rs46
1 files changed, 46 insertions, 0 deletions
diff --git a/vendor/winapi/src/um/playsoundapi.rs b/vendor/winapi/src/um/playsoundapi.rs
new file mode 100644
index 0000000..9b0d0d5
--- /dev/null
+++ b/vendor/winapi/src/um/playsoundapi.rs
@@ -0,0 +1,46 @@
+// Licensed under the Apache License, Version 2.0
+// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
+// All files in the project carrying such notice may not be copied, modified, or distributed
+// except according to those terms.
+//! ApiSet Contract for api-ms-win-mm-playsound-l1-1-0
+use shared::minwindef::{BOOL, DWORD, HMODULE, UINT};
+use um::winnt::{LPCSTR, LPCWSTR};
+extern "system" {
+ pub fn sndPlaySoundA(
+ pszSound: LPCSTR,
+ fuSound: UINT,
+ ) -> BOOL;
+ pub fn sndPlaySoundW(
+ pszSound: LPCWSTR,
+ fuSound: UINT,
+ ) -> BOOL;
+}
+pub const SND_SYNC: DWORD = 0x0000;
+pub const SND_ASYNC: DWORD = 0x0001;
+pub const SND_NODEFAULT: DWORD = 0x0002;
+pub const SND_MEMORY: DWORD = 0x0004;
+pub const SND_LOOP: DWORD = 0x0008;
+pub const SND_NOSTOP: DWORD = 0x0010;
+pub const SND_NOWAIT: DWORD = 0x00002000;
+pub const SND_ALIAS: DWORD = 0x00010000;
+pub const SND_ALIAS_ID: DWORD = 0x00110000;
+pub const SND_FILENAME: DWORD = 0x00020000;
+pub const SND_RESOURCE: DWORD = 0x00040004;
+pub const SND_PURGE: DWORD = 0x0040;
+pub const SND_APPLICATION: DWORD = 0x0080;
+pub const SND_SENTRY: DWORD = 0x00080000;
+pub const SND_RING: DWORD = 0x00100000;
+pub const SND_SYSTEM: DWORD = 0x00200000;
+extern "system" {
+ pub fn PlaySoundA(
+ pszSound: LPCSTR,
+ hmod: HMODULE,
+ fdwSound: DWORD,
+ ) -> BOOL;
+ pub fn PlaySoundW(
+ pszSound: LPCWSTR,
+ hmod: HMODULE,
+ fdwSound: DWORD,
+ ) -> BOOL;
+}