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.

51 lines
694 B

  1. /*
  2. * REVISIONS:
  3. * ane15Jan93: Initial Revision
  4. * pcy08Apr94: Trim size, use static iterators, dead code removal
  5. * cgm11Dec95: Switch to Watcom 10.5 compiler for NLM
  6. */
  7. #ifndef __DATALOG_H
  8. #define __DATALOG_H
  9. #include "cdefine.h"
  10. #include "codes.h"
  11. #include "apcobj.h"
  12. _CLASSDEF(DataLog)
  13. class DataLog : public Obj {
  14. private:
  15. public:
  16. DataLog() {};
  17. virtual LONG GetMaximumSize(void)=0;
  18. virtual const PCHAR GetFileName(void)=0;
  19. virtual void SetMaximumSize(long)=0;
  20. virtual INT SetFileName(const PCHAR)=0;
  21. virtual INT AppendRecord(const PCHAR)=0;
  22. virtual INT ClearFile()=0;
  23. };
  24. #endif