home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / W / WWIVSOR.ZIP / RIPINT.H < prev    next >
C/C++ Source or Header  |  1995-03-19  |  1KB  |  31 lines

  1. /*************************************************************************
  2.  RIPINT.H:  RIPdrive interface function declarations and data types.
  3.  
  4.  Copyright (C) 1994 by Zachary G. Ives.  All Rights Reserved.
  5.  
  6.  Licensed to Wayne Bell and WWIV Software Services for WWIV 4.24.
  7.  *************************************************************************/
  8.  
  9. struct localrip_screeninfo {
  10.   char c_row;
  11.   char c_column;
  12.   char w_top;
  13.   char w_bottom;
  14.   char w_left;
  15.   char w_right;
  16.   char t_foreground;
  17.   char t_background;
  18. };
  19.  
  20. unsigned int far localrip_detect(void);
  21. unsigned int far localrip_activate(char *rippth, char *fontpth);
  22. void far localrip_disablemouse(int dis);
  23. void far localrip_keyfilter(int key, char far *keybuf);
  24. void far localrip_display(char far *str);
  25. void far localrip_readscene(char far *file);
  26. void far localrip_textinfo(struct localrip_screeninfo far *r);
  27. void far localrip_deactivate(void);
  28. char far localrip_ripmode(void);
  29. void far localansi_string(char *s);
  30. void far localansi_char(char c);
  31.