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.

31 lines
512 B

  1. //
  2. // Microsoft Corporation - Copyright 1997
  3. //
  4. //
  5. // BASE.H -
  6. //
  7. #ifndef _BASE_H_
  8. #define _BASE_H_
  9. class CBase
  10. {
  11. public:
  12. LPECB lpEcb;
  13. LPSTR lpszOut; // HTML output
  14. LPSTR lpszDebug; // Debug output
  15. LPDUMPTABLE lpDT; // Parser commented hex dump table
  16. CBase( LPECB lpEcb, LPSTR *lpszOut, LPSTR *lppszDebug, LPDUMPTABLE lpDT );
  17. virtual ~CBase( );
  18. private:
  19. }; // CBase
  20. #endif // _BASE_H_