Skip to content

Commit

Permalink
Added documentation for GetRCDouble, GetRCFloat, and GetRCInt64.
Browse files Browse the repository at this point in the history
  • Loading branch information
alur committed Aug 22, 2013
1 parent cef283b commit fcbba98
Show file tree
Hide file tree
Showing 11 changed files with 159 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sdk/docs/lsapi/GetRCBool.xml
Expand Up @@ -37,7 +37,10 @@
<fn>GetRCBoolDef</fn>
<fn>GetRCColor</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCDouble</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt</fn>
<fn>GetRCInt64</fn>
<fn>GetRCLine</fn>
<fn>GetRCString</fn>
</see-also>
Expand Down
3 changes: 3 additions & 0 deletions sdk/docs/lsapi/GetRCBoolDef.xml
Expand Up @@ -35,7 +35,10 @@
<fn>GetRCBool</fn>
<fn>GetRCColor</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCDouble</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt</fn>
<fn>GetRCInt64</fn>
<fn>GetRCLine</fn>
<fn>GetRCString</fn>
</see-also>
Expand Down
3 changes: 3 additions & 0 deletions sdk/docs/lsapi/GetRCColor.xml
Expand Up @@ -35,7 +35,10 @@
<fn>GetRCBool</fn>
<fn>GetRCBoolDef</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCDouble</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt</fn>
<fn>GetRCInt64</fn>
<fn>GetRCLine</fn>
<fn>GetRCString</fn>
</see-also>
Expand Down
3 changes: 3 additions & 0 deletions sdk/docs/lsapi/GetRCCoordinate.xml
Expand Up @@ -54,7 +54,10 @@
<fn>GetRCBool</fn>
<fn>GetRCBoolDef</fn>
<fn>GetRCColor</fn>
<fn>GetRCDouble</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt</fn>
<fn>GetRCInt64</fn>
<fn>GetRCLine</fn>
<fn>GetRCString</fn>
<fn>ParseCoordinate</fn>
Expand Down
45 changes: 45 additions & 0 deletions sdk/docs/lsapi/GetRCDouble.xml
@@ -0,0 +1,45 @@
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="lsapi.xslt"?>

<function>
<name>GetRCDouble</name>
<description>
Gets a double from the configuration database.
</description>
<parameters>
<parameter>
<name>pszKeyName</name>
<description>
Name of the key to retrieve.
</description>
<type>LPCTSTR</type>
</parameter>
<parameter>
<name>nDefault</name>
<description>
Default value to return if the key cannot be found in the
configuration database.
</description>
<type>DOUBLE</type>
</parameter>
</parameters>
<return>
<description>
If the key is found, the return value is the value from the
configuration database. If the key cannot be found, the return value is
the value of the <param>nDefault</param> parameter.
</description>
<type>DOUBLE</type>
</return>
<see-also>
<fn>GetRCBool</fn>
<fn>GetRCBoolDef</fn>
<fn>GetRCColor</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt</fn>
<fn>GetRCInt64</fn>
<fn>GetRCLine</fn>
<fn>GetRCString</fn>
</see-also>
</function>
45 changes: 45 additions & 0 deletions sdk/docs/lsapi/GetRCFloat.xml
@@ -0,0 +1,45 @@
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="lsapi.xslt"?>

<function>
<name>GetRCFloat</name>
<description>
Gets a float from the configuration database.
</description>
<parameters>
<parameter>
<name>pszKeyName</name>
<description>
Name of the key to retrieve.
</description>
<type>LPCTSTR</type>
</parameter>
<parameter>
<name>nDefault</name>
<description>
Default value to return if the key cannot be found in the
configuration database.
</description>
<type>FLOAT</type>
</parameter>
</parameters>
<return>
<description>
If the key is found, the return value is the value from the
configuration database. If the key cannot be found, the return value is
the value of the <param>nDefault</param> parameter.
</description>
<type>FLOAT</type>
</return>
<see-also>
<fn>GetRCBool</fn>
<fn>GetRCBoolDef</fn>
<fn>GetRCColor</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCDouble</fn>
<fn>GetRCInt</fn>
<fn>GetRCInt64</fn>
<fn>GetRCLine</fn>
<fn>GetRCString</fn>
</see-also>
</function>
3 changes: 3 additions & 0 deletions sdk/docs/lsapi/GetRCInt.xml
Expand Up @@ -36,6 +36,9 @@
<fn>GetRCBoolDef</fn>
<fn>GetRCColor</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCDouble</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt64</fn>
<fn>GetRCLine</fn>
<fn>GetRCString</fn>
</see-also>
Expand Down
45 changes: 45 additions & 0 deletions sdk/docs/lsapi/GetRCInt64.xml
@@ -0,0 +1,45 @@
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="lsapi.xslt"?>

<function>
<name>GetRCInt</name>
<description>
Gets a 64bit integer from the configuration database.
</description>
<parameters>
<parameter>
<name>pszKeyName</name>
<description>
Name of the key to retrieve.
</description>
<type>LPCTSTR</type>
</parameter>
<parameter>
<name>nDefault</name>
<description>
Default value to return if the key cannot be found in the
configuration database.
</description>
<type>INT64</type>
</parameter>
</parameters>
<return>
<description>
If the key is found, the return value is the value from the
configuration database. If the key cannot be found, the return value is
the value of the <param>nDefault</param> parameter.
</description>
<type>INT64</type>
</return>
<see-also>
<fn>GetRCBool</fn>
<fn>GetRCBoolDef</fn>
<fn>GetRCColor</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCDouble</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt</fn>
<fn>GetRCLine</fn>
<fn>GetRCString</fn>
</see-also>
</function>
3 changes: 3 additions & 0 deletions sdk/docs/lsapi/GetRCLine.xml
Expand Up @@ -63,7 +63,10 @@
<fn>GetRCBoolDef</fn>
<fn>GetRCColor</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCDouble</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt</fn>
<fn>GetRCInt64</fn>
<fn>GetRCString</fn>
</see-also>
</function>
3 changes: 3 additions & 0 deletions sdk/docs/lsapi/GetRCString.xml
Expand Up @@ -60,7 +60,10 @@
<fn>GetRCBoolDef</fn>
<fn>GetRCColor</fn>
<fn>GetRCCoordinate</fn>
<fn>GetRCDouble</fn>
<fn>GetRCFloat</fn>
<fn>GetRCInt</fn>
<fn>GetRCInt64</fn>
<fn>GetRCLine</fn>
</see-also>
</function>
3 changes: 3 additions & 0 deletions sdk/docs/lsapi/index.xml
Expand Up @@ -20,7 +20,10 @@
<link>GetRCBoolDef</link>
<link>GetRCColor</link>
<link>GetRCCoordinate</link>
<link>GetRCDouble</link>
<link>GetRCFloat</link>
<link>GetRCInt</link>
<link>GetRCInt64</link>
<link>GetRCLine</link>
<link>GetRCString</link>
<link>LCClose</link>
Expand Down

0 comments on commit fcbba98

Please sign in to comment.