1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:47:44 +00:00

LibIPC: Remove leading I from filenames

This commit is contained in:
Andreas Kling 2020-02-06 14:54:09 +01:00
parent 799b0a4fa8
commit 7415e6ef9f
16 changed files with 18 additions and 18 deletions

View file

@ -227,9 +227,9 @@ int main(int argc, char** argv)
dbg() << "#include <AK/OwnPtr.h>"; dbg() << "#include <AK/OwnPtr.h>";
dbg() << "#include <LibGfx/Color.h>"; dbg() << "#include <LibGfx/Color.h>";
dbg() << "#include <LibGfx/Rect.h>"; dbg() << "#include <LibGfx/Rect.h>";
dbg() << "#include <LibIPC/IEncoder.h>"; dbg() << "#include <LibIPC/Encoder.h>";
dbg() << "#include <LibIPC/IEndpoint.h>"; dbg() << "#include <LibIPC/Endpoint.h>";
dbg() << "#include <LibIPC/IMessage.h>"; dbg() << "#include <LibIPC/Message.h>";
dbg(); dbg();
for (auto& endpoint : endpoints) { for (auto& endpoint : endpoints) {

View file

@ -28,7 +28,7 @@
#include <AudioServer/AudioClientEndpoint.h> #include <AudioServer/AudioClientEndpoint.h>
#include <AudioServer/AudioServerEndpoint.h> #include <AudioServer/AudioServerEndpoint.h>
#include <LibIPC/IServerConnection.h> #include <LibIPC/ServerConnection.h>
namespace Audio { namespace Audio {

View file

@ -26,7 +26,7 @@
#pragma once #pragma once
#include <LibIPC/IServerConnection.h> #include <LibIPC/ServerConnection.h>
#include <WindowServer/WindowClientEndpoint.h> #include <WindowServer/WindowClientEndpoint.h>
#include <WindowServer/WindowServerEndpoint.h> #include <WindowServer/WindowServerEndpoint.h>

View file

@ -32,8 +32,8 @@
#include <LibCore/CLocalSocket.h> #include <LibCore/CLocalSocket.h>
#include <LibCore/CNotifier.h> #include <LibCore/CNotifier.h>
#include <LibCore/CObject.h> #include <LibCore/CObject.h>
#include <LibIPC/IEndpoint.h> #include <LibIPC/Endpoint.h>
#include <LibIPC/IMessage.h> #include <LibIPC/Message.h>
#include <errno.h> #include <errno.h>
#include <stdio.h> #include <stdio.h>
#include <sys/socket.h> #include <sys/socket.h>

View file

@ -26,7 +26,7 @@
#pragma once #pragma once
#include <LibIPC/IMessage.h> #include <LibIPC/Message.h>
namespace IPC { namespace IPC {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <LibIPC/IEndpoint.h> #include <LibIPC/Endpoint.h>
namespace IPC { namespace IPC {

View file

@ -1,6 +1,6 @@
OBJS = \ OBJS = \
IEndpoint.o \ Endpoint.o \
IMessage.o Message.o
LIBRARY = libipc.a LIBRARY = libipc.a

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <LibIPC/IMessage.h> #include <LibIPC/Message.h>
namespace IPC { namespace IPC {

View file

@ -32,7 +32,7 @@
#include <LibCore/CLocalSocket.h> #include <LibCore/CLocalSocket.h>
#include <LibCore/CNotifier.h> #include <LibCore/CNotifier.h>
#include <LibCore/CSyscallUtils.h> #include <LibCore/CSyscallUtils.h>
#include <LibIPC/IMessage.h> #include <LibIPC/Message.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <sys/select.h> #include <sys/select.h>

View file

@ -26,7 +26,7 @@
#pragma once #pragma once
#include <LibIPC/IServerConnection.h> #include <LibIPC/ServerConnection.h>
#include <ProtocolServer/ProtocolClientEndpoint.h> #include <ProtocolServer/ProtocolClientEndpoint.h>
#include <ProtocolServer/ProtocolServerEndpoint.h> #include <ProtocolServer/ProtocolServerEndpoint.h>

View file

@ -27,7 +27,7 @@
#pragma once #pragma once
#include <AudioServer/AudioServerEndpoint.h> #include <AudioServer/AudioServerEndpoint.h>
#include <LibIPC/IClientConnection.h> #include <LibIPC/ClientConnection.h>
namespace Audio { namespace Audio {
class Buffer; class Buffer;

View file

@ -27,7 +27,7 @@
#pragma once #pragma once
#include <AK/Badge.h> #include <AK/Badge.h>
#include <LibIPC/IClientConnection.h> #include <LibIPC/ClientConnection.h>
#include <ProtocolServer/ProtocolServerEndpoint.h> #include <ProtocolServer/ProtocolServerEndpoint.h>
namespace AK { namespace AK {

View file

@ -26,7 +26,7 @@
#include <LibCore/CEventLoop.h> #include <LibCore/CEventLoop.h>
#include <LibCore/CLocalServer.h> #include <LibCore/CLocalServer.h>
#include <LibIPC/IClientConnection.h> #include <LibIPC/ClientConnection.h>
#include <ProtocolServer/HttpProtocol.h> #include <ProtocolServer/HttpProtocol.h>
#include <ProtocolServer/PSClientConnection.h> #include <ProtocolServer/PSClientConnection.h>

View file

@ -32,7 +32,7 @@
#include <AK/WeakPtr.h> #include <AK/WeakPtr.h>
#include <LibCore/CObject.h> #include <LibCore/CObject.h>
#include <LibGfx/Bitmap.h> #include <LibGfx/Bitmap.h>
#include <LibIPC/IClientConnection.h> #include <LibIPC/ClientConnection.h>
#include <WindowServer/WSEvent.h> #include <WindowServer/WSEvent.h>
#include <WindowServer/WindowServerEndpoint.h> #include <WindowServer/WindowServerEndpoint.h>