Depends on D137612 Differential Revision: https://phabricator.services.mozilla.com/D137650
24 lines
362 B
ReStructuredText
24 lines
362 B
ReStructuredText
PR_Initialized
|
|
==============
|
|
|
|
Checks whether the runtime has been initialized.
|
|
|
|
|
|
Syntax
|
|
------
|
|
|
|
.. code:: eval
|
|
|
|
#include <prinit.h>
|
|
|
|
PRBool PR_Initialized(void);
|
|
|
|
|
|
Returns
|
|
~~~~~~~
|
|
|
|
The function returns one of the following values:
|
|
|
|
- If :ref:`PR_Init` has already been called, ``PR_TRUE``.
|
|
- If :ref:`PR_Init` has not already been called, ``PR_FALSE``.
|