home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / PPL4C11.ZIP / WIN_IO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-06  |  384 b   |  17 lines

  1. #define WIN_AOK 0
  2. #define WIN_RANGE -1
  3. #define WIN_DISABLED -2
  4. #define WIN_ENABLED  -3
  5.  
  6. int  WinNormal(int);
  7. int  WinInverse(int);
  8. int  WinCreate(int,int,int,int,int);
  9. int  WinPutChar(int,char);
  10. char WinGetChar(int);
  11. int  WinPutString(int,char *);
  12. int  WinGetString(int,char *,int);
  13. int  WinClear(int);
  14. int  WinSetPos(int,int,int);
  15. int  WinGetPos(int,int *,int *);
  16.  
  17.