Initial commit

This commit is contained in:
2026-01-01 14:53:14 +01:00
commit ff029ef3a4
65 changed files with 27790 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
liblua:
gcc -c lua/*.c
ar rcs liblua *.o
rm *.o
build: liblua
gcc -O2 -shared -static -o MyPlugin.dll plugin.c liblua -lgdi32 -luser32 \
-Wl,--add-stdcall-alias \
-ffunction-sections -fdata-sections
install: build
cp MyPlugin.dll "/c/Program Files (x86)/RDS Spy/plugins"