gpslibdllmain.cpp

来自「symbian s60上的GPS」· C++ 代码 · 共 37 行

CPP
37
字号
/*
============================================================================
 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 + =
减小字号Ctrl + -
显示快捷键?