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

📄 gpslibdllmain.cpp

📁 symbian s60上的GPS
💻 CPP
字号:
/*
============================================================================
 Name        : GPSLibDll.cpp 
 Author      : Fox Jiang
 Version     :
 Copyright   : Kodak Mobile Team
 Description : GPSLibDll.cpp - main DLL source
============================================================================
*/

//  Include Files  

#include <e32std.h>         // GLDEF_C
#include "GPSLib.pan"       // panic codes


//  Global Functions

GLDEF_C void Panic(TGPSLibPanic aPanic)
// Panics the thread with given panic code
{
	User::Panic(_L("GPSLIB"), aPanic);
}


//  Exported Functions

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;
}


  

⌨️ 快捷键说明

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