2021-07-05 04:38:25 -03:00
|
|
|
#include <AK/URL.h>
|
|
|
|
|
#include <LibCore/IODevice.h>
|
|
|
|
|
|
|
|
|
|
endpoint FileSystemAccessServer
|
|
|
|
|
{
|
2022-02-26 13:24:22 -03:00
|
|
|
request_file_read_only_approved(i32 request_id, i32 window_server_client_id, i32 window_id, String path) =|
|
|
|
|
|
request_file(i32 request_id, i32 window_server_client_id, i32 window_id, String path, Core::OpenMode requested_access) =|
|
|
|
|
|
prompt_open_file(i32 request_id, i32 window_server_client_id, i32 window_id, String window_title, String path_to_view, Core::OpenMode requested_access) =|
|
|
|
|
|
prompt_save_file(i32 request_id, i32 window_server_client_id, i32 window_id, String title, String ext, String path_to_view, Core::OpenMode requested_access) =|
|
2021-07-18 10:48:52 -03:00
|
|
|
|
|
|
|
|
expose_window_server_client_id() => (i32 client_id)
|
2021-07-05 04:38:25 -03:00
|
|
|
}
|