home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / volume_3.zip / MISC.H < prev    next >
Text File  |  1995-10-25  |  962b  |  37 lines

  1. #ifndef __MISC_H
  2.     #define __MISC_H
  3.  
  4.  
  5. #define TRUE -1
  6. #define FALSE 0
  7. #define OR ||
  8. #define AND &&
  9. #define REBOOTINIT 0x19
  10.  
  11.  
  12. #ifndef __MOUSE_H
  13.     #include "c:\tc\mouse.h"
  14. #endif
  15.  
  16. //********************************************************************
  17. //****************** Function prototypes. ****************************
  18. //********************************************************************
  19.  
  20.  
  21. //Misc Functions
  22. void Basic_Sound(int freq,int pause); //Sounds a frequency for delay(pause)
  23. void Reboot(void);  //Reboots computer
  24. void Type_Writer(char string[]); //use Type_Writer("Hello");See function.
  25. char ascii(int num);//changes Ascii number to character
  26. void Slow_Down(int pause);
  27. char *Current_Directory(char *path);
  28. char *Current_Directory(void);
  29. char *left(char a[], int len);
  30. int printXY(int column,int row,char string[],int Variable);//to moniter variables while a program is running
  31.  
  32. #include "c:\tc\misc.cpp"
  33. #endif
  34.  
  35.  
  36.  
  37.