📄 plx_alinit.c
字号:
/**************************************************************************\
*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -