home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
CLIPPER
/
MISC
/
EMXLIB8F.ZIP
/
EMX
/
LIB
/
VIDEO
/
WMGOTOXY.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-02
|
346 b
|
17 lines
/* wmgotoxy.c (emx+gcc) -- Copyright (c) 1987-1993 by Eberhard Mattes */
#include <sys/winmgr.h>
#include "winmgr2.h"
void wm_gotoxy (wm_handle wh, int x, int y)
{
if (wh->used != WM_USED)
return;
if (x >= 0 && x < wh->width && y >= 0 && y < wh->height)
{
wh->x = x;
wh->y = y;
}
_wm_cursor1 ();
}