summaryrefslogtreecommitdiff
path: root/src/common/HPMSymbols.inc.h
diff options
context:
space:
mode:
authorAsheraf <acheraf1998@gmail.com>2019-03-07 01:23:11 +0100
committerAsheraf <acheraf1998@gmail.com>2019-03-07 01:24:09 +0100
commit61ee0a6cee635a5948f1572c89c331b50f80016a (patch)
tree98839dd73d5393174535a54378d85517607632cd /src/common/HPMSymbols.inc.h
parentd452c74d6ec4876cb0938541bafa8f4e8951b9cf (diff)
downloadhercules-61ee0a6cee635a5948f1572c89c331b50f80016a.tar.gz
hercules-61ee0a6cee635a5948f1572c89c331b50f80016a.tar.bz2
hercules-61ee0a6cee635a5948f1572c89c331b50f80016a.tar.xz
hercules-61ee0a6cee635a5948f1572c89c331b50f80016a.zip
HPM Hooks Update
Diffstat (limited to 'src/common/HPMSymbols.inc.h')
-rw-r--r--src/common/HPMSymbols.inc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/HPMSymbols.inc.h b/src/common/HPMSymbols.inc.h
index 6b02b005a..9410f0586 100644
--- a/src/common/HPMSymbols.inc.h
+++ b/src/common/HPMSymbols.inc.h
@@ -281,6 +281,9 @@ struct stringbuf_interface *StrBuf;
#ifdef COMMON_STRLIB_H /* strlib */
struct strlib_interface *strlib;
#endif // COMMON_STRLIB_H
+#ifdef MAP_STYLIST_H /* stylist */
+struct stylist_interface *stylist;
+#endif // MAP_STYLIST_H
#ifdef COMMON_STRLIB_H /* sv */
struct sv_interface *sv;
#endif // COMMON_STRLIB_H
@@ -646,6 +649,10 @@ HPExport const char *HPM_shared_symbols(int server_type)
if ((server_type&(SERVER_TYPE_ALL)) != 0 && !HPM_SYMBOL("strlib", strlib))
return "strlib";
#endif // COMMON_STRLIB_H
+#ifdef MAP_STYLIST_H /* stylist */
+ if ((server_type&(SERVER_TYPE_MAP)) != 0 && !HPM_SYMBOL("stylist", stylist))
+ return "stylist";
+#endif // MAP_STYLIST_H
#ifdef COMMON_STRLIB_H /* sv */
if ((server_type&(SERVER_TYPE_ALL)) != 0 && !HPM_SYMBOL("sv", sv))
return "sv";