sipexresolverplugindll.cpp
来自「an example for sip for symbian」· C++ 代码 · 共 50 行
CPP
50 行
/*
* ==============================================================================
* Name : SIPExResolverPluginDll.cpp
* Part of : SIPExResolverPlugin
* Interface :
* Description :
* Version :
*
* Copyright (c) 2005-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#include <e32std.h>
#include <ImplementationProxy.h>
#include "SIPExResolverPlugin.h"
// Map the interface UID to implementation factory function
const TImplementationProxy Implementations[] =
{
IMPLEMENTATION_PROXY_ENTRY( KSIPExResolverPluginUID,
CSIPExResolverPlugin::NewL )
};
// -----------------------------------------------------------------------------
// ImplementationGroupProxy
//
// Exported proxy for instantiation method resolution
// -----------------------------------------------------------------------------
//
EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aCount )
{
aCount = sizeof( Implementations ) / sizeof( TImplementationProxy );
return Implementations;
}
// -----------------------------------------------------------------------------
// E32Dll (Removed in EKA2)
// -----------------------------------------------------------------------------
//
#ifndef EKA2
GLDEF_C TInt E32Dll(TDllReason)
{
return(KErrNone);
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?