aboutsummaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorTeddy Wing2022-10-25 01:37:31 +0200
committerTeddy Wing2022-10-25 01:37:46 +0200
commit425bc1c25bd676e3ed52f92434cb44643f83da45 (patch)
treea604294c12af6d29de79f8244b56608140732719 /example
parent5a5d8b96cec6dca93bc6eb277b9766625a6d75c4 (diff)
downloadSSVLSystemAlertVolume-425bc1c25bd676e3ed52f92434cb44643f83da45.tar.bz2
Move the `main()` function to a new example file
Diffstat (limited to 'example')
-rw-r--r--example/main.c23
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);
+}