home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
CLIPPER
/
MISC
/
EMXLIB8F.ZIP
/
EMX
/
LIB
/
VIDEO
/
VGETXY.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
|
186 b
|
11 lines
/* vgetxy.c (emx+gcc) -- Copyright (c) 1987-1993 by Eberhard Mattes */
#include <sys/video.h>
#include "video2.h"
void v_getxy (int *x, int *y)
{
*x = _v_x;
*y = _v_y;
}