diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-08-03 19:41:02 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-03 19:49:19 +0200 |
commit | 8e684f095982597d548514ccd7f723f6f285b1f5 (patch) | |
tree | fb8d83acebd948580467af03bbb0f6b9d51c3462 /Applications | |
parent | 3519b6c201e53b703ced179b18d8570e93845d2d (diff) | |
download | serenity-8e684f095982597d548514ccd7f723f6f285b1f5.zip |
AudioServer: Port to the new generated IPC mechanism
Fork the IPC Connection classes into Server:: and Client::ConnectionNG.
The new IPC messages are serialized very snugly instead of using the
same generic data structure for all messages.
Remove ASAPI.h since we now generate all of it from AudioServer.ipc :^)
Diffstat (limited to 'Applications')
-rwxr-xr-x | Applications/Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Makefile.common b/Applications/Makefile.common index 845caa1727..8935cb38be 100755 --- a/Applications/Makefile.common +++ b/Applications/Makefile.common @@ -3,7 +3,7 @@ DEFINES += -DUSERLAND all: $(APP) $(APP): $(OBJS) - $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -ldraw -laudio -lcore -lc + $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -ldraw -laudio -lipc -lcore -lc .cpp.o: @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< |