Minor stuff, no need to look

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40632
This commit is contained in:
Scott Ehlert 2007-03-16 17:29:05 +00:00
parent a98c47e04b
commit 19728377f1
3 changed files with 4 additions and 4 deletions

View File

@ -223,7 +223,7 @@ void RootConsoleMenu::OnRootConsoleCommand(const char *cmd, unsigned int argcoun
ConsolePrint(" Development would not have been possible without the following people:");
ConsolePrint(" David \"BAILOPAN\" Anderson, lead developer");
ConsolePrint(" Borja \"faluco\" Ferrer, Core developer");
ConsolePrint(" Scott \"Damaged Soul\" Ehlert, SourceMM developer");
ConsolePrint(" Scott \"Damaged Soul\" Ehlert, Core developer");
ConsolePrint(" Pavol \"PM OnoTo\" Marko, SourceHook developer");
ConsolePrint(" Special thanks to Viper of GameConnect");
ConsolePrint(" Special thanks to Mani of Mani-Admin-Plugin");

View File

@ -432,7 +432,7 @@ static cell_t smn_HookUserMessage(IPluginContext *pCtx, const cell_t *params)
return 1;
}
static cell_t smn_UnHookUserMessage(IPluginContext *pCtx, const cell_t *params)
static cell_t smn_UnhookUserMessage(IPluginContext *pCtx, const cell_t *params)
{
IPluginFunction *pFunc;
MsgListenerWrapper *pListener;
@ -477,6 +477,6 @@ REGISTER_NATIVES(usrmsgnatives)
{"StartMessageEx", smn_StartMessageEx},
{"EndMessage", smn_EndMessage},
{"HookUserMessage", smn_HookUserMessage},
{"UnHookUserMessage", smn_UnHookUserMessage},
{"UnhookUserMessage", smn_UnhookUserMessage},
{NULL, NULL}
};

View File

@ -130,7 +130,7 @@ native HookUserMessage(UserMsg:msg_id, MsgHook:hook, bool:intercept=false, MsgSe
* @noreturn
* @error Invalid message index.
*/
native UnHookUserMessage(UserMsg:msg_id, MsgHook:hook, bool:intercept=false);
native UnhookUserMessage(UserMsg:msg_id, MsgHook:hook, bool:intercept=false);
/**
* Starts a usermessage (network message) that broadcasts to all clients.