Sophie

Sophie

distrib > CentOS > 5 > x86_64 > by-pkgid > 67e32647b06c0323bf90c6b54a6438d1 > files > 361

rpm-apidocs-4.4.2.3-34.el5.x86_64.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>rpm: lua/lfunc.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.4.7 -->
<div class="tabs">
  <ul>
    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
    <li><a href="modules.html"><span>Modules</span></a></li>
    <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
    <li id="current"><a href="files.html"><span>Files</span></a></li>
    <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
  </ul></div>
<div class="tabs">
  <ul>
    <li><a href="files.html"><span>File&nbsp;List</span></a></li>
    <li><a href="globals.html"><span>Globals</span></a></li>
  </ul></div>
<h1>lua/lfunc.h</h1><a href="lfunc_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment">** $Id: lfunc.h,v 1.2 2004/03/23 05:09:14 jbj Exp $</span>
<a name="l00003"></a>00003 <span class="comment">** Auxiliary functions to manipulate prototypes and closures</span>
<a name="l00004"></a>00004 <span class="comment">** See Copyright Notice in lua.h</span>
<a name="l00005"></a>00005 <span class="comment">*/</span>
<a name="l00006"></a>00006 
<a name="l00007"></a>00007 <span class="preprocessor">#ifndef lfunc_h</span>
<a name="l00008"></a>00008 <span class="preprocessor"></span><span class="preprocessor">#define lfunc_h</span>
<a name="l00009"></a>00009 <span class="preprocessor"></span>
<a name="l00010"></a>00010 
<a name="l00011"></a>00011 <span class="preprocessor">#include "<a class="code" href="lobject_8h.html">lobject.h</a>"</span>
<a name="l00012"></a>00012 
<a name="l00013"></a>00013 
<a name="l00014"></a>00014 <span class="comment">/*@null@*/</span>
<a name="l00015"></a>00015 <a class="code" href="structProto.html">Proto</a> *<a class="code" href="lfunc_8c.html#4ffd9d8ef515a7f785d007de7ceb9e4f">luaF_newproto</a> (<a class="code" href="structlua__State.html">lua_State</a> *L)
<a name="l00016"></a>00016         <span class="comment">/*@modifies L @*/</span>;
<a name="l00017"></a>00017 <span class="comment">/*@null@*/</span>
<a name="l00018"></a>00018 <a class="code" href="unionClosure.html">Closure</a> *<a class="code" href="lfunc_8c.html#2e07a74d62105e16e2fc09a846148a46">luaF_newCclosure</a> (<a class="code" href="structlua__State.html">lua_State</a> *L, <span class="keywordtype">int</span> nelems)
<a name="l00019"></a>00019         <span class="comment">/*@modifies L @*/</span>;
<a name="l00020"></a>00020 <span class="comment">/*@null@*/</span>
<a name="l00021"></a>00021 <a class="code" href="unionClosure.html">Closure</a> *<a class="code" href="lfunc_8c.html#9af60c298fd42bc8bbea474ee5aa89ce">luaF_newLclosure</a> (<a class="code" href="structlua__State.html">lua_State</a> *L, <span class="keywordtype">int</span> nelems, <a class="code" href="structlua__TObject.html">TObject</a> *e)
<a name="l00022"></a>00022         <span class="comment">/*@modifies L @*/</span>;
<a name="l00023"></a>00023 <span class="comment">/*@null@*/</span>
<a name="l00024"></a>00024 <a class="code" href="structUpVal.html">UpVal</a> *<a class="code" href="lfunc_8c.html#20f971bc630264489ebc4deea02be13a">luaF_findupval</a> (<a class="code" href="structlua__State.html">lua_State</a> *L, <a class="code" href="structlua__TObject.html">StkId</a> level)
<a name="l00025"></a>00025         <span class="comment">/*@modifies L @*/</span>;
<a name="l00026"></a>00026 <span class="keywordtype">void</span> <a class="code" href="lfunc_8c.html#b50c76a12250379a898290f481de4ab6">luaF_close</a> (<a class="code" href="structlua__State.html">lua_State</a> *L, <a class="code" href="structlua__TObject.html">StkId</a> level)
<a name="l00027"></a>00027         <span class="comment">/*@modifies L @*/</span>;
<a name="l00028"></a>00028 <span class="keywordtype">void</span> <a class="code" href="lfunc_8c.html#117c26fb473f6165ee84d70d49a741b7">luaF_freeproto</a> (<a class="code" href="structlua__State.html">lua_State</a> *L, <a class="code" href="structProto.html">Proto</a> *f)
<a name="l00029"></a>00029         <span class="comment">/*@modifies L, f @*/</span>;
<a name="l00030"></a>00030 <span class="keywordtype">void</span> <a class="code" href="lfunc_8c.html#63b9905e2b6f52f6368a8f8019605c99">luaF_freeclosure</a> (<a class="code" href="structlua__State.html">lua_State</a> *L, <a class="code" href="unionClosure.html">Closure</a> *c)
<a name="l00031"></a>00031         <span class="comment">/*@modifies L, c @*/</span>;
<a name="l00032"></a>00032 
<a name="l00033"></a>00033 <span class="comment">/*@observer@*/</span> <span class="comment">/*@null@*/</span>
<a name="l00034"></a>00034 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="lfunc_8c.html#aa3cd5bc3901e7edf1ac428151cdfe8c">luaF_getlocalname</a> (<span class="keyword">const</span> <a class="code" href="structProto.html">Proto</a> *func, <span class="keywordtype">int</span> local_number, <span class="keywordtype">int</span> pc)
<a name="l00035"></a>00035         <span class="comment">/*@*/</span>;
<a name="l00036"></a>00036 
<a name="l00037"></a>00037 
<a name="l00038"></a>00038 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on 1 Oct 2013 for rpm by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address>
</body>
</html>