mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
LibIPC: Remove leading I from filenames
This commit is contained in:
parent
799b0a4fa8
commit
7415e6ef9f
Notes:
sideshowbarker
2024-07-19 09:34:09 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/7415e6ef9fb
16 changed files with 18 additions and 18 deletions
|
@ -227,9 +227,9 @@ int main(int argc, char** argv)
|
|||
dbg() << "#include <AK/OwnPtr.h>";
|
||||
dbg() << "#include <LibGfx/Color.h>";
|
||||
dbg() << "#include <LibGfx/Rect.h>";
|
||||
dbg() << "#include <LibIPC/IEncoder.h>";
|
||||
dbg() << "#include <LibIPC/IEndpoint.h>";
|
||||
dbg() << "#include <LibIPC/IMessage.h>";
|
||||
dbg() << "#include <LibIPC/Encoder.h>";
|
||||
dbg() << "#include <LibIPC/Endpoint.h>";
|
||||
dbg() << "#include <LibIPC/Message.h>";
|
||||
dbg();
|
||||
|
||||
for (auto& endpoint : endpoints) {
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
#include <AudioServer/AudioClientEndpoint.h>
|
||||
#include <AudioServer/AudioServerEndpoint.h>
|
||||
#include <LibIPC/IServerConnection.h>
|
||||
#include <LibIPC/ServerConnection.h>
|
||||
|
||||
namespace Audio {
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibIPC/IServerConnection.h>
|
||||
#include <LibIPC/ServerConnection.h>
|
||||
#include <WindowServer/WindowClientEndpoint.h>
|
||||
#include <WindowServer/WindowServerEndpoint.h>
|
||||
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibIPC/IEndpoint.h>
|
||||
#include <LibIPC/IMessage.h>
|
||||
#include <LibIPC/Endpoint.h>
|
||||
#include <LibIPC/Message.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/socket.h>
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibIPC/IMessage.h>
|
||||
#include <LibIPC/Message.h>
|
||||
|
||||
namespace IPC {
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibIPC/IEndpoint.h>
|
||||
#include <LibIPC/Endpoint.h>
|
||||
|
||||
namespace IPC {
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
OBJS = \
|
||||
IEndpoint.o \
|
||||
IMessage.o
|
||||
Endpoint.o \
|
||||
Message.o
|
||||
|
||||
LIBRARY = libipc.a
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibIPC/IMessage.h>
|
||||
#include <LibIPC/Message.h>
|
||||
|
||||
namespace IPC {
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CSyscallUtils.h>
|
||||
#include <LibIPC/IMessage.h>
|
||||
#include <LibIPC/Message.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/select.h>
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibIPC/IServerConnection.h>
|
||||
#include <LibIPC/ServerConnection.h>
|
||||
#include <ProtocolServer/ProtocolClientEndpoint.h>
|
||||
#include <ProtocolServer/ProtocolServerEndpoint.h>
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AudioServer/AudioServerEndpoint.h>
|
||||
#include <LibIPC/IClientConnection.h>
|
||||
#include <LibIPC/ClientConnection.h>
|
||||
|
||||
namespace Audio {
|
||||
class Buffer;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Badge.h>
|
||||
#include <LibIPC/IClientConnection.h>
|
||||
#include <LibIPC/ClientConnection.h>
|
||||
#include <ProtocolServer/ProtocolServerEndpoint.h>
|
||||
|
||||
namespace AK {
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include <LibCore/CEventLoop.h>
|
||||
#include <LibCore/CLocalServer.h>
|
||||
#include <LibIPC/IClientConnection.h>
|
||||
#include <LibIPC/ClientConnection.h>
|
||||
#include <ProtocolServer/HttpProtocol.h>
|
||||
#include <ProtocolServer/PSClientConnection.h>
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include <AK/WeakPtr.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibGfx/Bitmap.h>
|
||||
#include <LibIPC/IClientConnection.h>
|
||||
#include <LibIPC/ClientConnection.h>
|
||||
#include <WindowServer/WSEvent.h>
|
||||
#include <WindowServer/WindowServerEndpoint.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue