304 lines
29 KiB
HTML
304 lines
29 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||
|
<title>File Index</title>
|
||
|
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- Generated by Doxygen 1.3.4 -->
|
||
|
<div class="qindex"><a class="qindex" href="main.html">Main Page</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Data Structures</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Data Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
|
||
|
<h1>dmxparse.h</h1><a href="dmxparse_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/* $XFree86$ */</span>
|
||
|
00002 <span class="comment">/*</span>
|
||
|
00003 <span class="comment"> * Copyright 2002 Red Hat Inc., Durham, North Carolina.</span>
|
||
|
00004 <span class="comment"> *</span>
|
||
|
00005 <span class="comment"> * All Rights Reserved.</span>
|
||
|
00006 <span class="comment"> *</span>
|
||
|
00007 <span class="comment"> * Permission is hereby granted, free of charge, to any person obtaining</span>
|
||
|
00008 <span class="comment"> * a copy of this software and associated documentation files (the</span>
|
||
|
00009 <span class="comment"> * "Software"), to deal in the Software without restriction, including</span>
|
||
|
00010 <span class="comment"> * without limitation on the rights to use, copy, modify, merge,</span>
|
||
|
00011 <span class="comment"> * publish, distribute, sublicense, and/or sell copies of the Software,</span>
|
||
|
00012 <span class="comment"> * and to permit persons to whom the Software is furnished to do so,</span>
|
||
|
00013 <span class="comment"> * subject to the following conditions:</span>
|
||
|
00014 <span class="comment"> *</span>
|
||
|
00015 <span class="comment"> * The above copyright notice and this permission notice (including the</span>
|
||
|
00016 <span class="comment"> * next paragraph) shall be included in all copies or substantial</span>
|
||
|
00017 <span class="comment"> * portions of the Software.</span>
|
||
|
00018 <span class="comment"> *</span>
|
||
|
00019 <span class="comment"> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</span>
|
||
|
00020 <span class="comment"> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</span>
|
||
|
00021 <span class="comment"> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND</span>
|
||
|
00022 <span class="comment"> * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS</span>
|
||
|
00023 <span class="comment"> * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN</span>
|
||
|
00024 <span class="comment"> * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN</span>
|
||
|
00025 <span class="comment"> * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE</span>
|
||
|
00026 <span class="comment"> * SOFTWARE.</span>
|
||
|
00027 <span class="comment"> */</span>
|
||
|
00028
|
||
|
00029 <span class="comment">/*</span>
|
||
|
00030 <span class="comment"> * Authors:</span>
|
||
|
00031 <span class="comment"> * Rickard E. (Rik) Faith <faith@redhat.com></span>
|
||
|
00032 <span class="comment"> *</span>
|
||
|
00033 <span class="comment"> */</span>
|
||
|
00034
|
||
|
00038 <span class="preprocessor">#ifndef _DMXPARSE_H_</span>
|
||
|
00039 <span class="preprocessor"></span><span class="preprocessor">#define _DMXPARSE_H_</span>
|
||
|
00040 <span class="preprocessor"></span>
|
||
|
00041 <span class="preprocessor">#include <stdio.h></span> <span class="comment">/* For FILE */</span>
|
||
|
00042
|
||
|
<a name="l00044"></a><a class="code" href="struct__DMXConfigToken.html">00044</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigToken.html">_DMXConfigToken</a> {
|
||
|
00045 <span class="keywordtype">int</span> token;
|
||
|
00046 <span class="keywordtype">int</span> line;
|
||
|
00047 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment;
|
||
|
00048 } <a class="code" href="struct__DMXConfigToken.html">DMXConfigToken</a>, *<a class="code" href="struct__DMXConfigToken.html">DMXConfigTokenPtr</a>;
|
||
|
00049
|
||
|
<a name="l00051"></a><a class="code" href="struct__DMXConfigString.html">00051</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigString.html">_DMXConfigString</a> {
|
||
|
00052 <span class="keywordtype">int</span> token;
|
||
|
00053 <span class="keywordtype">int</span> line;
|
||
|
00054 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment;
|
||
|
00055 <span class="keyword">const</span> <span class="keywordtype">char</span> *string;
|
||
|
00056 <span class="keyword">struct </span><a class="code" href="struct__DMXConfigString.html">_DMXConfigString</a> *next;
|
||
|
00057 } <a class="code" href="struct__DMXConfigString.html">DMXConfigString</a>, *<a class="code" href="struct__DMXConfigString.html">DMXConfigStringPtr</a>;
|
||
|
00058
|
||
|
<a name="l00060"></a><a class="code" href="struct__DMXConfigNumber.html">00060</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigNumber.html">_DMXConfigNumber</a> {
|
||
|
00061 <span class="keywordtype">int</span> token;
|
||
|
00062 <span class="keywordtype">int</span> line;
|
||
|
00063 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment;
|
||
|
00064 <span class="keywordtype">int</span> number;
|
||
|
00065 } <a class="code" href="struct__DMXConfigNumber.html">DMXConfigNumber</a>, *<a class="code" href="struct__DMXConfigNumber.html">DMXConfigNumberPtr</a>;
|
||
|
00066
|
||
|
<a name="l00068"></a><a class="code" href="struct__DMXConfigPair.html">00068</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigPair.html">_DMXConfigPair</a> {
|
||
|
00069 <span class="keywordtype">int</span> token;
|
||
|
00070 <span class="keywordtype">int</span> line;
|
||
|
00071 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment;
|
||
|
00072 <span class="keywordtype">int</span> x;
|
||
|
00073 <span class="keywordtype">int</span> y;
|
||
|
00074 <span class="keywordtype">int</span> xsign;
|
||
|
00075 <span class="keywordtype">int</span> ysign;
|
||
|
00076 } <a class="code" href="struct__DMXConfigPair.html">DMXConfigPair</a>, *<a class="code" href="struct__DMXConfigPair.html">DMXConfigPairPtr</a>;
|
||
|
00077
|
||
|
<a name="l00079"></a><a class="code" href="struct__DMXConfigComment.html">00079</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigComment.html">_DMXConfigComment</a> {
|
||
|
00080 <span class="keywordtype">int</span> token;
|
||
|
00081 <span class="keywordtype">int</span> line;
|
||
|
00082 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment;
|
||
|
00083 } <a class="code" href="struct__DMXConfigComment.html">DMXConfigComment</a>, *<a class="code" href="struct__DMXConfigComment.html">DMXConfigCommentPtr</a>;
|
||
|
00084
|
||
|
00085 <span class="keyword">typedef</span> <span class="keyword">enum</span> {
|
||
|
00086 dmxConfigComment,
|
||
|
00087 dmxConfigVirtual,
|
||
|
00088 dmxConfigDisplay,
|
||
|
00089 dmxConfigWall,
|
||
|
00090 dmxConfigOption,
|
||
|
00091 dmxConfigParam
|
||
|
00092 } DMXConfigType;
|
||
|
00093
|
||
|
<a name="l00095"></a><a class="code" href="struct__DMXConfigPartDim.html">00095</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigPartDim.html">_DMXConfigPartDim</a> {
|
||
|
00096 <a class="code" href="dmxparse_8h.html#a7">DMXConfigPairPtr</a> dim;
|
||
|
00097 <a class="code" href="dmxparse_8h.html#a7">DMXConfigPairPtr</a> offset;
|
||
|
00098 } <a class="code" href="struct__DMXConfigPartDim.html">DMXConfigPartDim</a>, *<a class="code" href="struct__DMXConfigPartDim.html">DMXConfigPartDimPtr</a>;
|
||
|
00099
|
||
|
<a name="l00101"></a><a class="code" href="struct__DMXConfigFullDim.html">00101</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigFullDim.html">_DMXConfigFullDim</a> {
|
||
|
00102 <a class="code" href="dmxparse_8h.html#a11">DMXConfigPartDimPtr</a> scrn;
|
||
|
00103 <a class="code" href="dmxparse_8h.html#a11">DMXConfigPartDimPtr</a> root;
|
||
|
00104 } <a class="code" href="struct__DMXConfigFullDim.html">DMXConfigFullDim</a>, *<a class="code" href="struct__DMXConfigFullDim.html">DMXConfigFullDimPtr</a>;
|
||
|
00105
|
||
|
<a name="l00107"></a><a class="code" href="struct__DMXConfigDisplay.html">00107</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigDisplay.html">_DMXConfigDisplay</a> {
|
||
|
00108 <span class="comment">/* Summary information */</span>
|
||
|
00109 <span class="keyword">const</span> <span class="keywordtype">char</span> *name;
|
||
|
00110 <span class="comment">/* Screen Window Geometry */</span>
|
||
|
00111 <span class="keywordtype">int</span> scrnWidth, scrnHeight;
|
||
|
00112 <span class="keywordtype">int</span> scrnX, scrnY;
|
||
|
00113 <span class="keywordtype">int</span> scrnXSign, scrnYSign;
|
||
|
00114 <span class="comment">/* Root Window Geometry */</span>
|
||
|
00115 <span class="keywordtype">int</span> rootWidth, rootHeight;
|
||
|
00116 <span class="keywordtype">int</span> rootX, rootY;
|
||
|
00117 <span class="keywordtype">int</span> rootXSign, rootYSign;
|
||
|
00118 <span class="comment">/* Origin in global space */</span>
|
||
|
00119 <span class="keywordtype">int</span> rootXOrigin, rootYOrigin;
|
||
|
00120
|
||
|
00121 <span class="comment">/* Raw configuration information */</span>
|
||
|
00122 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> start;
|
||
|
00123 <a class="code" href="dmxparse_8h.html#a3">DMXConfigStringPtr</a> dname;
|
||
|
00124 <a class="code" href="dmxparse_8h.html#a13">DMXConfigFullDimPtr</a> dim;
|
||
|
00125 <a class="code" href="dmxparse_8h.html#a7">DMXConfigPairPtr</a> origin;
|
||
|
00126 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> end;
|
||
|
00127 } <a class="code" href="struct__DMXConfigDisplay.html">DMXConfigDisplay</a>, *<a class="code" href="struct__DMXConfigDisplay.html">DMXConfigDisplayPtr</a>;
|
||
|
00128
|
||
|
<a name="l00130"></a><a class="code" href="struct__DMXConfigWall.html">00130</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigWall.html">_DMXConfigWall</a> {
|
||
|
00131 <span class="comment">/* Summary information */</span>
|
||
|
00132 <span class="keywordtype">int</span> width, height; <span class="comment">/* dimensions of displays */</span>
|
||
|
00133 <span class="keywordtype">int</span> xwall, ywall; <span class="comment">/* dimensions of wall, in tiles */</span>
|
||
|
00134
|
||
|
00135
|
||
|
00136 <span class="comment">/* Raw configuration informaiton */</span>
|
||
|
00137 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> start;
|
||
|
00138 <a class="code" href="dmxparse_8h.html#a7">DMXConfigPairPtr</a> wallDim;
|
||
|
00139 <a class="code" href="dmxparse_8h.html#a7">DMXConfigPairPtr</a> displayDim;
|
||
|
00140 <a class="code" href="dmxparse_8h.html#a3">DMXConfigStringPtr</a> nameList;
|
||
|
00141 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> end;
|
||
|
00142 } <a class="code" href="struct__DMXConfigWall.html">DMXConfigWall</a>, *<a class="code" href="struct__DMXConfigWall.html">DMXConfigWallPtr</a>;
|
||
|
00143
|
||
|
<a name="l00145"></a><a class="code" href="struct__DMXConfigOption.html">00145</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigOption.html">_DMXConfigOption</a> {
|
||
|
00146 <span class="comment">/* Summary information */</span>
|
||
|
00147 <span class="keywordtype">char</span> *string;
|
||
|
00148
|
||
|
00149 <span class="comment">/* Raw configuration informaiton */</span>
|
||
|
00150 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> start;
|
||
|
00151 <a class="code" href="dmxparse_8h.html#a3">DMXConfigStringPtr</a> option;
|
||
|
00152 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> end;
|
||
|
00153 } <a class="code" href="struct__DMXConfigOption.html">DMXConfigOption</a>, *<a class="code" href="struct__DMXConfigOption.html">DMXConfigOptionPtr</a>;
|
||
|
00154
|
||
|
<a name="l00156"></a><a class="code" href="struct__DMXConfigParam.html">00156</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigParam.html">_DMXConfigParam</a> {
|
||
|
00157 <span class="keywordtype">int</span> argc;
|
||
|
00158 <span class="keyword">const</span> <span class="keywordtype">char</span> **argv;
|
||
|
00159
|
||
|
00160 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> start;
|
||
|
00161 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> open;
|
||
|
00162 <a class="code" href="dmxparse_8h.html#a3">DMXConfigStringPtr</a> param;
|
||
|
00163 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> close;
|
||
|
00164 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> end; <span class="comment">/* Either open/close OR end */</span>
|
||
|
00165 <span class="keyword">struct </span><a class="code" href="struct__DMXConfigParam.html">_DMXConfigParam</a> *next;
|
||
|
00166 } <a class="code" href="struct__DMXConfigParam.html">DMXConfigParam</a>, *<a class="code" href="struct__DMXConfigParam.html">DMXConfigParamPtr</a>;
|
||
|
00167
|
||
|
<a name="l00169"></a><a class="code" href="struct__DMXConfigSub.html">00169</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigSub.html">_DMXConfigSub</a> {
|
||
|
00170 DMXConfigType type;
|
||
|
00171 <a class="code" href="dmxparse_8h.html#a9">DMXConfigCommentPtr</a> comment;
|
||
|
00172 <a class="code" href="dmxparse_8h.html#a15">DMXConfigDisplayPtr</a> display;
|
||
|
00173 <a class="code" href="dmxparse_8h.html#a17">DMXConfigWallPtr</a> wall;
|
||
|
00174 <a class="code" href="dmxparse_8h.html#a19">DMXConfigOptionPtr</a> option;
|
||
|
00175 <a class="code" href="dmxparse_8h.html#a21">DMXConfigParamPtr</a> param;
|
||
|
00176 <span class="keyword">struct </span><a class="code" href="struct__DMXConfigSub.html">_DMXConfigSub</a> *next;
|
||
|
00177 } <a class="code" href="struct__DMXConfigSub.html">DMXConfigSub</a>, *<a class="code" href="struct__DMXConfigSub.html">DMXConfigSubPtr</a>;
|
||
|
00178
|
||
|
<a name="l00180"></a><a class="code" href="struct__DMXConfigVirtual.html">00180</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigVirtual.html">_DMXConfigVirtual</a> {
|
||
|
00181 <span class="comment">/* Summary information */</span>
|
||
|
00182 <span class="keyword">const</span> <span class="keywordtype">char</span> *name;
|
||
|
00183 <span class="keywordtype">int</span> width, height;
|
||
|
00184
|
||
|
00185 <span class="comment">/* Raw configuration information */</span>
|
||
|
00186 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> start;
|
||
|
00187 <a class="code" href="dmxparse_8h.html#a3">DMXConfigStringPtr</a> vname;
|
||
|
00188 <a class="code" href="dmxparse_8h.html#a7">DMXConfigPairPtr</a> dim;
|
||
|
00189 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> open;
|
||
|
00190 <a class="code" href="dmxparse_8h.html#a23">DMXConfigSubPtr</a> subentry;
|
||
|
00191 <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> close;
|
||
|
00192 } <a class="code" href="struct__DMXConfigVirtual.html">DMXConfigVirtual</a>, *<a class="code" href="struct__DMXConfigVirtual.html">DMXConfigVirtualPtr</a>;
|
||
|
00193
|
||
|
<a name="l00195"></a><a class="code" href="struct__DMXConfigEntry.html">00195</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__DMXConfigEntry.html">_DMXConfigEntry</a> {
|
||
|
00196 DMXConfigType type;
|
||
|
00197 <a class="code" href="dmxparse_8h.html#a9">DMXConfigCommentPtr</a> comment;
|
||
|
00198 <a class="code" href="dmxparse_8h.html#a25">DMXConfigVirtualPtr</a> <span class="keyword">virtual</span>;
|
||
|
00199 <span class="keyword">struct </span><a class="code" href="struct__DMXConfigEntry.html">_DMXConfigEntry</a> *next;
|
||
|
00200 } <a class="code" href="struct__DMXConfigEntry.html">DMXConfigEntry</a>, *<a class="code" href="struct__DMXConfigEntry.html">DMXConfigEntryPtr</a>;
|
||
|
00201
|
||
|
00202 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a27">DMXConfigEntryPtr</a> dmxConfigEntry;
|
||
|
00203
|
||
|
00204 <span class="keyword">extern</span> <span class="keywordtype">int</span> yylex(<span class="keywordtype">void</span>);
|
||
|
00205 <span class="keyword">extern</span> <span class="keywordtype">int</span> yydebug;
|
||
|
00206 <span class="keyword">extern</span> <span class="keywordtype">void</span> yyerror(<span class="keyword">const</span> <span class="keywordtype">char</span> *message);
|
||
|
00207
|
||
|
00208 <span class="keyword">extern</span> <span class="keywordtype">void</span> <a class="code" href="dmxparse_8c.html#a0">dmxConfigLog</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *format, ...);
|
||
|
00209 <span class="keyword">extern</span> <span class="keywordtype">void</span> *dmxConfigAlloc(<span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> bytes);
|
||
|
00210 <span class="keyword">extern</span> <span class="keywordtype">void</span> *dmxConfigRealloc(<span class="keywordtype">void</span> *orig,
|
||
|
00211 <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> orig_bytes,
|
||
|
00212 <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> bytes);
|
||
|
00213 <span class="keyword">extern</span> <span class="keyword">const</span> <span class="keywordtype">char</span> *dmxConfigCopyString(<span class="keyword">const</span> <span class="keywordtype">char</span> *string,
|
||
|
00214 <span class="keywordtype">int</span> length);
|
||
|
00215 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFree(<span class="keywordtype">void</span> *area);
|
||
|
00216 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a1">DMXConfigTokenPtr</a> dmxConfigCreateToken(<span class="keywordtype">int</span> token, <span class="keywordtype">int</span> line,
|
||
|
00217 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment);
|
||
|
00218 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeToken(DMXConfigTokenPtr p);
|
||
|
00219 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a3">DMXConfigStringPtr</a> dmxConfigCreateString(<span class="keywordtype">int</span> token, <span class="keywordtype">int</span> line,
|
||
|
00220 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment,
|
||
|
00221 <span class="keyword">const</span> <span class="keywordtype">char</span> *string);
|
||
|
00222 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeString(DMXConfigStringPtr p);
|
||
|
00223 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a5">DMXConfigNumberPtr</a> dmxConfigCreateNumber(<span class="keywordtype">int</span> token, <span class="keywordtype">int</span> line,
|
||
|
00224 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment,
|
||
|
00225 <span class="keywordtype">int</span> number);
|
||
|
00226 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeNumber(DMXConfigNumberPtr p);
|
||
|
00227 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a7">DMXConfigPairPtr</a> dmxConfigCreatePair(<span class="keywordtype">int</span> token, <span class="keywordtype">int</span> line,
|
||
|
00228 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment,
|
||
|
00229 <span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y,
|
||
|
00230 <span class="keywordtype">int</span> xsign, <span class="keywordtype">int</span> ysign);
|
||
|
00231 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreePair(DMXConfigPairPtr p);
|
||
|
00232 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a9">DMXConfigCommentPtr</a> dmxConfigCreateComment(<span class="keywordtype">int</span> token, <span class="keywordtype">int</span> line,
|
||
|
00233 <span class="keyword">const</span> <span class="keywordtype">char</span> *comment);
|
||
|
00234 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeComment(DMXConfigCommentPtr p);
|
||
|
00235 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a11">DMXConfigPartDimPtr</a> dmxConfigCreatePartDim(DMXConfigPairPtr pDim,
|
||
|
00236 DMXConfigPairPtr pOffset);
|
||
|
00237 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreePartDim(DMXConfigPartDimPtr p);
|
||
|
00238 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a13">DMXConfigFullDimPtr</a> dmxConfigCreateFullDim(DMXConfigPartDimPtr pScrn,
|
||
|
00239 DMXConfigPartDimPtr pRoot);
|
||
|
00240 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeFullDim(DMXConfigFullDimPtr p);
|
||
|
00241 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a15">DMXConfigDisplayPtr</a> dmxConfigCreateDisplay(DMXConfigTokenPtr pStart,
|
||
|
00242 DMXConfigStringPtr pName,
|
||
|
00243 DMXConfigFullDimPtr pDim,
|
||
|
00244 DMXConfigPairPtr pOrigin,
|
||
|
00245 DMXConfigTokenPtr pEnd);
|
||
|
00246 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeDisplay(DMXConfigDisplayPtr p);
|
||
|
00247 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a17">DMXConfigWallPtr</a> dmxConfigCreateWall(DMXConfigTokenPtr pStart,
|
||
|
00248 DMXConfigPairPtr pWallDim,
|
||
|
00249 DMXConfigPairPtr pDisplayDim,
|
||
|
00250 DMXConfigStringPtr pNameList,
|
||
|
00251 DMXConfigTokenPtr pEnd);
|
||
|
00252 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeWall(DMXConfigWallPtr p);
|
||
|
00253 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a19">DMXConfigOptionPtr</a> dmxConfigCreateOption(DMXConfigTokenPtr pStart,
|
||
|
00254 DMXConfigStringPtr pOption,
|
||
|
00255 DMXConfigTokenPtr pEnd);
|
||
|
00256 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeOption(DMXConfigOptionPtr p);
|
||
|
00257 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a21">DMXConfigParamPtr</a> dmxConfigCreateParam(DMXConfigTokenPtr pStart,
|
||
|
00258 DMXConfigTokenPtr pOpen,
|
||
|
00259 DMXConfigStringPtr pParam,
|
||
|
00260 DMXConfigTokenPtr pClose,
|
||
|
00261 DMXConfigTokenPtr pEnd);
|
||
|
00262 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeParam(DMXConfigParamPtr p);
|
||
|
00263 <span class="keyword">extern</span> <span class="keyword">const</span> <span class="keywordtype">char</span> **dmxConfigLookupParam(DMXConfigParamPtr p,
|
||
|
00264 <span class="keyword">const</span> <span class="keywordtype">char</span> *key,
|
||
|
00265 <span class="keywordtype">int</span> *argc);
|
||
|
00266 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a23">DMXConfigSubPtr</a> dmxConfigCreateSub(DMXConfigType type,
|
||
|
00267 DMXConfigCommentPtr comment,
|
||
|
00268 DMXConfigDisplayPtr display,
|
||
|
00269 DMXConfigWallPtr wall,
|
||
|
00270 DMXConfigOptionPtr option,
|
||
|
00271 DMXConfigParamPtr param);
|
||
|
00272 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeSub(DMXConfigSubPtr sub);
|
||
|
00273 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a23">DMXConfigSubPtr</a> dmxConfigSubComment(DMXConfigCommentPtr comment);
|
||
|
00274 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a23">DMXConfigSubPtr</a> dmxConfigSubDisplay(DMXConfigDisplayPtr display);
|
||
|
00275 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a23">DMXConfigSubPtr</a> dmxConfigSubWall(DMXConfigWallPtr wall);
|
||
|
00276 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a23">DMXConfigSubPtr</a> dmxConfigSubOption(DMXConfigOptionPtr option);
|
||
|
00277 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a23">DMXConfigSubPtr</a> dmxConfigSubParam(DMXConfigParamPtr param);
|
||
|
00278 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a23">DMXConfigSubPtr</a> dmxConfigAddSub(DMXConfigSubPtr head,
|
||
|
00279 DMXConfigSubPtr sub);
|
||
|
00280 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a25">DMXConfigVirtualPtr</a> dmxConfigCreateVirtual(DMXConfigTokenPtr pStart,
|
||
|
00281 DMXConfigStringPtr pName,
|
||
|
00282 DMXConfigPairPtr pDim,
|
||
|
00283 DMXConfigTokenPtr pOpen,
|
||
|
00284 DMXConfigSubPtr pSubentry,
|
||
|
00285 DMXConfigTokenPtr pClose);
|
||
|
00286 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeVirtual(DMXConfigVirtualPtr <span class="keyword">virtual</span>);
|
||
|
00287 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a27">DMXConfigEntryPtr</a> dmxConfigCreateEntry(DMXConfigType type,
|
||
|
00288 DMXConfigCommentPtr comment,
|
||
|
00289 DMXConfigVirtualPtr <span class="keyword">virtual</span>);
|
||
|
00290 <span class="keyword">extern</span> <span class="keywordtype">void</span> dmxConfigFreeEntry(DMXConfigEntryPtr entry);
|
||
|
00291 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a27">DMXConfigEntryPtr</a> dmxConfigAddEntry(DMXConfigEntryPtr head,
|
||
|
00292 DMXConfigType type,
|
||
|
00293 DMXConfigCommentPtr comment,
|
||
|
00294 DMXConfigVirtualPtr <span class="keyword">virtual</span>);
|
||
|
00295 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a27">DMXConfigEntryPtr</a> dmxConfigEntryComment(DMXConfigCommentPtr comment);
|
||
|
00296 <span class="keyword">extern</span> <a class="code" href="dmxparse_8h.html#a27">DMXConfigEntryPtr</a> dmxConfigEntryVirtual(DMXConfigVirtualPtr <span class="keyword">virtual</span>);
|
||
|
00297
|
||
|
00298 <span class="preprocessor">#endif</span>
|
||
|
</pre></div> <hr>
|
||
|
<address>
|
||
|
<small>
|
||
|
Generated June 29, 2004 for <a
|
||
|
href="http://dmx.sourceforge.net">Distributed Multihead X</a> by
|
||
|
<a href="http://www.doxygen.org/index.html">doxygen</a>
|
||
|
1.3.4.
|
||
|
</small>
|
||
|
</addres>
|
||
|
</hr>
|
||
|
</body>
|
||
|
</html>
|