<trclass="memdesc:namespacecrashpad_1_1internal"><tdclass="mdescLeft"> </td><tdclass="mdescRight">The internal namespace, not for public use. <br/></td></tr>
<trclass="memdesc:a1b7e3bafe8b9cd072d6cbf9883cb16fa"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Returns a function pointer to a named function in a library without requiring that it be found. <ahref="#a1b7e3bafe8b9cd072d6cbf9883cb16fa">More...</a><br/></td></tr>
<trclass="memdesc:a54cf5dc7a94ad08772d95cbec20fa8b7"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Returns a function pointer to a named function in a library, requiring that it be found. <ahref="#a54cf5dc7a94ad08772d95cbec20fa8b7">More...</a><br/></td></tr>
<trclass="memdesc:aa982a8cad0e72cddf1989d135db3c338"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Returns a function pointer to a named function in a library. <ahref="namespacecrashpad_1_1internal.html#aa982a8cad0e72cddf1989d135db3c338">More...</a><br/></td></tr>
<trclass="memdesc:a334a660002ce6e6f06432ccf7d3cc50f"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Returns a function pointer to a named function in a library. <ahref="namespacecrashpad_1_1internal.html#a334a660002ce6e6f06432ccf7d3cc50f">More...</a><br/></td></tr>
<p>Returns a function pointer to a named function in a library without requiring that it be found. </p>
<p>If the library or function cannot be found, this will return <code>nullptr</code>. This macro is intended to be used to access functions that may not be available at runtime.</p>
<p>This macro returns a properly-typed function pointer. It is expected to be used in this way: </p><divclass="fragment"><divclass="line"><aname="l00001"></a><spanclass="lineno"> 1</span> static const auto get_named_pipe_client_process_id =</div>
</div><!-- fragment --><p>This accesses <em>library</em> by calling <code>LoadLibrary()</code> and is subject to the same restrictions as that function. Notably, it can’t be used from a <code>DllMain()</code> entry point.</p>
<dlclass="params"><dt>Parameters</dt><dd>
<tableclass="params">
<tr><tdclass="paramdir">[in]</td><tdclass="paramname">library</td><td>The library to search in. </td></tr>
<tr><tdclass="paramdir">[in]</td><tdclass="paramname">function</td><td>The function to search for. A leading <code>::</code> is recommended when a wrapper function of the same name is present.</td></tr>
</table>
</dd>
</dl>
<dlclass="section return"><dt>Returns</dt><dd>A pointer to the requested function on success, or <code>nullptr</code> on failure.</dd></dl>
<dlclass="section see"><dt>See also</dt><dd><aclass="el"href="get__function_8h.html#a54cf5dc7a94ad08772d95cbec20fa8b7"title="Returns a function pointer to a named function in a library, requiring that it be found...">GET_FUNCTION_REQUIRED</a></dd></dl>
<p>Returns a function pointer to a named function in a library, requiring that it be found. </p>
<p>If the library or function cannot be found, this will trigger a <code>DCHECK</code> assertion. This macro is intended to be used to access functions that are always expected to be available at runtime but which are not present in any import library.</p>
<p>This macro returns a properly-typed function pointer. It is expected to be used in this way: </p><divclass="fragment"><divclass="line"><aname="l00001"></a><spanclass="lineno"> 1</span> static const auto nt_query_object =</div>
</div><!-- fragment --><p>This accesses <em>library</em> by calling <code>LoadLibrary()</code> and is subject to the same restrictions as that function. Notably, it can’t be used from a <code>DllMain()</code> entry point.</p>
<dlclass="params"><dt>Parameters</dt><dd>
<tableclass="params">
<tr><tdclass="paramdir">[in]</td><tdclass="paramname">library</td><td>The library to search in. </td></tr>
<tr><tdclass="paramdir">[in]</td><tdclass="paramname">function</td><td>The function to search for. A leading <code>::</code> is recommended when a wrapper function of the same name is present.</td></tr>
</table>
</dd>
</dl>
<dlclass="section return"><dt>Returns</dt><dd>A pointer to the requested function.</dd></dl>
<dlclass="section see"><dt>See also</dt><dd><aclass="el"href="get__function_8h.html#a1b7e3bafe8b9cd072d6cbf9883cb16fa"title="Returns a function pointer to a named function in a library without requiring that it be found...">GET_FUNCTION</a></dd></dl>