usingdlls.h

来自「DLL动态静态加载方法与测试代码」· C头文件 代码 · 共 30 行

H
30
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?