mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-09 22:09:57 +00:00
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
||
|
<HTML>
|
||
|
<HEAD>
|
||
|
<TITLE>Mini-XML Programmers Manual, Version 2.0</TITLE>
|
||
|
<META NAME="author" CONTENT="Michael Sweet">
|
||
|
<META NAME="copyright" CONTENT="Copyright 2003-2004">
|
||
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=iso-iso-8859-1">
|
||
|
<LINK REL="Start" HREF="index.html">
|
||
|
<LINK REL="Contents" HREF="toc.html">
|
||
|
<LINK REL="Prev" HREF="FunctionsandMethods.html">
|
||
|
<LINK REL="Next" HREF="Types.html">
|
||
|
<STYLE TYPE="text/css"><!--
|
||
|
BODY { font-family: serif }
|
||
|
H1 { font-family: sans-serif }
|
||
|
H2 { font-family: sans-serif }
|
||
|
H3 { font-family: sans-serif }
|
||
|
H4 { font-family: sans-serif }
|
||
|
H5 { font-family: sans-serif }
|
||
|
H6 { font-family: sans-serif }
|
||
|
SUB { font-size: smaller }
|
||
|
SUP { font-size: smaller }
|
||
|
PRE { font-family: monospace }
|
||
|
--></STYLE>
|
||
|
</HEAD>
|
||
|
<BODY>
|
||
|
<A HREF="toc.html">Contents</A>
|
||
|
<A HREF="FunctionsandMethods.html">Previous</A>
|
||
|
<A HREF="Types.html">Next</A>
|
||
|
<HR NOSHADE>
|
||
|
<H3><A NAME="5_2_2">Variables and Class/Structure/Union Members</A></H3>
|
||
|
<P>Each variable or member must be declared on a separate line and must
|
||
|
be immediately followed by a comment describing the variable or member,
|
||
|
as follows:</P>
|
||
|
<PRE>
|
||
|
int this_variable; /* The current state of this */
|
||
|
int that_variable; /* The current state of that */
|
||
|
</PRE>
|
||
|
<HR NOSHADE>
|
||
|
<A HREF="toc.html">Contents</A>
|
||
|
<A HREF="FunctionsandMethods.html">Previous</A>
|
||
|
<A HREF="Types.html">Next</A>
|
||
|
</BODY>
|
||
|
</HTML>
|