mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
23 lines
414 B
C++
23 lines
414 B
C++
#ifndef __SERVSESSION_H__
|
|
#define __SERVSESSION_H__
|
|
|
|
#include <e32base.h>
|
|
|
|
|
|
//**********************************
|
|
// RServSession
|
|
//**********************************
|
|
|
|
class RServSession : public RSessionBase
|
|
{
|
|
public:
|
|
RServSession() {}
|
|
TInt Connect();
|
|
TVersion Version() const;
|
|
TInt SendReceive(TInt aFunction,TAny* aPtr) const;
|
|
TInt Send(TInt aFunction,TAny* aPtr) const;
|
|
};
|
|
|
|
|
|
#endif
|
|
|