mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
10 lines
307 B
Plaintext
10 lines
307 B
Plaintext
#include <LibCore/AnonymousBuffer.h>
|
|
|
|
endpoint ImageDecoderServer
|
|
{
|
|
decode_image(Core::AnonymousBuffer data, Optional<Gfx::IntSize> ideal_size, Optional<ByteString> mime_type) => (i64 image_id)
|
|
cancel_decoding(i64 image_id) =|
|
|
|
|
connect_new_clients(size_t count) => (Vector<IPC::File> sockets)
|
|
}
|