aboutsummaryrefslogtreecommitdiffstats
path: root/example/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/main.c')
-rw-r--r--example/main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/example/main.c b/example/main.c
index 327b88c..6a851fe 100644
--- a/example/main.c
+++ b/example/main.c
@@ -1,9 +1,11 @@
+#include "./lib/SSVLSystemAlertVolume.h"
+
int main() {
OSStatus result;
Float32 volume;
- result = system_volume_get(&volume);
+ result = SSVLGetSystemVolume(&volume);
if (result != noErr) {
printf("Error getting system volume: %d\n", result);
return 1;
@@ -13,7 +15,7 @@ int main() {
Float32 new_volume = 0.5;
- result = system_volume_set(new_volume);
+ result = SSVLSetSystemVolume(new_volume);
if (result != noErr) {
printf("Error setting system volume: %d\n", result);
return 1;