mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-31 15:32:51 +00:00
11 lines
544 B
Text
11 lines
544 B
Text
#include <AK/URL.h>
|
|
#include <LibCore/IODevice.h>
|
|
|
|
endpoint FileSystemAccessServer
|
|
{
|
|
request_file(i32 window_server_client_id, i32 window_id, String path, Core::OpenMode requested_access) =|
|
|
prompt_open_file(i32 window_server_client_id, i32 window_id, String window_title, String path_to_view, Core::OpenMode requested_access) =|
|
|
prompt_save_file(i32 window_server_client_id, i32 window_id,String title, String ext, String path_to_view, Core::OpenMode requested_access) =|
|
|
|
|
expose_window_server_client_id() => (i32 client_id)
|
|
}
|