mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-01-09 21:28:57 +01:00
24 lines
414 B
C++
24 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
|
|
|