diff --git a/public/IAdminSystem.h b/public/IAdminSystem.h index c63639d3..0d887ea8 100644 --- a/public/IAdminSystem.h +++ b/public/IAdminSystem.h @@ -624,7 +624,7 @@ namespace SourceMod /** * @brief Reads a single character as a flag. * - * @param flag Flag character. + * @param c Flag character. * @param pAdmFlag Pointer to store the admin flag. * @return True on success, false if invalid. */ @@ -707,7 +707,7 @@ namespace SourceMod * @brief Computers access to an override. * * @param client Client index. - * @param override Override name. + * @param cmd Override name. * @param flags Default flags. * @param override_only If false, if a command matches the override, * then its flags will override the default. diff --git a/public/IDBDriver.h b/public/IDBDriver.h index af146620..c2ae715f 100644 --- a/public/IDBDriver.h +++ b/public/IDBDriver.h @@ -784,7 +784,7 @@ namespace SourceMod * @param type A DBHandleType value. * @param ptr A pointer corrresponding to a DBHandleType * object. - * @param token Identity pointer of the owning identity. + * @param pToken Identity pointer of the owning identity. * @return A new Handle_t handle, or 0 on failure. */ virtual Handle_t CreateHandle(DBHandleType type, void *ptr, IdentityToken_t *pToken) =0; @@ -814,7 +814,7 @@ namespace SourceMod * @brief Given a driver name, attempts to find it. If it is not found, SourceMod * will attempt to load it. This function is not thread safe. * - * @param name Driver identifier name. + * @param driver Driver identifier name. * @return IDBDriver pointer on success, NULL otherwise. */ virtual IDBDriver *FindOrLoadDriver(const char *driver) =0; diff --git a/public/IExtensionSys.h b/public/IExtensionSys.h index ec0b4211..6f427db8 100644 --- a/public/IExtensionSys.h +++ b/public/IExtensionSys.h @@ -337,7 +337,6 @@ namespace SourceMod * * @param path Path to extension file, relative to the * extensions folder. - * @param lifetime Lifetime of the extension (currently ignored). * @param error Error buffer. * @param maxlength Maximum error buffer length. * @return New IExtension on success, NULL on failure. diff --git a/public/IMenuManager.h b/public/IMenuManager.h index 60a07393..9471e1b2 100644 --- a/public/IMenuManager.h +++ b/public/IMenuManager.h @@ -265,7 +265,7 @@ namespace SourceMod * @brief Returns whether the display is capable of rendering an item * with the given flags. * - * @param flags ITEMDRAW flags. + * @param drawFlags ITEMDRAW flags. * @return True if renderable, false otherwise. */ virtual bool CanDrawItem(unsigned int drawFlags) =0; @@ -289,7 +289,7 @@ namespace SourceMod * @brief Sets the selectable key map. Returns false if the function * is not supported. * - * @param keys A bit string where each bit N-1 specifies + * @param keymap A bit string where each bit N-1 specifies * that key N is selectable (key 0 is bit 9). * If the selectable key map is 0, it will be * automatically set to allow 0. @@ -662,6 +662,7 @@ namespace SourceMod * @brief A display/selection cycle has ended. * * @param menu Menu pointer. + * @param reason MenuEndReason reason. */ virtual void OnMenuEnd(IBaseMenu *menu, MenuEndReason reason) { @@ -740,6 +741,7 @@ namespace SourceMod * always be called. * * @param menu Menu pointer. + * @param reason VoteCancelReason reason. */ virtual void OnMenuVoteCancel(IBaseMenu *menu, VoteCancelReason reason) { diff --git a/public/ITextParsers.h b/public/ITextParsers.h index 0b0f0c68..85f675e3 100644 --- a/public/ITextParsers.h +++ b/public/ITextParsers.h @@ -280,7 +280,6 @@ namespace SourceMod * @param key Key string. * @param value Value string. If no quotes were specified, this will be NULL, * and key will contain the entire string. - * @param Number of line in file. * @return SMCResult directive. */ virtual SMCResult ReadSMC_KeyValue(const SMCStates *states, const char *key, const char *value) @@ -291,7 +290,7 @@ namespace SourceMod /** * @brief Called when leaving the current section. * - * @param Parsing states. + * @param states Parsing states. * @return SMCResult directive. */ virtual SMCResult ReadSMC_LeavingSection(const SMCStates *states)