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

/*
* REVISIONS:
* ane15Jan93: Initial Revision
* pcy08Apr94: Trim size, use static iterators, dead code removal
* cgm11Dec95: Switch to Watcom 10.5 compiler for NLM
*/
#ifndef __DATALOG_H
#define __DATALOG_H
#include "cdefine.h"
#include "codes.h"
#include "apcobj.h"
_CLASSDEF(DataLog)
class DataLog : public Obj {
private:
public:
DataLog() {};
virtual LONG GetMaximumSize(void)=0;
virtual const PCHAR GetFileName(void)=0;
virtual void SetMaximumSize(long)=0;
virtual INT SetFileName(const PCHAR)=0;
virtual INT AppendRecord(const PCHAR)=0;
virtual INT ClearFile()=0;
};
#endif