replace easywinampcontrol with winamp

This commit is contained in:
berkeviktor@aol.com
2010-10-09 20:46:20 +02:00
parent 5bc5505618
commit 77292b4254
6 changed files with 226 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
include "..\..\src\makeinc.mak"
all: winamp.obj winamp.def
link $(LDFLAGS) $(LIBS) /dll /out:xcwinamp.dll /def:winamp.def winamp.obj
winamp.def:
echo EXPORTS > winamp.def
echo xchat_plugin_init >> winamp.def
echo xchat_plugin_deinit >> winamp.def
winamp.obj: winamp.c makefile.mak
cl $(CFLAGS) winamp.c
clean:
del *.obj
del *.dll
del *.exp
del *.lib