home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Varie / server / runner.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-04  |  844 b   |  31 lines

  1. /****************************************************************************
  2. *
  3. *
  4. *   File: WebRunner.h
  5. *
  6. *   PURPOSE: Supplies all defines and prototypes
  7. *
  8. ****************************************************************************/
  9.  
  10.  
  11. // Defines
  12.  
  13. #define ENDPAGE "</pre></body></html>"
  14. #define LOCATION "Software\\WebRunner\\Commands"
  15. #define PARAMETRS "Software\\WebRunner\\Parameters"
  16. #define POSITION "HTMLListBoxLines"
  17. #define MODE "Mode"
  18. #define MEMERROR "\nRUNAPP ERROR: Error allocating more memory for I/O buffer\n"
  19. #define INACTIVETIMEOUT 300000
  20. #define IN
  21. #define OUT
  22.  
  23. // Prototypes
  24.  void EscapeToAscii (CHAR * IN OUT); 
  25. CHAR HexToAscii  (CHAR * IN );
  26. CHAR * GetParamValue (CHAR * IN , CHAR * IN);
  27. DWORD RunApp (LPSTR IN, LPSTR * OUT);
  28. BOOL FreeOutBuffer (LPSTR IN);
  29. CHAR * ReadRegistry ( BOOL * IN);
  30.  
  31.