2012-10-01 15:32:32 +00:00
|
|
|
#ifndef _MEMPAK_H_
|
|
|
|
#define _MEMPAK_H_
|
|
|
|
|
|
|
|
class Mempak
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void Close ( void );
|
|
|
|
static BYTE CalculateCrc ( BYTE * DataToCrc );
|
2012-10-06 10:25:56 +00:00
|
|
|
static void ReadFrom ( int Control, int Address, BYTE * Buffer );
|
|
|
|
static void WriteTo ( int Control, int Address, BYTE * Buffer );
|
2012-10-01 15:32:32 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
#endif //_MEMPAK_H_
|