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.
14 lines
213 B
14 lines
213 B
#ifndef __MYMFILE_H__
|
|
#define __MYMFILE_H__
|
|
|
|
class CMyMemFile : public CMemFile {
|
|
public:
|
|
CMyMemFile();
|
|
~CMyMemFile();
|
|
|
|
BOOL bOpen(LPCTSTR FileName);
|
|
void bClose();
|
|
|
|
private:
|
|
};
|
|
#endif
|