mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:37:34 +00:00
LibIPC: Rename IMessage id/name to message_id/message_name
Hogging "id" and "name" makes it impossible to use these as message parameter names, which seems silly. :^)
This commit is contained in:
parent
b780dcf353
commit
8ae62c57ee
3 changed files with 8 additions and 8 deletions
|
@ -8,8 +8,8 @@ public:
|
|||
virtual ~IMessage();
|
||||
|
||||
virtual int endpoint_magic() const = 0;
|
||||
virtual int id() const = 0;
|
||||
virtual String name() const = 0;
|
||||
virtual int message_id() const = 0;
|
||||
virtual String message_name() const = 0;
|
||||
virtual ByteBuffer encode() const = 0;
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue