Prev
Top
Next
Name
KXL_UpDateImm
Synopsis
KXL_UpDateImm -- The rectangle of arbitrary frames is copied to a window.
Description
void KXL_UpDateImm(Sint16 left, Sint16 top, Uint16 width, Uint16 height);
Arguments
| top | Left position of a frame. | 
| left | Top position of a frame. | 
| width | Width of a frame. | 
| height | Height of a frame. | 
Return Value
Nothing.
Exsample
#include <KXL.h>
int main(void)
{
  KXL_CreateWindow(100, 100, "sample", 0);
  KXL_SetDrawColor(0xff, 0x00, 0x00);
  KXL_DrawRectangle(30, 30, 30, 30, True);
  KXL_UpDateImm(0, 0, 100, 100);
  getchar();
  KXL_DeleteWindow();
  return 0;
}