- Fixed 'console' plugin causing delete_timer error when it fails to load, due to uninitialized variable. * Renamed plugin.def to sample.def and added 'sample' plugin exports into it, as it's purpose is nothing than a sample right now. - Also added .def files for 'gui' and 'pid' plugins as MSVC does not export everything automatically and missing event export cause the plugins silently failing. - Added VS6, VS8 and VS9 projects for compiling plug-ins, which can be used on Windows. * The plug-in system will now report, if it cannot import an event function. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14638 54d463be-8e91-2dee-dedb-b68131a5f0ec
12 lines
175 B
Modula-2
12 lines
175 B
Modula-2
EXPORTS
|
|
; common exports
|
|
plugin_info DATA
|
|
plugin_event_table DATA
|
|
plugin_call_table DATA
|
|
|
|
; plugin-specific exports
|
|
test_me
|
|
do_init
|
|
do_final
|
|
some_function
|