plx_alinit.c
来自「mtk wap和mms代码。。适应mtk 25。26平台」· C语言 代码 · 共 44 行
C
44 行
/**************************************************************************\
*
* Pollex Mobile Platform
*
* Copyright (c) 2004 by Pollex Mobile Software Co., Ltd.
* All Rights Reserved
*
* Model :
*
* Purpose :
*
* Author :
*
*-------------------------------------------------------------------------
*
* $Archive:: $
* $Workfile:: $
* $Revision:: $ $Date:: $
*
\**************************************************************************/
#include "plxdef.h"
#include "plxversion.h"
extern int PlxInitDebugFile(const char *filename);
extern int plx_AppMemInit(void);
extern int DIALMGR_Initialize (int MaxGSMAccount, int MaxGPRSAccount);
char* PLX_GetVersion();
void PLX_Init(int MaxGSM, int MaxGPRS)
{
plx_AppMemInit();
DIALMGR_Initialize (MaxGSM, MaxGPRS);
#if defined(PLX_MEM_DEBUG) || defined(PLX_DEBUG_TO_FILE)
PlxInitDebugFile("d:\\plx_debug.txt"); //at D:\project\workdir
#endif
}
char* PLX_GetVersion()
{
return (char*)POLLEX_VERSION;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?