Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-02-24 | Added const qualifier to several variable/argument pointers | Haru | 1 | -25/+25 | |
- This is necessary for compatibility with a const RFIFOP. Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-02-24 | Updated inter_pet->tosql() and mapif->save_pet() to work with const data | Haru | 1 | -1/+1 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-02-24 | Split mapif->mercenary_save() into two functions (save and create) | Haru | 1 | -1/+2 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-02-24 | Split mapif->homunculus_save() into two functions (save and create) | Haru | 1 | -1/+2 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-02-24 | Split mapif->elemental_save() into two functions (save and create) | Haru | 1 | -1/+2 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-12-15 | Added GPL-compliant header to all sources and build scripts | Haru | 1 | -4/+19 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-08-15 | HPM compatibility improvements | Haru | 1 | -3/+3 | |
Improved compatibility, portability and standards conformance. - Since it is not possible to portably and reliably re-use the core's symbols in plugins, symbols are no longer exported unless explicitly required, in the UNIX builds. This mimics the Windows behavior and adds HPM compatibility to OSes such as FreeBSD. Credits to Andrei Karas for making this possible. - For convenience, it is no longer necessary to call GET_SYMBOL, since the plugin will automatically import all the available symbols when it's loaded, depending on the included headers. - Plugins are now supposed to include the "common/hercules.h" header before including anything else. Incluing common/HPMi.h, common/cbasetypes.h or conf/core.h is no longer necessary, as those are guaranteed to be automatically included by hercules.h. - HPM API version bumped to 1.1. Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-06-19 | Cleaned up some #includes | Haru | 1 | -9/+2 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-06-19 | Removed ".." from include directives | Haru | 1 | -1/+1 | |
- Include directives are now directory-independent. - This will allow building plugins from other directories in future. Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Blocked compilation of plugins that use unavailable functions | Haru | 1 | -0/+2 | |
- Rather than failing at runtime, plugins that try to access non-interfaced, unavailable functions or variables, will now show an error at compile-time. Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-16 | Moved mapif_s into mapif.c | Haru | 1 | -169/+169 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-15 | Fix mapif interface. | Andrei Karas | 1 | -1/+1 | |
2014-11-15 | Allow generate HPM hooks for all interfaces in char server. | Andrei Karas | 1 | -1/+3 | |
2014-11-15 | Add most functions from inter.c to interfaces. | Andrei Karas | 1 | -0/+18 | |
2014-11-15 | Add most functions from int_storage.c to interfaces. | Andrei Karas | 1 | -0/+9 | |
2014-11-15 | Add most functions from int_quest.c to interfaces. | Andrei Karas | 1 | -0/+9 | |
2014-11-15 | Add most functions from int_pet.c to interfaces. | Andrei Karas | 1 | -0/+15 | |
2014-11-15 | Add most functions from int_party.c to interfaces. | Andrei Karas | 1 | -0/+18 | |
2014-11-15 | Add most functions from int_mercenary.c to interfaces. | Andrei Karas | 1 | -0/+11 | |
2014-11-15 | Add most functions from int_mail.c to interfaces. | Andrei Karas | 1 | -0/+14 | |
2014-11-15 | Add most functions from int_homun.c to interfaces. | Andrei Karas | 1 | -0/+15 | |
2014-11-15 | Add most functions from int_guild.c to interfaces. | Andrei Karas | 1 | -0/+35 | |
2014-11-15 | Add most functions from int_elemental.c to interfaces. | Andrei Karas | 1 | -0/+12 | |
2014-11-15 | Add most functions from int_auction.c to interfaces. | Andrei Karas | 1 | -0/+11 | |
2014-11-15 | Add most functions from char.c to interfaces. | Andrei Karas | 1 | -0/+29 | |
Introduced interfaces: chr, mapif, loginif. |