From ffa8cb668faffd4c417cc7ff60215d732a088122 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Sat, 13 Jul 2019 19:42:03 +0200 Subject: AudioServer: Assorted infrastructure work * Add a LibAudio, and move WAV file parsing there (via AWavFile and AWavLoader) * Add CLocalSocket, and CSocket::connect() variant for local address types. We make some small use of this in WindowServer (as that's where we modelled it from), but don't get too invasive as this PR is already quite large, and the WS I/O is a bit carefully done * Add an AClientConnection which will eventually be used to talk to AudioServer (and make use of it in Piano, though right now it really doesn't do anything except connect, using our new CLocalSocket...) --- Libraries/LibCore/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'Libraries/LibCore/Makefile') diff --git a/Libraries/LibCore/Makefile b/Libraries/LibCore/Makefile index e7b25671e4..2e119ee71f 100644 --- a/Libraries/LibCore/Makefile +++ b/Libraries/LibCore/Makefile @@ -5,6 +5,7 @@ OBJS = \ CIODevice.o \ CFile.o \ CSocket.o \ + CLocalSocket.o \ CTCPSocket.o \ CElapsedTimer.o \ CNotifier.o \ -- cgit v1.2.3