mirror of
https://github.com/Lakr233/vphone-cli.git
synced 2026-09-05 17:14:28 +00:00
- Add vphoned modules: accessibility, apps, clipboard, settings, url - Consolidate menus into Connect (file browser, keychain, devmode, ping, clipboard, settings, location, battery) and Apps (app browser, open URL, install IPA) - Simplify CLI to manifest-only config (remove individual CLI flags) - Add SwiftUI App Browser window with filter/search/scroll table - Fix Location and Battery submenu items missing titles - Remove broken foreground app detection and launch/terminate commands
13 lines
374 B
Objective-C
13 lines
374 B
Objective-C
/*
|
|
* vphoned_settings — System preferences read/write over vsock.
|
|
*
|
|
* Handles settings_get and settings_set using CFPreferences.
|
|
* No extra frameworks needed — CFPreferences is in CoreFoundation.
|
|
*/
|
|
|
|
#pragma once
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/// Handle a settings command. Returns a response dict.
|
|
NSDictionary *vp_handle_settings_command(NSDictionary *msg);
|