summary refs log blame commit diff stats
path: root/plugins/python/python.def
blob: 6ce04e988501a7ad250d3665928ee11eacb6e4e9 (plain) (tree)
1
2
3
4
         


                         
EXPORTS 
hexchat_plugin_init 
hexchat_plugin_deinit 
hexchat_plugin_get_info 
{ color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
include "..\..\src\makeinc.mak"

TARGET = xtray.dll

TRAY_OBJECTS = \
callbacks.obj \
sdAlerts.obj \
sdTray.obj \
utility.obj \
xchat.obj \
xtray.obj

CPPFLAGS = $(CPPFLAGS) /D_STL70_ /D_STATIC_CPPLIB /EHsc /DUNICODE /D_UNICODE

all: $(TRAY_OBJECTS) $(TARGET)

xtray.def:
	echo EXPORTS > xtray.def
	echo xchat_plugin_init >> xtray.def
	echo xchat_plugin_deinit >> xtray.def

.cpp.obj:
	$(CC) $(CPPFLAGS) /c $<

res:
	rc /nologo resource.rc
	
$(TARGET): $(TRAY_OBJECTS) xtray.def res
	$(LINK) /DLL /out:$(TARGET) $(LDFLAGS) $(TRAY_OBJECTS) ntstc_msvcrt.lib $(LIBS) /def:xtray.def resource.res

clean:
	del $(TARGET)
	del *.obj
	del xtray.def
	del resource.res
	del *.lib
	del *.exp