fixed capitalization on uint64 keyvalues natives

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40822
This commit is contained in:
David Anderson
2007-05-19 21:36:14 +00:00
parent a55400b0ac
commit 2cad3c3424
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -124,7 +124,7 @@ static cell_t smn_KvSetNum(IPluginContext *pCtx, const cell_t *params)
return 1;
}
static cell_t smn_KvSetUint64(IPluginContext *pCtx, const cell_t *params)
static cell_t smn_KvSetUInt64(IPluginContext *pCtx, const cell_t *params)
{
Handle_t hndl = static_cast<Handle_t>(params[1]);
HandleError herr;
@@ -312,7 +312,7 @@ static cell_t smn_KvGetColor(IPluginContext *pCtx, const cell_t *params)
return 1;
}
static cell_t smn_KvGetUint64(IPluginContext *pCtx, const cell_t *params)
static cell_t smn_KvGetUInt64(IPluginContext *pCtx, const cell_t *params)
{
Handle_t hndl = static_cast<Handle_t>(params[1]);
HandleError herr;
@@ -820,14 +820,14 @@ REGISTER_NATIVES(keyvaluenatives)
{
{"KvSetString", smn_KvSetString},
{"KvSetNum", smn_KvSetNum},
{"KvSetUint64", smn_KvSetUint64},
{"KvSetUInt64", smn_KvSetUInt64},
{"KvSetFloat", smn_KvSetFloat},
{"KvSetColor", smn_KvSetColor},
{"KvGetString", smn_KvGetString},
{"KvGetNum", smn_KvGetNum},
{"KvGetFloat", smn_KvGetFloat},
{"KvGetColor", smn_KvGetColor},
{"KvGetUint64", smn_KvGetUint64},
{"KvGetUInt64", smn_KvGetUInt64},
{"CreateKeyValues", smn_CreateKeyValues},
{"KvJumpToKey", smn_KvJumpToKey},
{"KvGotoNextKey", smn_KvGotoNextKey},