mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:27:35 +00:00
LibIPC: Remove leading I from filenames
This commit is contained in:
parent
799b0a4fa8
commit
7415e6ef9f
16 changed files with 18 additions and 18 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue