ascii-chat 0.8.38
Real-time terminal-based video chat with ASCII art conversion
Loading...
Searching...
No Matches
platform/wasm/stubs/actions.c
Go to the documentation of this file.
1
7#include <ascii-chat/options/actions.h>
8#include <ascii-chat/asciichat_errno.h>
9#include <stddef.h>
10
11// Action functions not supported in WASM mirror mode
12void action_completions(const char *shell_name, const char *output_path) {
13 (void)shell_name;
14 (void)output_path;
15 // No-op - shell completions not supported in WASM
16}
17
19 // No-op - webcam listing not supported in WASM mirror mode
20}
21
23 // No-op - microphone listing not supported in WASM mirror mode
24}
25
27 // No-op - speaker listing not supported in WASM mirror mode
28}
29
30void action_create_config(const char *path) {
31 (void)path;
32 // No-op - config file creation not supported in WASM
33}
34
35void action_create_manpage(const char *path) {
36 (void)path;
37 // No-op - man page creation not supported in WASM
38}
39
41 // No-op - no deferred actions in WASM mirror mode
42}
43
45 // No-op - capabilities not shown in WASM
46}
47
49 // No-op - capabilities not shown in WASM
50}
51
53 // No-op - update checking not supported in WASM
54}
55
57 // No-op - update checking not supported in WASM
58}
void action_check_update_immediate(void)
void action_check_update(void)
void action_show_capabilities(void)
void action_completions(const char *shell_name, const char *output_path)
void action_create_manpage(const char *path)
void action_list_microphones(void)
void action_list_webcams(void)
void action_list_speakers(void)
void actions_execute_deferred(void)
void action_show_capabilities_immediate(void)
void action_create_config(const char *path)