ascii-chat 0.8.38
Real-time terminal-based video chat with ASCII art conversion
Loading...
Searching...
No Matches
actions.c File Reference

Action function stubs for WASM (not needed for mirror mode) More...

Go to the source code of this file.

Functions

void action_completions (const char *shell_name, const char *output_path)
 
void action_list_webcams (void)
 
void action_list_microphones (void)
 
void action_list_speakers (void)
 
void action_create_config (const char *path)
 
void action_create_manpage (const char *path)
 
void actions_execute_deferred (void)
 
void action_show_capabilities (void)
 
void action_show_capabilities_immediate (void)
 
void action_check_update (void)
 
void action_check_update_immediate (void)
 

Detailed Description

Action function stubs for WASM (not needed for mirror mode)

Definition in file platform/wasm/stubs/actions.c.

Function Documentation

◆ action_check_update()

void action_check_update ( void  )

Definition at line 52 of file platform/wasm/stubs/actions.c.

52 {
53 // No-op - update checking not supported in WASM
54}

◆ action_check_update_immediate()

void action_check_update_immediate ( void  )

Definition at line 56 of file platform/wasm/stubs/actions.c.

56 {
57 // No-op - update checking not supported in WASM
58}

◆ action_completions()

void action_completions ( const char *  shell_name,
const char *  output_path 
)

Definition at line 12 of file platform/wasm/stubs/actions.c.

12 {
13 (void)shell_name;
14 (void)output_path;
15 // No-op - shell completions not supported in WASM
16}

◆ action_create_config()

void action_create_config ( const char *  path)

Definition at line 30 of file platform/wasm/stubs/actions.c.

30 {
31 (void)path;
32 // No-op - config file creation not supported in WASM
33}

◆ action_create_manpage()

void action_create_manpage ( const char *  path)

Definition at line 35 of file platform/wasm/stubs/actions.c.

35 {
36 (void)path;
37 // No-op - man page creation not supported in WASM
38}

◆ action_list_microphones()

void action_list_microphones ( void  )

Definition at line 22 of file platform/wasm/stubs/actions.c.

22 {
23 // No-op - microphone listing not supported in WASM mirror mode
24}

◆ action_list_speakers()

void action_list_speakers ( void  )

Definition at line 26 of file platform/wasm/stubs/actions.c.

26 {
27 // No-op - speaker listing not supported in WASM mirror mode
28}

◆ action_list_webcams()

void action_list_webcams ( void  )

Definition at line 18 of file platform/wasm/stubs/actions.c.

18 {
19 // No-op - webcam listing not supported in WASM mirror mode
20}

◆ action_show_capabilities()

void action_show_capabilities ( void  )

Definition at line 44 of file platform/wasm/stubs/actions.c.

44 {
45 // No-op - capabilities not shown in WASM
46}

◆ action_show_capabilities_immediate()

void action_show_capabilities_immediate ( void  )

Definition at line 48 of file platform/wasm/stubs/actions.c.

48 {
49 // No-op - capabilities not shown in WASM
50}

◆ actions_execute_deferred()

void actions_execute_deferred ( void  )

Definition at line 40 of file platform/wasm/stubs/actions.c.

40 {
41 // No-op - no deferred actions in WASM mirror mode
42}