Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > f3dfa22869f9cbc8258f8de2f086ee44 > files > 53

libkxl1.1.6_0-devel-1.1.6-3mdk.ppc.rpm

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
   <meta name="GENERATOR" content="emacs">
   <meta name="Author" content="kacchan">
   <title>KXL_UpDate</title>
</head>
<body text="#000000" bgcolor="#f0f0dc" link="#3366FF" vlink="#3366FF" alink="#FF0000">

<a href="kxlupdateimm.html">Prev</a>
<a href="KXL.html">Top</a>
<a href="kxlclearframerect.html">Next</a>
<hr>

<b>Name</b><br><br>
<font size=+2>KXL_UpDate</font><br><br>

<b>Synopsis</b><br>
<pre>KXL_UpDate -- The rectangle of arbitrary frames is copied to a window.
For the compatibility of 1.1.4 or earlier.
</pre><br>

<b>Description</b><br>
<pre>void KXL_UpDate(KXL_Rect rect);</pre><br>

<b>Arguments</b><br><br>
<table border="1">
<tr><td>rect</td><td>KXL_Rect structure.</td></tr>
</table>
<br><br>

<b>Return Value</b><br><br>
Nothing.
<br><br><br>

<b>Exsample</b><br>
<pre>
#include &lt;KXL.h&gt;

int main(void)
{
  KXL_Rect rect = {0, 0, 100, 100};

  KXL_CreateWindow(rect.Width, rect.Height, "sample", 0);
  KXL_SetDrawColor(0xff, 0x00, 0x00);
  KXL_DrawRectangle(30, 30, 30, 30, True);
  <b>KXL_UpDate(rect);</b>
  getchar();
  KXL_DeleteWindow();
  return 0;
}
</pre>

</body>
</html>