bluetoothapidllmain.cpp
来自「qaSDQDaca<FCSASDAVCASC SDVFDSVDF」· C++ 代码 · 共 49 行
CPP
49 行
/*
============================================================================================
Name : BluetoothAPIDllMain.cpp
Author : BluetoothAPI is a initiative of Embedded LAB - http://www.embedded.ufcg.edu.br/
OpenC/SymbianC++ - http://efforts.embedded.ufcg.edu.br/symbiancpp
Version :
Copyright : This file is part of BluetoothAPI.
BluetoothAPI is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
BluetoothAPI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with BluetoothAPI. If not, see <http://www.gnu.org/licenses/>.
Description : BluetoothAPIAPIDllMain.cpp implementation
===========================================================================================
*/
// Include Files
#include <e32std.h> // GLDEF_C
#include "BluetoothAPI.pan" // panic codes
// Global Functions
GLDEF_C void Panic(TBluetoothAPIPanic aPanic)
// Panics the thread with given panic code
{
User::Panic(_L("BluetoothAPI"), aPanic);
}
// Exported Functions
#ifndef EKA2 // for EKA1 only
EXPORT_C TInt E32Dll(TDllReason /*aReason*/)
// Called when the DLL is loaded and unloaded. Note: have to define
// epoccalldllentrypoints in MMP file to get this called in THUMB.
{
return KErrNone;
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?