C:\WINCE500\PUBLIC\WCESHELLFE\OAK\CTLPNL\CTLPNL\cpl.cpp
有如下一些信息
——————————
#define NUMINDICES 2
typedef struct
{
LPCTSTR pszDll; // old dll/cpl name
int rgNewIndex[NUMINDICES];
// index into CPLMAIN of applet that used to be index 0,1 etc in pszDll (old DLL)
}
OLDCMDLINE_CONV;
// -1 == invalid entry
OLDCMDLINE_CONV rgCompat[] =
{
//L"network", 0, -1, // network
L"comm", 0, 1, // communications, dialing
L"main", 2, -1, // keyboard
L"passwrd", 3, 4, // password, owner 现在把这两个都屏蔽掉试试
L"power", 5, -1, // power. [Jshell uses 1 as applet id, which is bogus!]
L"system", 6, -1, // system, remove-pgms(which we dont have yet)
L"screen", 7, 9, // display, stylus
L"sounds", 10,-1, // sounds
L"sipcpl", 11,-1, // SIP
L"clock", 13,-1, // SIP
};复制代码