⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 client.h

📁 hercules v9 symbian os application development
💻 H
字号:
// client.h
// Transient server example - client interface

#ifndef CLIENT_H__
#define CLIENT_H__

#include <e32base.h>

// Forward declarations
// The actual class declarations must be
// accessible to both client and server code
class CHerculesData;
struct THydraData;

class RHerculesSession : public RSessionBase
	{
public:
	IMPORT_C TInt Connect();
public:
	IMPORT_C TInt SlayNemeanLion(const TDesC8& aDes, TInt aVal);
	IMPORT_C TInt SlayHydra(THydraData& aData);
	IMPORT_C TInt CaptureCeryneianHind(TInt& aCaptureCount);
	IMPORT_C TInt SlayErymanthianBoar(const CHerculesData& aData);
	IMPORT_C void CleanAugeanStables(TRequestStatus& aStatus);
	IMPORT_C void CancelCleanAugeanStables();
	IMPORT_C void SlayStymphalianBirds(TInt aCount, TDes8& aData, TRequestStatus& aStatus);
	IMPORT_C void CancelSlayStymphalianBirds();
	};

#endif // CLIENT_H


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -