adjust to match the uname changes.
[AROS-Contrib.git] / rexx / inc / winio.h
blob4b12b786ecfd45de20dbbb285e0dcd0b8b232171
1 /*
2 * $Header$
3 * $Log$
4 * Revision 1.1 2001/04/04 05:43:37 wang
5 * First commit: compiles on Linux, Amiga, Windows, Windows CE, generic gcc
7 * Revision 1.1 1999/11/29 14:58:00 bnv
8 * Initial revision
12 #ifndef __WINIO_H__
13 #define __WINIO_H__
15 #ifndef SIG_IGN
16 # define SIG_IGN NULL
17 # define SIGINT 0
18 #endif
20 void WSetTitle(const char *title);
21 void WGotoXY(int X, int Y);
22 int WWhereX(void);
23 int WWhereY(void);
24 void WClrscr(void);
25 void WClreol(void);
27 void WSignal(int sig, void (*func)(int sig));
29 void WWriteBuf(LPTSTR Buffer, WORD Count);
30 void WWriteChar(TCHAR Ch);
31 BOOL WKeyPressed(void);
32 int WReadKey(void);
33 WORD WReadBuf(char *Buffer, WORD Count);
35 void WInitWinIO(HINSTANCE,HINSTANCE,int);
36 void WExitWinIO(void);
38 #endif