1
0
Fork 0
firefox/docs/nspr/reference/pr_getnameforidentity.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

41 lines
733 B
ReStructuredText

PR_GetNameForIdentity
=====================
Gets the string associated with a layer's unique identity.
Syntax
------
.. code::
#include <prio.h>
const char* PR_GetNameForIdentity(PRDescIdentity ident);
Parameter
~~~~~~~~~
The function has the following parameter:
``ident``
A layer's identity.
Returns
~~~~~~~
The function returns one of the following values:
- If successful, the function returns a pointer to the string
associated with the specified layer.
- If unsuccessful, the function returns ``NULL``.
Description
-----------
A string may be associated with a layer when the layer is created. The
string is copied by the runtime, and :ref:`PR_GetNameForIdentity` returns a
pointer to that copy.