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

📄 usingdlls.h

📁 Symbain mobile code 手机应用程序源代码--基本结构方面
💻 H
字号:
// UsingDLLs.h
//
// Copyright (C) Symbian Software Ltd 2000-2005.  All rights reserved.
// A program which uses dynamically linked DLLs.

	// standard example header
#include <e32cons.h>

#ifndef __UsingDLLs_H
#define __UsingDLLs_H

	// The UID for Messenger DLLs.
	// The client imposes this on DLLs which are required
	// to satisfy the protocol 

const TInt KMessengerUidValue=0x10004262;
const TUid KMessengerUid={KMessengerUidValue};

class CMessenger : public CBase
  	{
public:
	virtual void ConstructL(CConsoleBase* aConsole, const TDesC& aName)=0;
	virtual void ShowMessage()=0;
protected:
	CConsoleBase* iConsole;
	HBufC*        iName;
	};

#endif

⌨️ 快捷键说明

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