updated sdk and fixed build errors

This commit is contained in:
2023-08-05 22:01:47 +02:00
parent 72a9b50298
commit 6bf4676bc1
26 changed files with 6659 additions and 1166 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
#
# Makefile to build TeamSpeak 3 Client Test Plugin
#
CFLAGS = -c -O2 -Wall -fPIC
all: test_plugin
test_plugin: plugin.o
gcc -o test_plugin.so -shared plugin.o
plugin.o: ./src/plugin.c
gcc -Iinclude src/plugin.c $(CFLAGS)
clean:
rm -rf *.o test_plugin.so