SC_Context_Get()
Returns a value for a given key.
Synopsis:
#include <scoreloop/sc_context.h>
SC_Error_t SC_Context_Get(SC_Context_h self, const char *key, SC_String_h *pValue)
Arguments:
- self
-
An opaque handle for the SC_Context instance.
- key
-
Key string for which to retrieve the value.
- pValue
-
Where to store the value string reference.
Library:
libscoreloopcoreDescription:
This method returns a value for a given key.
Returns:
SC_Error_t A return code (SC_NOT_FOUND if key is not present in the dictionary, SC_OK otherwise).