diff options
Diffstat (limited to 'src/common/HPMSymbols.inc.h')
-rw-r--r-- | src/common/HPMSymbols.inc.h | 41 |
1 files changed, 36 insertions, 5 deletions
diff --git a/src/common/HPMSymbols.inc.h b/src/common/HPMSymbols.inc.h index 4c3722b69..db9108774 100644 --- a/src/common/HPMSymbols.inc.h +++ b/src/common/HPMSymbols.inc.h @@ -1,8 +1,27 @@ -// Copyright (c) Hercules Dev Team, licensed under GNU GPL. -// See the LICENSE file -// -// NOTE: This file was auto-generated and should never be manually edited, -// as it will get overwritten. +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2015-2015 Hercules Dev Team + * + * Hercules is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +/* + * NOTE: This file was auto-generated and should never be manually edited, + * as it will get overwritten. + */ #if !defined(HERCULES_CORE) #ifdef COMMON_UTILS_H /* HCache */ @@ -149,6 +168,9 @@ struct mercenary_interface *mercenary; #ifdef MAP_MOB_H /* mob */ struct mob_interface *mob; #endif // MAP_MOB_H +#ifdef MAP_NPC_H /* npc_chat */ +struct npc_chat_interface *npc_chat; +#endif // MAP_NPC_H #ifdef MAP_NPC_H /* npc */ struct npc_interface *npc; #endif // MAP_NPC_H @@ -167,6 +189,9 @@ struct pc_groups_interface *pcg; #ifdef MAP_PC_H /* pc */ struct pc_interface *pc; #endif // MAP_PC_H +#ifdef MAP_NPC_H /* libpcre */ +struct pcre_interface *libpcre; +#endif // MAP_NPC_H #ifdef MAP_PET_H /* pet */ struct pet_interface *pet; #endif // MAP_PET_H @@ -372,6 +397,9 @@ if ((server_type&(SERVER_TYPE_MAP)) && !HPM_SYMBOL("mercenary", mercenary)) retu #ifdef MAP_MOB_H /* mob */ if ((server_type&(SERVER_TYPE_MAP)) && !HPM_SYMBOL("mob", mob)) return "mob"; #endif // MAP_MOB_H +#ifdef MAP_NPC_H /* npc_chat */ +if ((server_type&(SERVER_TYPE_MAP)) && !HPM_SYMBOL("npc_chat", npc_chat)) return "npc_chat"; +#endif // MAP_NPC_H #ifdef MAP_NPC_H /* npc */ if ((server_type&(SERVER_TYPE_MAP)) && !HPM_SYMBOL("npc", npc)) return "npc"; #endif // MAP_NPC_H @@ -390,6 +418,9 @@ if ((server_type&(SERVER_TYPE_MAP)) && !HPM_SYMBOL("pc_groups", pcg)) return "pc #ifdef MAP_PC_H /* pc */ if ((server_type&(SERVER_TYPE_MAP)) && !HPM_SYMBOL("pc", pc)) return "pc"; #endif // MAP_PC_H +#ifdef MAP_NPC_H /* libpcre */ +if ((server_type&(SERVER_TYPE_MAP)) && !HPM_SYMBOL("libpcre", libpcre)) return "libpcre"; +#endif // MAP_NPC_H #ifdef MAP_PET_H /* pet */ if ((server_type&(SERVER_TYPE_MAP)) && !HPM_SYMBOL("pet", pet)) return "pet"; #endif // MAP_PET_H |