initial version of winsys sysinfo plugin

This commit is contained in:
Berke Viktor
2011-11-27 19:38:37 +01:00
parent 8b1a157ee3
commit eaad8edbee
7 changed files with 357 additions and 0 deletions

View File

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