Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
689 B

  1. //
  2. // Microsoft Corporation - Copyright 1997
  3. //
  4. //
  5. // TEXTPARSE.H - Text/plain parser header file
  6. //
  7. #ifndef _TEXTPARS_H_
  8. #define _TEXTPARS_H_
  9. class CTextPlainParse : public CBase
  10. {
  11. public:
  12. CTextPlainParse( LPECB lpEcb, LPSTR *lppszOut, LPSTR *lppszDebug, LPDUMPTABLE lpDT );
  13. ~CTextPlainParse( );
  14. // Starts parsing data using infomation from server headers
  15. BOOL Parse( LPBYTE lpbData, LPDWORD lpdwParsed );
  16. private:
  17. LPBYTE _lpbData; // Memory containing send data
  18. LPBYTE _lpbParse; // Current parse location into _lpbData
  19. CTextPlainParse( );
  20. }; // CTextPlainParse
  21. #endif // _TEXTPARS_H_