bluejackxapp.cpp
来自「symbian平台蓝牙程序,功能实现:搜索设备,指定时间间隔搜索,对指定的设备发」· C++ 代码 · 共 51 行
CPP
51 行
/*
* ============================================================================
* Name : CBlueJackXApp from BlueJackXApp.cpp
* Part of : BlueJackX
* Created : 25.01.2004 by
* Implementation notes:
*
* Initial content was generated by Series 60 AppWizard.
* Version :
* Copyright:
* ============================================================================
*/
// INCLUDE FILES
#include "BlueJackXApp.h"
#include "BlueJackXDocument.h"
// ================= MEMBER FUNCTIONS =======================
TUid CBlueJackXApp::AppDllUid() const
{
return KUidBlueJackX;
}
// ---------------------------------------------------------
// ---------------------------------------------------------
CApaDocument* CBlueJackXApp::CreateDocumentL()
{
return CBlueJackXDocument::NewL( *this );
}
// ---------------------------------------------------------
// ---------------------------------------------------------
EXPORT_C CApaApplication* NewApplication()
{
return new CBlueJackXApp;
}
// ---------------------------------------------------------
// ---------------------------------------------------------
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?