You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
519 B
C
24 lines
519 B
C
5 years ago
|
#pragma once
|
||
|
#include "module.h"
|
||
|
|
||
|
#ifdef __USE_SUPER_DOG__
|
||
|
#include "KernelMode.h"
|
||
|
extern CKernelMode gKernelMode;
|
||
|
#endif
|
||
|
|
||
|
|
||
|
class CSuperDogMgr:public CModule
|
||
|
{
|
||
|
public:
|
||
|
CSuperDogMgr(void);
|
||
|
~CSuperDogMgr(void);
|
||
|
bool CheckState();
|
||
|
private:
|
||
|
bool CheckStateExt();
|
||
|
int GetDogInfo(CString &Str,int &DogYear,int &DogMonth,int &DogDay);
|
||
|
int ReadBinaryFileInfo(int &DogYear,int &DogMonth,int &DogDay);
|
||
|
void ReadOrWriteRandVal(CArchive &ar,int n);
|
||
|
};
|
||
|
|
||
|
|
||
|
extern CSuperDogMgr *gSuperDogMgr;
|