added dvm/tools/
This commit is contained in:
23
dvm/tools/pppa/branches/dvm4.07/src/statprintf.h
Normal file
23
dvm/tools/pppa/branches/dvm4.07/src/statprintf.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef _STATPRINTF_H
|
||||
#define _STATPRINTF_H
|
||||
#include "bool.h"
|
||||
#include "zlib.h"
|
||||
#include "stdio.h"
|
||||
class CStatPrintf {
|
||||
public:
|
||||
CStatPrintf(char * name,int lstr,char *mode);
|
||||
~CStatPrintf();
|
||||
void ChangeLenStr(int lstr);
|
||||
BOOL Valid();
|
||||
void TextErr(char *t);
|
||||
int StatPrintf(const char *format,...);
|
||||
private:
|
||||
int lll;
|
||||
char *pstr;
|
||||
int lenstr;
|
||||
FILE * ff;
|
||||
gzFile ffgz;
|
||||
BOOL valid;
|
||||
char texterr[80];
|
||||
};
|
||||
#endif
|
||||
Reference in New Issue
Block a user