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

📄 ecom_table.cpp

📁 Symbian OS C++ for Mobile Phones Volume 3 源码
💻 CPP
字号:
// Copyright (c) 2004 - 2007, Symbian Software Ltd. All rights reserved.

#include <ecom/implementationproxy.h>

#include "bluetoothtransport.h"


static const TImplementationProxy ImplementationTable[] =
/** Which implementations of CTransportInterface are supported by this DLL. */
	{
	IMPLEMENTATION_PROXY_ENTRY(KBluetoothTransportUidValue, CBluetoothTransport::NewL)
	};

EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
/**
	This function is exported from every plugin DLL.  It returns the
	table which identifies how to allocate the implementations described
	in the matching resource file.

	@param	aTableCount		On exit this contains the number of supported
							implementations.
	@return					Table which matches each implementation UID with	
							its factory function.
 */
	{
	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
	return ImplementationTable;
	}

⌨️ 快捷键说明

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