mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 05:47:34 +00:00
Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
This commit is contained in:
parent
eb21aa65d1
commit
9e22e9ce88
36 changed files with 296 additions and 287 deletions
|
@ -1,7 +1,7 @@
|
|||
endpoint ClipboardServer
|
||||
{
|
||||
Greet() => ()
|
||||
greet() => ()
|
||||
|
||||
GetClipboardData() => (Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata)
|
||||
SetClipboardData(Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata) => ()
|
||||
get_clipboard_data() => (Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata)
|
||||
set_clipboard_data(Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata) => ()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue