diff options
author | Teddy Wing | 2022-10-25 01:37:31 +0200 |
---|---|---|
committer | Teddy Wing | 2022-10-25 01:37:46 +0200 |
commit | 425bc1c25bd676e3ed52f92434cb44643f83da45 (patch) | |
tree | a604294c12af6d29de79f8244b56608140732719 /example | |
parent | 5a5d8b96cec6dca93bc6eb277b9766625a6d75c4 (diff) | |
download | SSVLSystemAlertVolume-425bc1c25bd676e3ed52f92434cb44643f83da45.tar.bz2 |
Move the `main()` function to a new example file
Diffstat (limited to 'example')
-rw-r--r-- | example/main.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/example/main.c b/example/main.c new file mode 100644 index 0000000..327b88c --- /dev/null +++ b/example/main.c @@ -0,0 +1,23 @@ +int main() { + OSStatus result; + + Float32 volume; + + result = system_volume_get(&volume); + if (result != noErr) { + printf("Error getting system volume: %d\n", result); + return 1; + } + + printf("System volume: %f\n", volume); + + + Float32 new_volume = 0.5; + result = system_volume_set(new_volume); + if (result != noErr) { + printf("Error setting system volume: %d\n", result); + return 1; + } + + printf("Set volume to: %f\n", new_volume); +} |