From bece74491d45de8594c43022c089eb289ef6349b Mon Sep 17 00:00:00 2001 From: SlidyBat <25954912+SlidyBat@users.noreply.github.com> Date: Sun, 23 Sep 2018 14:55:05 +1000 Subject: [PATCH] NPOTB: Update sample extension params to be sourcehook-friendly (#886) --- public/sample_ext/extension.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/public/sample_ext/extension.h b/public/sample_ext/extension.h index 719d36c2..d671df96 100644 --- a/public/sample_ext/extension.h +++ b/public/sample_ext/extension.h @@ -51,11 +51,11 @@ public: * @brief This is called after the initial loading sequence has been processed. * * @param error Error message buffer. - * @param maxlength Size of error message buffer. + * @param maxlen Size of error message buffer. * @param late Whether or not the module was loaded after map load. * @return True to succeed loading, false to fail. */ - //virtual bool SDK_OnLoad(char *error, size_t maxlength, bool late); + //virtual bool SDK_OnLoad(char *error, size_t maxlen, bool late); /** * @brief This is called right before the extension is unloaded. @@ -77,31 +77,31 @@ public: * @brief this is called when Core wants to know if your extension is working. * * @param error Error message buffer. - * @param maxlength Size of error message buffer. + * @param maxlen Size of error message buffer. * @return True if working, false otherwise. */ - //virtual bool QueryRunning(char *error, size_t maxlength); + //virtual bool QueryRunning(char *error, size_t maxlen); public: #if defined SMEXT_CONF_METAMOD /** * @brief Called when Metamod is attached, before the extension version is called. * * @param error Error buffer. - * @param maxlength Maximum size of error buffer. + * @param maxlen Maximum size of error buffer. * @param late Whether or not Metamod considers this a late load. * @return True to succeed, false to fail. */ - //virtual bool SDK_OnMetamodLoad(ISmmAPI *ismm, char *error, size_t maxlength, bool late); + //virtual bool SDK_OnMetamodLoad(ISmmAPI *ismm, char *error, size_t maxlen, bool late); /** * @brief Called when Metamod is detaching, after the extension version is called. * NOTE: By default this is blocked unless sent from SourceMod. * * @param error Error buffer. - * @param maxlength Maximum size of error buffer. + * @param maxlen Maximum size of error buffer. * @return True to succeed, false to fail. */ - //virtual bool SDK_OnMetamodUnload(char *error, size_t maxlength); + //virtual bool SDK_OnMetamodUnload(char *error, size_t maxlen); /** * @brief Called when Metamod's pause state is changing. @@ -109,10 +109,10 @@ public: * * @param paused Pause state being set. * @param error Error buffer. - * @param maxlength Maximum size of error buffer. + * @param maxlen Maximum size of error buffer. * @return True to succeed, false to fail. */ - //virtual bool SDK_OnMetamodPauseChange(bool paused, char *error, size_t maxlength); + //virtual bool SDK_OnMetamodPauseChange(bool paused, char *error, size_t maxlen); #endif };