FileSystemAccessServer.ipc 503 B

123456789
  1. #include <AK/URL.h>
  2. #include <LibCore/IODevice.h>
  3. endpoint FileSystemAccessServer
  4. {
  5. request_file(String path, Core::OpenMode requested_access) => (i32 error, Optional<IPC::File> fd)
  6. prompt_open_file(String path_to_view, Core::OpenMode requested_access) => (i32 error, Optional<IPC::File> fd, Optional<String> chosen_file)
  7. 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)
  8. }