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

📄 animation.cpp

📁 symbian,使用dll服务捕获按键,比设置优先级更能提高按键响应.
💻 CPP
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */


// INCLUDE FILES
#include <e32std.h>
#include <eikapp.h>
#include "animationapplication.h"

// ========================== OTHER EXPORTED FUNCTIONS =========================

// -----------------------------------------------------------------------------
// E32Dll()
// Entry point function for Symbian Apps. Return that everything is ok.
// -----------------------------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
    {
    return KErrNone;
    }

// -----------------------------------------------------------------------------
// NewApplication()
// Construct CAnimationApplication and return a pointer to it.
// -----------------------------------------------------------------------------
//
// Create an Animation application, and return a pointer to it
EXPORT_C CApaApplication* NewApplication()
    {
    return ( new CAnimationApplication );
    }

// End of File

⌨️ 快捷键说明

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