home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / slfinsta.zip / instsup.h < prev    next >
C/C++ Source or Header  |  2000-03-26  |  1KB  |  36 lines

  1. /* $Id: instsup.h,v 1.1 2000/03/27 04:52:56 ktk Exp $ */
  2.  
  3. ULONG color_depth(void);
  4. void reboot(void);
  5. int mesg(char *format, ...);
  6. int checktext(char *text, char *buffer, int buflen);
  7. long findtext(char *text);
  8. char *decode(char *input);
  9. void viewfile(char *filename, HAB localhab);
  10. void stripcrlf(char *buffer);
  11. unsigned long drivefree(int drive);
  12. void error(char *format, ...);
  13. void setdrivedir(char *drivedir);
  14. void settempdir(void);
  15. void getbootdrive(void);
  16. int cmdrun(char *progname);
  17. void MakeFolder(char Title[], char Icon[], char dest[], char id[], char setup[]);
  18. void MakeProgram(char Title[], char Program[], char Icon[], char dest[], char id[], char setup[]);
  19. void MakeObject(char Title[], char oclass[], char dest[], char id[], char setup[]);
  20. void MakeShadow(char Title[], char reference[], char dest[], char id[]);
  21. void PM_backslash(char *s);
  22.  
  23. /* There are actually in rexx.c but they are the only two entry points. */
  24. void rexx_init(void);
  25. void rexx_deinit(void);
  26. int rexx_run(char *filename);
  27.  
  28. typedef struct _rexx_var
  29. {
  30.     struct _rexx_var    *next;
  31.     RXSTRING            rxstring;
  32.     char            *varname;
  33. } RexxVar;
  34.  
  35.  
  36.