123456789 |
- #include <AK/URL.h>
- #include <LibCore/IODevice.h>
- endpoint FileSystemAccessServer
- {
- request_file(String path, Core::OpenMode requested_access) => (i32 error, Optional<IPC::File> fd)
- prompt_open_file(String path_to_view, Core::OpenMode requested_access) => (i32 error, Optional<IPC::File> fd, Optional<String> chosen_file)
- prompt_save_file(String title, String ext, String path_to_view, Core::OpenMode requested_access) => (i32 error, Optional<IPC::File> fd, Optional<String> chosen_file)
- }
|