From 31a9d1cb2516bbb00c78fa72a5a8446b1e2a1764 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 27 Nov 2022 22:13:47 +0100 Subject: [PATCH] Update IKeyValuesMemory method string parameter names --- r5dev/public/ikeyvaluessystem.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/r5dev/public/ikeyvaluessystem.h b/r5dev/public/ikeyvaluessystem.h index 8928e5f4..11108d33 100644 --- a/r5dev/public/ikeyvaluessystem.h +++ b/r5dev/public/ikeyvaluessystem.h @@ -33,7 +33,7 @@ public: virtual void FreeKeyValuesMemory( void *pMem ) = 0; // symbol table access (used for key names) - virtual HKeySymbol GetSymbolForString( const char *name, bool bCreate = true ) = 0; + virtual HKeySymbol GetSymbolForString( const char *pName, bool bCreate = true ) = 0; virtual const char *GetStringForSymbol( HKeySymbol symbol ) = 0; // for debugging, adds KeyValues record into global list so we can track memory leaks @@ -44,11 +44,11 @@ public: virtual void *GetKeyValuesMemory( void ) = 0; // set/get a value for keyvalues resolution symbol // e.g.: SetKeyValuesExpressionSymbol( "LOWVIOLENCE", true ) - enables [$LOWVIOLENCE] - virtual void SetKeyValuesExpressionSymbol( const char *name, bool bValue ) = 0; - virtual bool GetKeyValuesExpressionSymbol( const char *name ) = 0; + virtual void SetKeyValuesExpressionSymbol( const char *pName, bool bValue ) = 0; + virtual bool GetKeyValuesExpressionSymbol( const char *pName ) = 0; // symbol table access from code with case-preserving requirements (used for key names) - virtual HKeySymbol GetSymbolForStringCaseSensitive( HKeySymbol &hCaseInsensitiveSymbol, const char *name, bool bCreate = true ) = 0; + virtual HKeySymbol GetSymbolForStringCaseSensitive( HKeySymbol &hCaseInsensitiveSymbol, const char *pName, bool bCreate = true ) = 0; }; #endif // VSTDLIB_IKEYVALUESSYSTEM_H