HTGuess.h
Upload User: zlh9724
Upload Date: 2007-01-04
Package Size: 1991k
Code Size: 1k
Category:

Browser Client

Development Platform:

Unix_Linux

  1. /*                                                                            Guessing Stream
  2.                                    CONTENT-TYPE GUESSER
  3.                                              
  4.  */
  5. /*
  6. **      (c) COPYRIGHT MIT 1995.
  7. **      Please first read the full copyright statement in the file COPYRIGH.
  8. */
  9. /*
  10.    This interface provides functionality for guessing unknown media types from magic
  11.    words. The stream is a one that reads first a chunk of stuff, tries to figure out the
  12.    format, and calls HTStreamStack(). This is a kind of lazy-evaluation of
  13.    HTStreamStack().
  14.    
  15.    This could be extended arbitrarily to recognize all the possible file formats in the
  16.    world, if someone only had time to do it.
  17.    
  18.    This module is implemented by HTGuess.c, and it is a part of the  W3C Reference
  19.    Library.
  20.    
  21.  */
  22. #ifndef HTGUESS_H
  23. #define HTGUESS_H
  24. #include "HTStream.h"
  25. #include "HTFormat.h"
  26. extern HTConverter HTGuess_new;
  27. #endif  /* !HTGUESS_H */
  28. /*
  29.    End of file HTGuess.h. */