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
Notes: sideshowbarker 2024-07-19 09:34:09 +09:00
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 <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) {

View file

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

View file

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

View file

@ -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>

View file

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

View file

@ -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 {

View file

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

View file

@ -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 {

View file

@ -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>

View file

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

View file

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

View file

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

View file

@ -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>

View file

@ -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>